Scribus
Open source desktop publishing at your fingertips
fontselectdialog.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7  /***************************************************************************
8  * Copyright (C) 2009 by Jain Basil Aliyas *
9  * mail@jainbasil.net *
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  * This program is distributed in the hope that it will be useful, *
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19  * GNU General Public License for more details. *
20  * *
21  * You should have received a copy of the GNU General Public License *
22  * along with this program; if not, write to the *
23  * Free Software Foundation, Inc., *
24  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
25  ***************************************************************************/
26 
27 #ifndef FONTSELECTDIALOG_H
28 #define FONTSELECTDIALOG_H
29 
30 #include <QString>
31 #include <QStringList>
32 #include <QDialog>
33 #include <QVBoxLayout>
34 #include <QHBoxLayout>
35 #include <QWidget>
36 #include <QLabel>
37 #include <QPushButton>
38 #include <QSpacerItem>
39 #include <QComboBox>
40 
41 class QPushButton;
42 class QComboBox;
43 class QLabel;
44 class QWidget;
45 
46 class FontSelect:public QDialog
47 {
48 Q_OBJECT
49 
50  public:
51  FontSelect(QStringList list);
52  ~FontSelect(){};
53  QString setFont();
54 
55  private slots:
56  void selectFont();
57  void resetFont();
58  private:
59  QLabel *label;
60  QComboBox *fontList;
61  QPushButton *okButton;
62  QString font;
63  QWidget *layoutWidget;
64  QVBoxLayout *verticalLayout_2;
65  QHBoxLayout *horizontalLayout_2;
66  QSpacerItem *horizontalSpacer;
67  QHBoxLayout *horizontalLayout_3;
68 };
69 
70 #endif
Definition: fontselectdialog.h:46