diff options
author | Michele Calgaro <[email protected]> | 2019-04-21 23:22:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-04-21 23:22:20 +0900 |
commit | dba036816b279bc1539a9f3894fbc414665d2bce (patch) | |
tree | 29e4bf00bafe515e7afdd02168d65a47a3f9fbc0 /tqtinterface/qt4/tools/designer/app | |
parent | 6f1b4f0c7505a049d992a33f6e409b7c75732d4b (diff) | |
download | experimental-dba036816b279bc1539a9f3894fbc414665d2bce.tar.gz experimental-dba036816b279bc1539a9f3894fbc414665d2bce.zip |
Removed unnecessary and/or TDE-unrelated code.
Signed-off-by: Michele Calgaro <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'tqtinterface/qt4/tools/designer/app')
-rw-r--r-- | tqtinterface/qt4/tools/designer/app/app.pro | 26 | ||||
-rw-r--r-- | tqtinterface/qt4/tools/designer/app/designer.icns | bin | 56873 -> 0 bytes | |||
-rw-r--r-- | tqtinterface/qt4/tools/designer/app/designer.ico | bin | 10134 -> 0 bytes | |||
-rw-r--r-- | tqtinterface/qt4/tools/designer/app/designer.rc | 2 | ||||
-rw-r--r-- | tqtinterface/qt4/tools/designer/app/main.cpp | 228 |
5 files changed, 0 insertions, 256 deletions
diff --git a/tqtinterface/qt4/tools/designer/app/app.pro b/tqtinterface/qt4/tools/designer/app/app.pro deleted file mode 100644 index bbb592c..0000000 --- a/tqtinterface/qt4/tools/designer/app/app.pro +++ /dev/null @@ -1,26 +0,0 @@ -TEMPLATE = app -TARGET = designer - -CONFIG -= tqmoc -DESTDIR = $$QT_BUILD_TREE/bin - -SOURCES += main.cpp -INCLUDEPATH += ../designer -LIBS += -ldesignercore -lqui -ltqassistantclient -L$$QT_BUILD_TREE/lib -win32 { - RC_FILE = designer.rc - win32-g++ { - TARGETDEPS += $$QT_BUILD_TREE/lib/libdesignercore.a - } else { - TARGETDEPS += $$QT_BUILD_TREE/lib/designercore.lib - } -} -mac { - RC_FILE = designer.icns - QMAKE_INFO_PLIST = Info_mac.plist - staticlib:CONFIG -= global_init_link_order #yuck -} - - -target.path=$$bins.path -INSTALLS += target diff --git a/tqtinterface/qt4/tools/designer/app/designer.icns b/tqtinterface/qt4/tools/designer/app/designer.icns Binary files differdeleted file mode 100644 index 211cc24..0000000 --- a/tqtinterface/qt4/tools/designer/app/designer.icns +++ /dev/null diff --git a/tqtinterface/qt4/tools/designer/app/designer.ico b/tqtinterface/qt4/tools/designer/app/designer.ico Binary files differdeleted file mode 100644 index 7312d20..0000000 --- a/tqtinterface/qt4/tools/designer/app/designer.ico +++ /dev/null diff --git a/tqtinterface/qt4/tools/designer/app/designer.rc b/tqtinterface/qt4/tools/designer/app/designer.rc deleted file mode 100644 index 4b6324b..0000000 --- a/tqtinterface/qt4/tools/designer/app/designer.rc +++ /dev/null @@ -1,2 +0,0 @@ -IDI_ICON1 ICON DISCARDABLE "designer.ico" - diff --git a/tqtinterface/qt4/tools/designer/app/main.cpp b/tqtinterface/qt4/tools/designer/app/main.cpp deleted file mode 100644 index 5f31ff5..0000000 --- a/tqtinterface/qt4/tools/designer/app/main.cpp +++ /dev/null @@ -1,228 +0,0 @@ -/********************************************************************** -** Copyright (C) 2000-2008 Trolltech ASA. All rights reserved. -** -** This file is part of TQt Designer. -** -** This file may be used under the terms of the GNU General -** Public License versions 2.0 or 3.0 as published by the Free -** Software Foundation and appearing in the files LICENSE.GPL2 -** and LICENSE.GPL3 included in the packaging of this file. -** Alternatively you may (at your option) use any later version -** of the GNU General Public License if such license has been -** publicly approved by Trolltech ASA (or its successors, if any) -** and the KDE Free TQt Foundation. -** -** Please review the following information to ensure GNU General -** Public Licensing requirements will be met: -** http://trolltech.com/products/qt/licenses/licensing/opensource/. -** If you are unsure which license is appropriate for your use, please -** review the following information: -** http://trolltech.com/products/qt/licenses/licensing/licensingoverview -** or contact the sales department at [email protected]. -** -** Licensees holding valid TQt Commercial licenses may use this file in -** accordance with the TQt Commercial License Agreement provided with -** the Software. -** -** This file is provided "AS IS" with NO WARRANTY OF ANY KIND, -** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR -** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted -** herein. -** -**********************************************************************/ - -#include "tqplatformdefs.h" - -// SCO OpenServer redefines raise -> kill -#if defined(raise) -# undef raise -#endif - -#include "mainwindow.h" -#include "formwindow.h" - -#include "designerapp.h" - -#include <tqtextstream.h> -#include <tqobjectlist.h> -#include <tqsettings.h> -#include <tqsplashscreen.h> -#include <tqdir.h> - -#include <stdlib.h> -#include <signal.h> - -// SCO OpenServer redefines raise -> kill -#if defined(raise) -# undef raise -#endif - -#if defined(TQ_WS_WIN) -#include <tqt_windows.h> -#include <process.h> -#endif - -#if defined(TQ_OS_UNIX) -#if defined(TQ_C_CALLBACKS) -extern "C" { -#endif - -static void signalHandler( TQT_SIGNAL_ARGS ) -{ - TQFile f( TQDir::homeDirPath() + "/.designerargs" ); - f.open( IO_ReadOnly ); - TQString args; - f.readLine( args, f.size() ); - TQStringList lst = TQStringList::split( " ", args ); - for ( TQStringList::Iterator it = lst.begin(); it != lst.end(); ++it ) { - TQString arg = (*it).stripWhiteSpace(); - if ( arg[0] != '-' ) { - TQObjectList* l = MainWindow::self->queryList( "FormWindow" ); - FormWindow* fw = (FormWindow*) l->first(); -#if 0 // ### what's this dead code for? - FormWindow* totop; -#endif - bool haveit = FALSE; - while ( fw ) { - haveit = haveit || fw->fileName() == arg; -#if 0 // ### what's this dead code for? - if ( haveit ) - totop = fw; -#endif - fw = (FormWindow*) l->next(); - } - if ( !haveit ) - MainWindow::self->openFormWindow( arg ); - } - } - MainWindow::self->raise(); - MainWindow::self->setActiveWindow(); -} - -#if defined(TQ_C_CALLBACKS) -} -#endif - -#endif - -#if defined(TQ_C_CALLBACKS) -extern "C" { -#endif - -static void exitHandler( TQT_SIGNAL_ARGS ) -{ - TQDir d( TQDir::homeDirPath() ); - d.remove( ".designerpid" ); - exit( -1 ); -} - -#if defined(TQ_C_CALLBACKS) -} -#endif - -int main( int argc, char *argv[] ) -{ - TQApplication::setColorSpec( TQApplication::ManyColor ); - - DesignerApplication a( argc, argv ); - - DesignerApplication::setOverrideCursor( TQt::WaitCursor ); - - bool creatPid = FALSE; - if ( a.argc() > 1 ) { - TQString arg1 = a.argv()[ 1 ]; - if ( arg1 == "-client" ) { - TQFile pf( TQDir::homeDirPath() + "/.designerpid" ); - if ( pf.exists() && pf.open( IO_ReadOnly ) ) { - TQString pidStr; - pf.readLine( pidStr, pf.size() ); - TQFile f( TQDir::homeDirPath() + "/.designerargs" ); - f.open( IO_WriteOnly ); - TQTextStream ts( &f ); - for ( int i = 1; i < a.argc(); ++i ) - ts << a.argv()[ i ] << " "; - ts << endl; - f.close(); -#if defined(TQ_OS_UNIX) - if ( kill( pidStr.toInt(), SIGUSR1 ) == -1 ) - creatPid = TRUE; - else - return 0; -#elif defined(TQ_OS_WIN32) - if ( !GetProcessVersion( pidStr.toUInt() ) ) { - creatPid = TRUE; - } else { - if ( a.winVersion() & TQt::WV_NT_based ) - SendMessage( HWND_BROADCAST, RegisterWindowMessage((TCHAR*)"TQT_DESIGNER_OPEN_FILE"), 0, 0 ); - else - SendMessage( HWND_BROADCAST, RegisterWindowMessageA("TQT_DESIGNER_OPEN_FILE"), 0, 0 ); - return 0; - } -#endif - } else { - creatPid = TRUE; - } - } else if(arg1 == "-debug_stderr") { - extern bool debugToStderr; //outputwindow.cpp - debugToStderr = TRUE; - } - } - - if ( creatPid ) { - TQFile pf( TQDir::homeDirPath() + "/.designerpid" ); - pf.open( IO_WriteOnly ); - TQTextStream ts( &pf ); -#if defined(TQ_OS_UNIX) - signal( SIGUSR1, signalHandler ); -#endif - ts << getpid() << endl; - - pf.close(); - signal( SIGABRT, exitHandler ); - signal( SIGFPE, exitHandler ); - signal( SIGILL, exitHandler ); - signal( SIGINT, exitHandler ); - signal( SIGSEGV, exitHandler ); - signal( SIGTERM, exitHandler ); - } - - extern void qInitImages_designercore(); - qInitImages_designercore(); - - TQSettings config; - TQString keybase = DesignerApplication::settingsKey(); - config.insertSearchPath( TQSettings::Windows, "/Trolltech" ); - TQStringList pluginPaths = config.readListEntry( keybase + "PluginPaths" ); - if (pluginPaths.count()) - TQApplication::tqsetLibraryPaths(pluginPaths); - - TQSplashScreen *splash = a.showSplash(); - - MainWindow *mw = new MainWindow( creatPid ); - a.setMainWidget( mw ); -#if defined(TQT_NON_COMMERCIAL) - mw->setCaption( "TQt Designer by Trolltech for non-commercial use" ); -#else - mw->setCaption( "TQt Designer by Trolltech" ); -#endif - if ( config.readBoolEntry( keybase + "Geometries/MainwindowMaximized", FALSE ) ) { - int x = config.readNumEntry( keybase + "Geometries/MainwindowX", 0 ); - int y = config.readNumEntry( keybase + "Geometries/MainwindowY", 0 ); - mw->move( x, y ); - mw->showMaximized(); - } else { - mw->show(); - } - if ( splash ) - splash->finish( mw ); - delete splash; - - TQApplication::restoreOverrideCursor(); - for ( int i = 1; i < a.argc(); ++i ) { - TQString arg = a.argv()[ i ]; - if ( arg[0] != '-' ) - mw->fileOpen( "", "", arg ); - } - - return a.exec(); -} |