summaryrefslogtreecommitdiffstats
path: root/twin
diff options
context:
space:
mode:
Diffstat (limited to 'twin')
-rw-r--r--twin/resumer/CMakeLists.txt28
-rw-r--r--twin/resumer/resumer.cpp79
2 files changed, 107 insertions, 0 deletions
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 <l.lunak@kde.org>
+
+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 <kcmdlineargs.h>
+#include <kapplication.h>
+#include <kmessagebox.h>
+#include <kprocess.h>
+#include <klocale.h>
+#include <unistd.h>
+#include <twin.h>
+#include <X11/Xlib.h>
+
+static const KCmdLineOptions options[] =
+ {
+ // no need for I18N_NOOP(), this is not supposed to be used directly
+ { "pid <pid>", "PID of the application to resume.", 0 },
+ { "hostname <hostname>", "Hostname on which the application is running.", 0 },
+ { "windowname <caption>", "Caption of the window to be resumed.", 0 },
+ { "applicationname <name>", "Name of the application to be resumed.", 0 },
+ { "wid <id>", "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(
+ "<qt>The application \"<b>%1</b>\" has been suspended.<p>"
+ "Do you wish to resume this application?</qt>" )
+ .arg( caption );
+ if( KMessageBox::questionYesNo( 0, question, i18n("Resume suspended application?"), i18n("Resume"), i18n("Keep Suspended") ) == KMessageBox::Yes )
+ {
+ return 0;
+ }
+ else
+ {
+ return 1;
+ }
+ }