Initial import of the code.
[grr] / src / contentwindow.h
diff --git a/src/contentwindow.h b/src/contentwindow.h
new file mode 100644 (file)
index 0000000..5b07254
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef _CONTENT_WINDOW_H
+#define _CONTENT_WINDOW_H
+
+#include <QMainWindow>
+#include <QWebView>
+#include <QtGui>
+#include <QtWebKit>
+#include "googlereader.h"
+
+class ContentWindow : public QMainWindow {
+       Q_OBJECT
+
+       public:
+               ContentWindow(QWidget *parent = 0, Entry *e = 0);
+               virtual ~ContentWindow();
+               void closeEvent(QCloseEvent *event);
+
+       public slots:
+               void loadFinished(bool);
+               void loadStarted();
+               void seeOriginal();
+
+       private:
+               Entry *entry;
+               QGraphicsWebView *webview;
+               QAction *starred;
+               QAction *keepUnread;
+};
+
+#endif
+