Orb/Doxygen/tmake/example/main.cpp
changeset 0 42188c7ea2d9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Orb/Doxygen/tmake/example/main.cpp	Thu Jan 21 17:29:01 2010 +0000
@@ -0,0 +1,38 @@
+//
+// File: main.cpp
+//
+// A small Qt example application written by Troll Tech.
+//
+// It displays a text in a window and quits when you click
+// the mouse in the window.
+//
+
+#include "hello.h"
+#include <qapp.h>
+
+
+/*
+  The program starts here. It parses the command line and build a message
+  string to be displayed by the Hello widget.
+*/
+
+int main( int argc, char **argv )
+{
+    QApplication a(argc,argv);
+    QString s;
+    for ( int i=1; i<argc; i++ ) {
+	s += argv[i];
+	if ( i<argc-1 )
+	    s += " ";
+    }
+    if ( s.isEmpty() )
+	s = "Hello, World";
+    Hello h( s );
+    h.setCaption( "Qt says hello" );
+    QObject::connect( &h, SIGNAL(clicked()), &a, SLOT(quit()) );
+    h.setFont( QFont("times",32,QFont::Bold) );		// default font
+    h.setBackgroundColor( white );			// default bg color
+    a.setMainWidget( &h );
+    h.show();
+    return a.exec();
+}