]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormCopyright.h
implement getLabelList
[lyx.git] / src / frontends / qt2 / FormCopyright.h
1 /***************************************************************************
2                           formcopyright.h  -  description
3                              -------------------
4     begin                : Thu Feb 3 2000
5     copyright            : (C) 2000 by Jürgen Vigna, 2001 by Kalle Dalheimer
6     email                : kalle@klaralvdalens-datakonsult.se
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #ifndef FORMCOPYRIGHT_H
19 #define FORMCOPYRIGHT_H
20
21 #include "Qt2Base.h"
22 #include "boost/utility.hpp"
23
24 class Dialogs;
25 class LyXView;
26 class FormCopyrightDialogImpl;
27 class ControlCopyright;
28
29 /**
30   @author Kalle Dalheimer
31   */
32 class FormCopyright 
33   : public Qt2CB<ControlCopyright, Qt2DB<FormCopyrightDialogImpl> >
34 {
35 public: 
36         FormCopyright( ControlCopyright& );
37
38 private: 
39         /// not needed
40         virtual void apply() {}
41         /// not needed
42         virtual void update() {}
43         // build the dialog
44         virtual void build();
45 };
46
47 #endif