diff options
author | Timothy Pearson <[email protected]> | 2013-01-26 13:16:15 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-26 13:16:15 -0600 |
commit | 7e09b5c2efae58399621a938de26b9675b8ba621 (patch) | |
tree | de2c9535e1f4c48ae91910492d298eba1d593fd5 /kscreensaver/xsavers/main.cpp | |
parent | 159f7e147ac33c924b3ce9050c8f03cbc54916ee (diff) | |
download | tdeartwork-7e09b5c2efae58399621a938de26b9675b8ba621.tar.gz tdeartwork-7e09b5c2efae58399621a938de26b9675b8ba621.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kscreensaver/xsavers/main.cpp')
-rw-r--r-- | kscreensaver/xsavers/main.cpp | 108 |
1 files changed, 0 insertions, 108 deletions
diff --git a/kscreensaver/xsavers/main.cpp b/kscreensaver/xsavers/main.cpp deleted file mode 100644 index d7f76dcd..00000000 --- a/kscreensaver/xsavers/main.cpp +++ /dev/null @@ -1,108 +0,0 @@ -//----------------------------------------------------------------------------- -// -// Screen savers for KDE -// -// Copyright (c) Martin R. Jones 1999 -// - -#include <config.h> - -#include <stdio.h> -#include <stdlib.h> -#include <signal.h> - -#include <tqcolor.h> - -#include <klocale.h> -#include <kconfig.h> -#include <kstandarddirs.h> -#include <kdebug.h> -#include <kapplication.h> -#include <kcmdlineargs.h> -#include <kcrash.h> - -#include "demowin.h" -#include "saver.h" - -static const char appName[] = "klock"; -static const char description[] = I18N_NOOP("TDE Screen Lock/Saver"); -static const char version[] = "2.0.0"; - -static const KCmdLineOptions options[] = -{ - { "setup", I18N_NOOP("Setup screen saver"), 0 }, - { "window-id wid", I18N_NOOP("Run in the specified XWindow"), 0 }, - { "root", I18N_NOOP("Run in the root XWindow"), 0 }, - { "demo", I18N_NOOP("Start screen saver in demo mode"), "default"}, - KCmdLineLastOption -}; - -static void crashHandler( int /*sig*/ ) -{ -#ifdef SIGABRT - signal ( SIGABRT, SIG_DFL ); -#endif - abort(); -} - -//---------------------------------------------------------------------------- - -int main(int argc, char *argv[]) -{ - TDECmdLineArgs::init(argc, argv, appName, I18N_NOOP("KLock"), description, version); - - TDECmdLineArgs::addCmdLineOptions(options); - - TDEApplication app; - - KCrash::setCrashHandler( crashHandler ); - - DemoWindow *demoWidget = 0; - Window saveWin = 0; - - TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); - - if (args->isSet("setup")) - { - setupScreenSaver(); - exit(0); - } - - if (args->isSet("window-id")) - { - saveWin = atol(args->getOption("window-id")); - } - - if (args->isSet("root")) - { - saveWin = TQApplication::desktop()->handle(); - } - - if (args->isSet("demo")) - { - saveWin = 0; - } - - if (saveWin == 0) - { - demoWidget = new DemoWindow(); - demoWidget->setBackgroundMode(TQWidget::NoBackground); -// demoWidget->setBackgroundColor(TQt::black); - demoWidget->show(); - saveWin = demoWidget->winId(); - app.setMainWidget(demoWidget); - app.processEvents(); - } - - startScreenSaver(saveWin); - app.exec(); - stopScreenSaver(); - - if (demoWidget) - { - delete demoWidget; - } - - return 0; -} - |