Started to reorganize the Buffer{Model|View|Filter}. Mostly cleanup at the moment.
[quassel.git] / src / qtui / topicwidget.h
index d6c1ab9..deb5f90 100644 (file)
 
 class TopicWidget : public QWidget {
   Q_OBJECT
+  Q_PROPERTY(QString topic READ topic WRITE setTopic STORED false)
 
 public:
   TopicWidget(QWidget *parent = 0);
   virtual ~TopicWidget();
 
+  QString topic() const;
+  void setTopic(const QString &newtopic);
   
 private:
   Ui::TopicWidget ui;