From b50692ba650418aa06cbd2662b4ff698c7d3f961 Mon Sep 17 00:00:00 2001 From: groucho Date: Sat, 15 Feb 2003 11:45:26 +0000 Subject: Forgot to add the sources :-} --- (limited to 'noncore/tools/euroconv/main.cpp') diff --git a/noncore/tools/euroconv/main.cpp b/noncore/tools/euroconv/main.cpp new file mode 100644 index 0000000..2d97f4e --- a/dev/null +++ b/noncore/tools/euroconv/main.cpp @@ -0,0 +1,39 @@ +/**************************************************************************** + * + * File: main.cpp + * + * Description: main file for OPIE Euroconv aapp + * + * + * Authors: Eric Santonacci + * + * Requirements: Qt + * + * $Id$ + * + ***************************************************************************/ + +#include +#include +//#include + +#include "calcdisplay.h" +#include "calckeypad.h" + + + +int main( int argc, char **argv ) { + + QPEApplication app( argc, argv ); + + QVBox *layout = new QVBox(0, "fond"); + + LCDDisplay lcd (layout, "lcd"); + KeyPad num(&lcd, layout, "keypad"); + app.setMainWidget(layout); + layout->setCaption("Euroconv"); + layout->showMaximized (); + layout->show(); + return app.exec(); +} + -- cgit v0.9.0.2