diff options
Diffstat (limited to 'qmake/examples')
-rw-r--r-- | qmake/examples/precompile/main.cpp | 18 | ||||
-rw-r--r-- | qmake/examples/precompile/mydialog.ui | 29 | ||||
-rw-r--r-- | qmake/examples/precompile/myobject.cpp | 14 | ||||
-rw-r--r-- | qmake/examples/precompile/myobject.h | 8 | ||||
-rw-r--r-- | qmake/examples/precompile/precompile.pro | 19 | ||||
-rw-r--r-- | qmake/examples/precompile/stable.h | 10 | ||||
-rw-r--r-- | qmake/examples/precompile/util.cpp | 7 | ||||
-rw-r--r-- | qmake/examples/tutorial/hello.cpp | 7 | ||||
-rw-r--r-- | qmake/examples/tutorial/hello.h | 7 | ||||
-rw-r--r-- | qmake/examples/tutorial/hellounix.cpp | 2 | ||||
-rw-r--r-- | qmake/examples/tutorial/hellowin.cpp | 2 | ||||
-rw-r--r-- | qmake/examples/tutorial/main.cpp | 14 |
12 files changed, 0 insertions, 137 deletions
diff --git a/qmake/examples/precompile/main.cpp b/qmake/examples/precompile/main.cpp deleted file mode 100644 index 0c8218040..000000000 --- a/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, TQ_SIGNAL(clicked()), TQ_SLOT(close()) ); - dia.show(); - - return app.exec(); -} diff --git a/qmake/examples/precompile/mydialog.ui b/qmake/examples/precompile/mydialog.ui deleted file mode 100644 index 081ddfa87..000000000 --- a/qmake/examples/precompile/mydialog.ui +++ /dev/null @@ -1,29 +0,0 @@ -<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> -<class>MyDialog</class> -<widget class="TQDialog"> - <property name="name"> - <cstring>MyDialog</cstring> - </property> - <property name="caption"> - <string>Mach 2!</string> - </property> - <vbox> - <widget class="TQLabel"> - <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="TQPushButton"> - <property name="name"> - <cstring>aButton</cstring> - </property> - <property name="text"> - <string>&Quit</string> - </property> - </widget> - </vbox> -</widget> -</UI> diff --git a/qmake/examples/precompile/myobject.cpp b/qmake/examples/precompile/myobject.cpp deleted file mode 100644 index da24e625d..000000000 --- a/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() -{ - tqDebug("MyObject::~MyObject()"); -} diff --git a/qmake/examples/precompile/myobject.h b/qmake/examples/precompile/myobject.h deleted file mode 100644 index 90c0b865b..000000000 --- a/qmake/examples/precompile/myobject.h +++ /dev/null @@ -1,8 +0,0 @@ -#include <tqobject.h> - -class MyObject : public TQObject -{ -public: - MyObject(); - ~MyObject(); -}; diff --git a/qmake/examples/precompile/precompile.pro b/qmake/examples/precompile/precompile.pro deleted file mode 100644 index 1f02d1a17..000000000 --- a/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/qmake/examples/precompile/stable.h b/qmake/examples/precompile/stable.h deleted file mode 100644 index a62e50179..000000000 --- a/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/qmake/examples/precompile/util.cpp b/qmake/examples/precompile/util.cpp deleted file mode 100644 index 6a1545255..000000000 --- a/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/qmake/examples/tutorial/hello.cpp b/qmake/examples/tutorial/hello.cpp deleted file mode 100644 index 8ab5e5a5a..000000000 --- a/qmake/examples/tutorial/hello.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "hello.h" - -MyPushButton::MyPushButton( const TQString& text ) - : TQPushButton( text, 0, "mypushbutton" ) -{ - tqDebug( "My PushButton has been constructed" ); -} diff --git a/qmake/examples/tutorial/hello.h b/qmake/examples/tutorial/hello.h deleted file mode 100644 index 47eb7e3ab..000000000 --- a/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/qmake/examples/tutorial/hellounix.cpp b/qmake/examples/tutorial/hellounix.cpp deleted file mode 100644 index 0abf10ebf..000000000 --- a/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/qmake/examples/tutorial/hellowin.cpp b/qmake/examples/tutorial/hellowin.cpp deleted file mode 100644 index 54c8d5d3a..000000000 --- a/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/qmake/examples/tutorial/main.cpp b/qmake/examples/tutorial/main.cpp deleted file mode 100644 index a908c9710..000000000 --- a/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(); -} |