]> git.sur5r.net Git - minitube/blobdiff - src/view.h
Upload 3.9.3-2 to unstable
[minitube] / src / view.h
index 0609c38c54219b48a3e594c04d967ff68f845719..d6af009b249f16564fa4335731cecae8df901fbe 100644 (file)
@@ -1,13 +1,43 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Minitube is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #ifndef VIEW_H
 #define VIEW_H
 
-class View {
+#include <QtWidgets>
+
+class View : public QWidget {
+    Q_OBJECT
 
 public:
-    virtual QHash<QString, QVariant> metadata() { return QHash<QString, QVariant>(); }
+    View(QWidget *parent = 0) : QWidget(parent) {}
+    virtual QString getTitle() { return QString(); }
+    virtual QString getDescription() { return QString(); }
     virtual void appear() {}
     virtual void disappear() {}
 
+signals:
+    void willAppear();
+    void didAppear();
+    void willDisappear();
+    void didDisappear();
 };
 
 #endif // VIEW_H