2014-11-13 01:04:59 +02:00
|
|
|
#ifndef FORM1_H
|
|
|
|
#define FORM1_H
|
|
|
|
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
#include <QtCore/QVariant>
|
|
|
|
#include <QtGui/QWidget>
|
2017-08-04 09:17:49 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QPushButton>
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
class KHistoryComboBox;
|
|
|
|
class KLineEdit;
|
|
|
|
|
|
|
|
|
|
|
|
class Form1 : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
Form1( QWidget* parent = 0 );
|
|
|
|
~Form1();
|
|
|
|
|
|
|
|
QGroupBox* GroupBox1;
|
|
|
|
QLabel* TextLabel1;
|
|
|
|
KLineEdit* LineEdit1;
|
|
|
|
QPushButton* PushButton1;
|
|
|
|
QPushButton* PushButton1_4;
|
|
|
|
QListWidget* ListBox1;
|
|
|
|
QPushButton* PushButton1_3;
|
|
|
|
QPushButton* PushButton1_2;
|
|
|
|
|
|
|
|
KLineEdit* edit;
|
|
|
|
KHistoryComboBox *combo;
|
|
|
|
|
|
|
|
protected Q_SLOTS:
|
|
|
|
void slotList();
|
|
|
|
void slotAdd();
|
|
|
|
void slotRemove();
|
|
|
|
void slotHighlighted( int );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QStringList defaultItems() const;
|
|
|
|
|
|
|
|
QVBoxLayout* Form1Layout;
|
|
|
|
QVBoxLayout* GroupBox1Layout;
|
|
|
|
QVBoxLayout* Layout9;
|
|
|
|
QHBoxLayout* Layout1;
|
|
|
|
QHBoxLayout* Layout2;
|
|
|
|
QHBoxLayout* Layout3;
|
|
|
|
QHBoxLayout* Layout8;
|
|
|
|
QVBoxLayout* Layout7;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORM1_H
|