Reformat ALL the source!
[quassel.git] / src / uisupport / fontselector.h
index 60d2777..640c437 100644 (file)
 #include <QLabel>
 #include <QWidget>
 
-class FontSelector : public QWidget {
-  Q_OBJECT
-  Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont)
-  Q_PROPERTY(QString text READ text WRITE setText)
+class FontSelector : public QWidget
+{
+    Q_OBJECT
+    Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont)
 
-public:
-  FontSelector(QWidget *parent = 0);
-  FontSelector(const QString &label, QWidget *parent = 0);
+public :
+        FontSelector(QWidget *parent = 0);
 
-  inline const QFont &selectedFont() const { return _font; }
-  inline QString text() const { return _label->text(); }
+    inline const QFont &selectedFont() const { return _font; }
 
 public slots:
-  void setText(const QString &label);
-  void setSelectedFont(const QFont &font);
+    void setSelectedFont(const QFont &font);
 
 signals:
-  void fontChanged(const QFont &);
+    void fontChanged(const QFont &);
 
 protected:
-  void changeEvent(QEvent *e);
+    void changeEvent(QEvent *e);
 
 protected slots:
-  void chooseFont();
+    void chooseFont();
 
 private:
-  QFont _font;
-  QLabel *_demo, *_label;
-
-  void init(const QString &label = "Font");
+    QFont _font;
+    QLabel *_demo;
 };
 
+
 #endif // FONTSELECTOR_H_