From 3502af7266a0eba574a0aa7b4a59217095dd083d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 20 Feb 2012 14:04:48 -0600 Subject: Add missing resumer directory from prior commit --- twin/resumer/CMakeLists.txt | 28 ++++++++++++++++ twin/resumer/resumer.cpp | 79 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 twin/resumer/CMakeLists.txt create mode 100644 twin/resumer/resumer.cpp (limited to 'twin') diff --git a/twin/resumer/CMakeLists.txt b/twin/resumer/CMakeLists.txt new file mode 100644 index 000000000..7a4b49cb3 --- /dev/null +++ b/twin/resumer/CMakeLists.txt @@ -0,0 +1,28 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### twin_resumer_helper (executable) ########### + +tde_add_executable( twin_resumer_helper + SOURCES resumer.cpp + LINK tdeui-shared + DESTINATION ${BIN_INSTALL_DIR} +) diff --git a/twin/resumer/resumer.cpp b/twin/resumer/resumer.cpp new file mode 100644 index 000000000..d503e49a7 --- /dev/null +++ b/twin/resumer/resumer.cpp @@ -0,0 +1,79 @@ +/**************************************************************************** + + Copyright (C) 2003 Lubos Lunak + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include + +static const KCmdLineOptions options[] = + { + // no need for I18N_NOOP(), this is not supposed to be used directly + { "pid ", "PID of the application to resume.", 0 }, + { "hostname ", "Hostname on which the application is running.", 0 }, + { "windowname ", "Caption of the window to be resumed.", 0 }, + { "applicationname ", "Name of the application to be resumed.", 0 }, + { "wid ", "ID of resource belonging to the application.", 0 }, + KCmdLineLastOption + }; + +int main( int argc, char* argv[] ) + { + KLocale::setMainCatalogue( "twin" ); // the messages are in twin's .po file + KCmdLineArgs::init( argc, argv, "twin_resume_helper", I18N_NOOP( "KWin" ), + I18N_NOOP( "KWin helper utility" ), "1.0" ); + KCmdLineArgs::addCmdLineOptions( options ); + KApplication app; + KCmdLineArgs* args = KCmdLineArgs::parsedArgs(); + TQCString hostname = args->getOption( "hostname" ); + bool pid_ok = false; + pid_t pid = args->getOption( "pid" ).toULong( &pid_ok ); + TQString caption = TQString::fromUtf8( args->getOption( "windowname" )); + TQString appname = TQString::fromLatin1( args->getOption( "applicationname" )); + bool id_ok = false; + Window id = args->getOption( "wid" ).toULong( &id_ok ); + args->clear(); + if( !pid_ok || pid == 0 || !id_ok || id == None + || hostname.isEmpty() || caption.isEmpty() || appname.isEmpty()) + { + KCmdLineArgs::usage( i18n( "This helper utility is not supposed to be called directly." )); + return 2; + } + TQString question = i18n( + "The application \"%1\" has been suspended.

" + "Do you wish to resume this application?" ) + .arg( caption ); + if( KMessageBox::questionYesNo( 0, question, i18n("Resume suspended application?"), i18n("Resume"), i18n("Keep Suspended") ) == KMessageBox::Yes ) + { + return 0; + } + else + { + return 1; + } + } -- cgit v1.2.3