summaryrefslogtreecommitdiffstats
path: root/q15/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'q15/src/main.cpp')
-rw-r--r--q15/src/main.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/q15/src/main.cpp b/q15/src/main.cpp
new file mode 100644
index 00000000..cf90046a
--- /dev/null
+++ b/q15/src/main.cpp
@@ -0,0 +1,50 @@
+/*
+ * $Id: main.cpp,v 0.1 2005/08/14 11:21:13 denis Exp $
+ *
+ * Author: Denis Kozadaev (denis@tambov.ru)
+ * Description:
+ *
+ * See also: style(9)
+ *
+ * Hacked by:
+ */
+
+#include <stdlib.h>
+
+#if QT_VERSION >= 0x040000
+#include <QtGui/QApplication>
+#else
+#include <ntqapplication.h>
+#endif
+
+#include "mainwindow.h"
+
+
+const int
+ XSize = 640,
+ YSize = 480;
+
+int
+main(int argc, char *argv[])
+{
+ TQApplication *app;
+ MainWindow *mw;
+ int result;
+
+#if QT_VERSION >= 0x040000
+ QApplication::setFont(QFont("textbookc", 10));
+#endif
+ app = new TQApplication(argc, argv);
+ mw = new MainWindow(NULL);
+
+ mw->resize(XSize, YSize);
+ mw->show();
+ mw->setMinimumSize(mw->size());
+ mw->setMaximumSize(mw->size());
+ result = app->exec();
+
+ delete mw;
+ delete app;
+
+ return (result);
+}