From f11d4bda64b58abfebf77485d5d77143a10dc8c9 Mon Sep 17 00:00:00 2001 From: zecke Date: Mon, 07 Oct 2002 11:39:30 +0000 Subject: Re add files for todo --- (limited to 'core/pim/todo/main.cpp') diff --git a/core/pim/todo/main.cpp b/core/pim/todo/main.cpp new file mode 100644 index 0000000..73977c2 --- a/dev/null +++ b/core/pim/todo/main.cpp @@ -0,0 +1,44 @@ +/********************************************************************** +** Copyright (C) 2000 Trolltech AS. All rights reserved. +** +** This file is part of Qtopia Environment. +** +** This file may be distributed and/or modified under the terms of the +** GNU General Public License version 2 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. +** +** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** See http://www.trolltech.com/gpl/ for GPL licensing information. +** +** Contact info@trolltech.com if any conditions of this licensing are +** not clear to you. +** +**********************************************************************/ + +#include "mainwindow.h" + + +#include + +#include + +int main( int argc, char **argv ) +{ + QPEApplication a( argc, argv ); + + QTime time; + time.start(); + Todo::MainWindow mw; + int t = time.elapsed(); + qWarning("QTime %d", t/1000 ); + mw.setCaption("Opie Todolist"); + QObject::connect( &a, SIGNAL( flush() ), &mw, SLOT( slotFlush() ) ); + QObject::connect( &a, SIGNAL( reload() ), &mw, SLOT( slotReload() ) ); + + a.showMainWidget(&mw); + + return a.exec(); +} -- cgit v0.9.0.2