File: hysettings.h

package info (click to toggle)
scribus 1.2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 29,928 kB
  • ctags: 8,814
  • sloc: cpp: 98,550; sh: 16,484; ansic: 10,295; perl: 2,818; makefile: 1,340; python: 1,177; xml: 83
file content (37 lines) | stat: -rw-r--r-- 713 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef HYSETTINGS_H
#define HYSETTINGS_H

#include <qdialog.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qpushbutton.h>
#include <qspinbox.h>
#include <qcheckbox.h>
#include <qlayout.h>
#include <qtooltip.h>

class HySettings : public QDialog
{ 
    Q_OBJECT

public:
    HySettings( QWidget* parent, QMap<QString,QString>* langs);
    ~HySettings() {};
    QCheckBox* Verbose;
    QCheckBox* Input;
    QComboBox* Language;
    QLabel* Text1;
    QLabel* Text2;
    QLabel* Text3;
    QSpinBox* WordLen;
    QSpinBox* MaxCount;
    QPushButton* OK;
    QPushButton* Cancel;

protected:
    QVBoxLayout* HySettingsLayout;
    QGridLayout* Layout3;
    QHBoxLayout* Layout1;
};

#endif // HYSETTINGS_H