Olive
fontcombobox.h
1 #ifndef FONTCOMBOBOX_H
2 #define FONTCOMBOBOX_H
3 
4 #include "comboboxex.h"
5 
6 class FontCombobox : public ComboBoxEx {
7  Q_OBJECT
8 public:
9  FontCombobox(QWidget* parent = 0);
10  const QString &getPreviousValue();
11 private slots:
12  void updateInternals();
13 private:
14  QString previousValue;
15  QString value;
16 };
17 
18 #endif // FONTCOMBOBOX_H
Definition: fontcombobox.h:6
Definition: comboboxex.h:7