summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/mainwindow.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/datebook2/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/mainwindow.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/core/pim/datebook2/mainwindow.cpp b/core/pim/datebook2/mainwindow.cpp
new file mode 100644
index 0000000..2f214b8
--- a/dev/null
+++ b/core/pim/datebook2/mainwindow.cpp
@@ -0,0 +1,70 @@
+#include <qwidgetstack.h>
+#include <qlabel.h>
+#include <qaction.h>
+
+#include <qpe/ir.h>
+#include <qpe/qpemenubar.h>
+#include <qpe/qpemessagebox.h>
+#include <qpe/resource.h>
+
+
+#include "mainwindow.h"
+
+
+using namespace Datebook;
+
+MainWindow::MainWindow()
+ : OPimMainWindow( "Datebook", 0, 0 ) {
+ initUI();
+ initConfig();
+ initView();
+ initManagers();
+
+ raiseCurrentView();
+ QTimer::singleShot(0, this, SLOT(populate() ) );
+}
+MainWindow::~MainWindow() {
+
+}
+void MainWindow::doSetDocument( const QString& str ) {
+
+}
+void MainWindow::flush() {
+
+}
+void MainWindow::reload() {
+
+}
+int MainWindow::create() {
+
+}
+bool MainWindow::remove( int uid ) {
+
+}
+void MainWindow::beam( int uid ) {
+
+}
+void MainWindow::show( int uid ) {
+
+}
+void MainWindow::add( const OPimRecord& ) {
+
+}
+void MainWindow::edit( int uid ) {
+
+}
+void MainWindow::initUI() {
+
+}
+void MainWindow::initConfig() {
+
+}
+void MainWindow::initView() {
+
+}
+void MainWindow::initManagers() {
+
+}
+void MainWindow::raiseCurrentView() {
+
+}