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