]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/formcopyrightdialog.h
Angus's FormInset work; Dekel's languages patch; my reworking of Angus's stuff +...
[lyx.git] / src / frontends / kde / formcopyrightdialog.h
1 /***************************************************************************
2                           formcopyrightdialog.h  -  description
3                              -------------------
4     begin                : Fri Feb 4 2000
5     copyright            : (C) 2000 by Jürgen Vigna
6     email                : jug@sad.it
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 FORMCOPYRIGHTDIALOG_H
19 #define FORMCOPYRIGHTDIALOG_H
20
21 //Generated area. DO NOT EDIT!!!(begin)
22 #include <qwidget.h>
23 #include <qlabel.h>
24 #include <qpushbutton.h>
25 //Generated area. DO NOT EDIT!!!(end)
26
27 #include <qdialog.h>
28
29 /**
30   *@author Jürgen Vigna
31   */
32
33 class FormCopyrightDialog : public QDialog  {
34    Q_OBJECT
35 public: 
36         FormCopyrightDialog(QWidget *parent=0, const char *name=0,
37                             bool modal=false, WFlags f=0);
38         ~FormCopyrightDialog();
39
40 protected: 
41         void initDialog();
42         //Generated area. DO NOT EDIT!!!(begin)
43         QLabel *labelWho;
44         QLabel *labelGNU;
45         QLabel *labelLyX;
46         QPushButton *buttonOk;
47         //Generated area. DO NOT EDIT!!!(end)
48
49 private: 
50 };
51
52 #endif