summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/qmake/examples
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/qmake/examples')
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/main.cpp18
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/mydialog.ui32
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/myobject.cpp14
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/myobject.h8
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/precompile.pro19
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/stable.h10
-rw-r--r--tqtinterface/qt4/qmake/examples/precompile/util.cpp7
-rw-r--r--tqtinterface/qt4/qmake/examples/tutorial/hello.cpp7
-rw-r--r--tqtinterface/qt4/qmake/examples/tutorial/hello.h7
-rw-r--r--tqtinterface/qt4/qmake/examples/tutorial/hellounix.cpp2
-rw-r--r--tqtinterface/qt4/qmake/examples/tutorial/hellowin.cpp2
-rw-r--r--tqtinterface/qt4/qmake/examples/tutorial/main.cpp14
12 files changed, 0 insertions, 140 deletions
diff --git a/tqtinterface/qt4/qmake/examples/precompile/main.cpp b/tqtinterface/qt4/qmake/examples/precompile/main.cpp
deleted file mode 100644
index 9669a2c..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/main.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <tqapplication.h>
-#include <tqpushbutton.h>
-#include <tqlabel.h>
-#include "myobject.h"
-#include "mydialog.h"
-
-int main(int argc, char **argv)
-{
- TQApplication app(argc, argv);
-
- MyObject obj;
- MyDialog dia;
- app.setMainWidget( &dia );
- dia.connect( dia.aButton, TQT_SIGNAL(clicked()), TQT_SLOT(close()) );
- dia.show();
-
- return app.exec();
-}
diff --git a/tqtinterface/qt4/qmake/examples/precompile/mydialog.ui b/tqtinterface/qt4/qmake/examples/precompile/mydialog.ui
deleted file mode 100644
index fe90a29..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/mydialog.ui
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
-<class>MyDialog</class>
-<widget class="QDialog">
- <property name="name">
- <cstring>MyDialog</cstring>
- </property>
- <property name="caption">
- <string>Mach 2!</string>
- </property>
- <vbox>
- <widget class="QLabel">
- <property name="name">
- <cstring>aLabel</cstring>
- </property>
- <property name="text">
- <string>Join the life in the fastlane; - PCH enable your project today! -</string>
- </property>
- </widget>
- <widget class="QPushButton">
- <property name="name">
- <cstring>aButton</cstring>
- </property>
- <property name="text">
- <string>&amp;Quit</string>
- </property>
- <property name="accel">
- <string>Alt+Q</string>
- </property>
- </widget>
- </vbox>
-</widget>
-</UI>
diff --git a/tqtinterface/qt4/qmake/examples/precompile/myobject.cpp b/tqtinterface/qt4/qmake/examples/precompile/myobject.cpp
deleted file mode 100644
index 7c3d04c..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/myobject.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <iostream>
-#include <tqobject.h>
-#include "myobject.h"
-
-MyObject::MyObject()
- : TQObject()
-{
- std::cout << "MyObject::MyObject()\n";
-}
-
-MyObject::~MyObject()
-{
- qDebug("MyObject::~MyObject()");
-}
diff --git a/tqtinterface/qt4/qmake/examples/precompile/myobject.h b/tqtinterface/qt4/qmake/examples/precompile/myobject.h
deleted file mode 100644
index 90c0b86..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/myobject.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <tqobject.h>
-
-class MyObject : public TQObject
-{
-public:
- MyObject();
- ~MyObject();
-};
diff --git a/tqtinterface/qt4/qmake/examples/precompile/precompile.pro b/tqtinterface/qt4/qmake/examples/precompile/precompile.pro
deleted file mode 100644
index 1f02d1a..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/precompile.pro
+++ /dev/null
@@ -1,19 +0,0 @@
-#############################################
-#
-# Example for using Precompiled Headers
-#
-#############################################
-TEMPLATE = app
-LANGUAGE = C++
-CONFIG += console precompile_header
-
-# Use Precompiled headers (PCH)
-PRECOMPILED_HEADER = stable.h
-
-HEADERS += stable.h \
- myobject.h
-SOURCES += main.cpp \
- myobject.cpp \
- util.cpp
-FORMS = mydialog.ui
-
diff --git a/tqtinterface/qt4/qmake/examples/precompile/stable.h b/tqtinterface/qt4/qmake/examples/precompile/stable.h
deleted file mode 100644
index a62e501..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/stable.h
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Add C includes here */
-
-#if defined __cplusplus
-/* Add C++ includes here */
-
-# include <iostream>
-# include <tqapplication.h>
-# include <tqpushbutton.h>
-# include <tqlabel.h>
-#endif
diff --git a/tqtinterface/qt4/qmake/examples/precompile/util.cpp b/tqtinterface/qt4/qmake/examples/precompile/util.cpp
deleted file mode 100644
index 6a15452..0000000
--- a/tqtinterface/qt4/qmake/examples/precompile/util.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-void util_function_does_nothing()
-{
- // Nothing here...
- int x = 0;
- ++x;
-}
-
diff --git a/tqtinterface/qt4/qmake/examples/tutorial/hello.cpp b/tqtinterface/qt4/qmake/examples/tutorial/hello.cpp
deleted file mode 100644
index da01513..0000000
--- a/tqtinterface/qt4/qmake/examples/tutorial/hello.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "hello.h"
-
-MyPushButton::MyPushButton( const TQString& text )
- : TQPushButton( text, 0, "mypushbutton" )
-{
- qDebug( "My PushButton has been constructed" );
-}
diff --git a/tqtinterface/qt4/qmake/examples/tutorial/hello.h b/tqtinterface/qt4/qmake/examples/tutorial/hello.h
deleted file mode 100644
index 47eb7e3..0000000
--- a/tqtinterface/qt4/qmake/examples/tutorial/hello.h
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <tqpushbutton.h>
-
-class MyPushButton : public TQPushButton
-{
-public:
- MyPushButton( const TQString& );
-};
diff --git a/tqtinterface/qt4/qmake/examples/tutorial/hellounix.cpp b/tqtinterface/qt4/qmake/examples/tutorial/hellounix.cpp
deleted file mode 100644
index 0abf10e..0000000
--- a/tqtinterface/qt4/qmake/examples/tutorial/hellounix.cpp
+++ /dev/null
@@ -1,2 +0,0 @@
-// This file does nothing, but check your makefile to see if there is a
-// reference to hello_win.cpp...there shouldn't be if qmake is used on X11.
diff --git a/tqtinterface/qt4/qmake/examples/tutorial/hellowin.cpp b/tqtinterface/qt4/qmake/examples/tutorial/hellowin.cpp
deleted file mode 100644
index 54c8d5d..0000000
--- a/tqtinterface/qt4/qmake/examples/tutorial/hellowin.cpp
+++ /dev/null
@@ -1,2 +0,0 @@
-// This file does nothing, but check your makefile to see if there is a
-// reference to hello_x11.cpp...there shouldn't be if qmake is used on Windows.
diff --git a/tqtinterface/qt4/qmake/examples/tutorial/main.cpp b/tqtinterface/qt4/qmake/examples/tutorial/main.cpp
deleted file mode 100644
index a908c97..0000000
--- a/tqtinterface/qt4/qmake/examples/tutorial/main.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <tqapplication.h>
-#include "hello.h"
-
-int main( int argc, char **argv )
-{
- TQApplication a( argc, argv );
-
- MyPushButton* hello = new MyPushButton( "Hello world!" );
- hello->resize( 100, 30 );
-
- a.setMainWidget( hello );
- hello->show();
- return a.exec();
-}