From be01f8c8e3e09a1c71165640ab722df948c4dfbb Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 4 Nov 2024 13:01:41 +0900 Subject: rename qmake to tqmake Signed-off-by: Michele Calgaro --- qmake/examples/precompile/main.cpp | 18 ------------------ qmake/examples/precompile/mydialog.ui | 29 ----------------------------- qmake/examples/precompile/myobject.cpp | 14 -------------- qmake/examples/precompile/myobject.h | 8 -------- qmake/examples/precompile/precompile.pro | 19 ------------------- qmake/examples/precompile/stable.h | 10 ---------- qmake/examples/precompile/util.cpp | 7 ------- qmake/examples/tutorial/hello.cpp | 7 ------- qmake/examples/tutorial/hello.h | 7 ------- qmake/examples/tutorial/hellounix.cpp | 2 -- qmake/examples/tutorial/hellowin.cpp | 2 -- qmake/examples/tutorial/main.cpp | 14 -------------- 12 files changed, 137 deletions(-) delete mode 100644 qmake/examples/precompile/main.cpp delete mode 100644 qmake/examples/precompile/mydialog.ui delete mode 100644 qmake/examples/precompile/myobject.cpp delete mode 100644 qmake/examples/precompile/myobject.h delete mode 100644 qmake/examples/precompile/precompile.pro delete mode 100644 qmake/examples/precompile/stable.h delete mode 100644 qmake/examples/precompile/util.cpp delete mode 100644 qmake/examples/tutorial/hello.cpp delete mode 100644 qmake/examples/tutorial/hello.h delete mode 100644 qmake/examples/tutorial/hellounix.cpp delete mode 100644 qmake/examples/tutorial/hellowin.cpp delete mode 100644 qmake/examples/tutorial/main.cpp (limited to 'qmake/examples') 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 -#include -#include -#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 @@ - -MyDialog - - - MyDialog - - - Mach 2! - - - - - aLabel - - - Join the life in the fastlane; - PCH enable your project today! - - - - - - aButton - - - &Quit - - - - - 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 -#include -#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 - -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 -# include -# include -# include -#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 - -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 -#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(); -} -- cgit v1.2.1