summaryrefslogtreecommitdiff
path: root/core/apps/calibrate
authorkergoth <kergoth>2003-03-05 18:50:13 (UTC)
committer kergoth <kergoth>2003-03-05 18:50:13 (UTC)
commitfb1f7a5207d227840e9026010cb8c6ce8c00d250 (patch) (side-by-side diff)
treeea79b4b52ec1927c248702ae414acd177f754603 /core/apps/calibrate
parent30712c8f3c4306a423062747567b993f3433c83b (diff)
downloadopie-fb1f7a5207d227840e9026010cb8c6ce8c00d250.zip
opie-fb1f7a5207d227840e9026010cb8c6ce8c00d250.tar.gz
opie-fb1f7a5207d227840e9026010cb8c6ce8c00d250.tar.bz2
Allow builds of a standalone calibrate app, which I use for testing purposes.
Diffstat (limited to 'core/apps/calibrate') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/calibrate/calibrate.pro12
-rw-r--r--core/apps/calibrate/config.in8
-rw-r--r--core/apps/calibrate/main.cpp42
3 files changed, 55 insertions, 7 deletions
diff --git a/core/apps/calibrate/calibrate.pro b/core/apps/calibrate/calibrate.pro
index 861ec15..ffec76b 100644
--- a/core/apps/calibrate/calibrate.pro
+++ b/core/apps/calibrate/calibrate.pro
@@ -1,4 +1,12 @@
-# This is part of the taskbar
+TEMPLATE = app
+CONFIG = qt warn_on release
+DESTDIR = $(OPIEDIR)/bin
+HEADERS = calibrate.h
+SOURCES = calibrate.cpp main.cpp
+INCLUDEPATH += $(QTDIR)/include $(OPIEDIR)/include
+DEPENDPATH += $(QTDIR)/include $(OPIEDIR)/include
+TARGET = calibrate
+LIBS += -lqpe
TRANSLATIONS = ../../../i18n/de/calibrate.pro.in.ts \
../../../i18n/da/calibrate.pro.in.ts \
@@ -18,6 +26,4 @@ TRANSLATIONS = ../../../i18n/de/calibrate.pro.in.ts \
../../../i18n/it/calibrate.pro.in.ts \
../../../i18n/zh_TW/calibrate.pro.in.ts
-
-
include ( $(OPIEDIR)/include.pro )
diff --git a/core/apps/calibrate/config.in b/core/apps/calibrate/config.in
index e408448..9a418e9 100644
--- a/core/apps/calibrate/config.in
+++ b/core/apps/calibrate/config.in
@@ -1,4 +1,4 @@
-# config #CALIBRATE
-# boolean "calibrate"
-# default "y"
-# depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE
+ config CALIBRATE
+ boolean "calibrate (standalone)"
+ default "n"
+ depends ( LIBQPE || LIBQPE-X11 )
diff --git a/core/apps/calibrate/main.cpp b/core/apps/calibrate/main.cpp
new file mode 100644
index 0000000..cb041c9
--- a/dev/null
+++ b/core/apps/calibrate/main.cpp
@@ -0,0 +1,42 @@
+/**********************************************************************
+** 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 "calibrate.h"
+
+#include <qfile.h>
+#include <qpe/qpeapplication.h>
+
+int main( int argc, char ** argv )
+{
+ QPEApplication a( argc, argv );
+ int retval = 0;
+
+#if defined(QT_QWS_CASSIOPEIA) || defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
+ if ( !QFile::exists( "/etc/pointercal" ) ) {
+ // Make sure calibration widget starts on top.
+ Calibrate *cal = new Calibrate;
+ a.setMainWidget(cal);
+ a.showMainWidget(cal);
+ retval = a.exec();
+ delete cal;
+ }
+#endif
+ return retval;
+}