File indexing completed on 2024-05-12 07:47:45

0001 #ifndef KCOMPLETIONUITEST_H
0002 #define KCOMPLETIONUITEST_H
0003 
0004 #include <QStringList>
0005 #include <QWidget>
0006 class QVBoxLayout;
0007 class QHBoxLayout;
0008 class QGroupBox;
0009 class QLabel;
0010 class QListWidget;
0011 class QPushButton;
0012 
0013 class KHistoryComboBox;
0014 class KLineEdit;
0015 
0016 class Form1 : public QWidget
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     Form1(QWidget *parent = nullptr);
0022     ~Form1() override;
0023 
0024     QGroupBox *GroupBox1;
0025     QLabel *TextLabel1;
0026     KLineEdit *LineEdit1;
0027     QPushButton *PushButton1;
0028     QPushButton *PushButton1_4;
0029     QListWidget *ListBox1;
0030     QPushButton *PushButton1_3;
0031     QPushButton *PushButton1_2;
0032 
0033     KLineEdit *edit;
0034     KHistoryComboBox *combo;
0035 
0036 protected Q_SLOTS:
0037     void slotList();
0038     void slotAdd();
0039     void slotRemove();
0040     void slotHighlighted(int);
0041 
0042 protected:
0043     QStringList defaultItems() const;
0044 
0045     QVBoxLayout *Form1Layout;
0046     QVBoxLayout *GroupBox1Layout;
0047     QVBoxLayout *Layout9;
0048     QHBoxLayout *Layout1;
0049     QHBoxLayout *Layout2;
0050     QHBoxLayout *Layout3;
0051     QHBoxLayout *Layout8;
0052     QVBoxLayout *Layout7;
0053 };
0054 
0055 #endif // KCOMPLETIONUITEST_H