1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
/*
* kstart.C. Part of the KDE project.
*
* Copyright (C) 1997-2000 Matthias Ettrich <ettrich@kde.org>
*
* First port to NETWM by David Faure <faure@kde.org>
* Send to system tray by Richard Moore <rich@kde.org>
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <ktoolinvocation.h>
#include "kstart.h"
#include <fcntl.h>
#include <stdlib.h>
#include <QRegExp>
#include <QTimer>
#include <QDesktopWidget>
#include <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QDebug>
#include <kprocess.h>
#include <kwindowsystem.h>
#include <kaboutdata.h>
#include <klocalizedstring.h>
#include <kstartupinfo.h>
#include <kxmessages.h>
#include <netwm.h>
#include <QX11Info>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
// some globals
static KProcess* proc = nullptr;
static QString exe;
static QString url;
static QString windowtitle;
static QString windowclass;
static int desktop = 0;
static bool activate = false;
static bool iconify = false;
static bool fullscreen = false;
static NET::States state = {};
static NET::States mask = {};
static NET::WindowType windowtype = NET::Unknown;
KStart::KStart()
:QObject()
{
NETRootInfo i( QX11Info::connection(), NET::Supported );
bool useRule = i.isSupported( NET::WM2KDETemporaryRules );
if( useRule )
sendRule();
else {
// connect to window add to get the NEW windows
connect(KWindowSystem::self(), SIGNAL(windowAdded(WId)), SLOT(windowAdded(WId)));
}
// propagate the app startup notification info to the started app
// We are not using KApplication, so the env remained set
KStartupInfoId id = KStartupInfo::currentStartupIdEnv();
//finally execute the comand
if (proc) {
if( int pid = proc->startDetached() ) {
KStartupInfoData data;
data.addPid( pid );
data.setName( exe );
data.setBin( exe.mid( exe.lastIndexOf( QLatin1Char('/') ) + 1 ));
KStartupInfo::sendChange( id, data );
}
else
KStartupInfo::sendFinish( id ); // failed to start
} else {
QString error;
QString dbusService;
int pid;
if (KToolInvocation::startServiceByDesktopPath(exe, url, &error, &dbusService, &pid) == 0) {
printf("%s\n", qPrintable(dbusService));
} else {
qCritical() << error;
}
}
QTimer::singleShot( useRule ? 0 : 120 * 1000, qApp, SLOT( quit()));
}
void KStart::sendRule() {
KXMessages msg;
QString message;
if( !windowtitle.isEmpty() )
message += QStringLiteral("title=") + windowtitle + QStringLiteral("\ntitlematch=3\n"); // 3 = regexp match
if( !windowclass.isEmpty() )
message += QStringLiteral("wmclass=") + windowclass + QStringLiteral("\nwmclassmatch=1\n") // 1 = exact match
+ QStringLiteral("wmclasscomplete=")
// if windowclass contains a space (i.e. 2 words, use whole WM_CLASS)
+ ( windowclass.contains( QLatin1Char(' ') ) ? QStringLiteral("true") : QStringLiteral("false") ) + QLatin1Char('\n');
if( (!windowtitle.isEmpty()) || (!windowclass.isEmpty()) ) {
// always ignore these window types
message += QStringLiteral("types=") + QString().setNum( -1U &
~( NET::TopMenuMask | NET::ToolbarMask | NET::DesktopMask | NET::SplashMask | NET::MenuMask )) + QLatin1Char('\n');
} else {
// accept only "normal" windows
message += QStringLiteral("types=") + QString().setNum( NET::NormalMask | NET::DialogMask ) + QLatin1Char('\n');
}
if ( ( desktop > 0 && desktop <= KWindowSystem::numberOfDesktops() )
|| desktop == NETWinInfo::OnAllDesktops ) {
message += QStringLiteral("desktop=") + QString().setNum( desktop ) + QStringLiteral("\ndesktoprule=3\n");
}
if (activate)
message += QStringLiteral("fsplevel=0\nfsplevelrule=2\n");
if (iconify)
message += QStringLiteral("minimize=true\nminimizerule=3\n");
if ( windowtype != NET::Unknown ) {
message += QStringLiteral("type=") + QString().setNum( windowtype ) + QStringLiteral("\ntyperule=2");
}
if ( state ) {
if( state & NET::KeepAbove )
message += QStringLiteral("above=true\naboverule=3\n");
if( state & NET::KeepBelow )
message += QStringLiteral("below=true\nbelowrule=3\n");
if( state & NET::SkipTaskbar )
message += QStringLiteral("skiptaskbar=true\nskiptaskbarrule=3\n");
if( state & NET::SkipPager )
message += QStringLiteral("skippager=true\nskippagerrule=3\n");
if( state & NET::MaxVert )
message += QStringLiteral("maximizevert=true\nmaximizevertrule=3\n");
if( state & NET::MaxHoriz )
message += QStringLiteral("maximizehoriz=true\nmaximizehorizrule=3\n");
if( state & NET::FullScreen )
message += QStringLiteral("fullscreen=true\nfullscreenrule=3\n");
}
msg.broadcastMessage( "_KDE_NET_WM_TEMPORARY_RULES", message, -1 );
qApp->flush();
}
const NET::WindowTypes SUPPORTED_WINDOW_TYPES_MASK = NET::NormalMask | NET::DesktopMask | NET::DockMask
| NET::ToolbarMask | NET::MenuMask | NET::DialogMask | NET::OverrideMask | NET::TopMenuMask
| NET::UtilityMask | NET::SplashMask;
void KStart::windowAdded(WId w){
KWindowInfo info( w, NET::WMWindowType | NET::WMName );
// always ignore these window types
if( info.windowType( SUPPORTED_WINDOW_TYPES_MASK ) == NET::TopMenu
|| info.windowType( SUPPORTED_WINDOW_TYPES_MASK ) == NET::Toolbar
|| info.windowType( SUPPORTED_WINDOW_TYPES_MASK ) == NET::Desktop )
return;
if ( !windowtitle.isEmpty() ) {
QString title = info.name().toLower();
QRegExp r( windowtitle.toLower());
if ( !r.exactMatch(title) )
return; // no match
}
if ( !windowclass.isEmpty() ) {
#ifdef __GNUC__
#warning "Porting required"
#endif
#if 0
XClassHint hint;
if( !XGetClassHint( QX11Info::display(), w, &hint ))
return;
Q3CString cls = windowclass.contains( ' ' )
? Q3CString( hint.res_name ) + ' ' + hint.res_class : Q3CString( hint.res_class );
cls = cls.toLower();
XFree( hint.res_name );
XFree( hint.res_class );
if( cls != windowclass )
return;
#endif
}
if( windowtitle.isEmpty() && windowclass.isEmpty() ) {
// accept only "normal" windows
if( info.windowType( SUPPORTED_WINDOW_TYPES_MASK ) != NET::Unknown
&& info.windowType( SUPPORTED_WINDOW_TYPES_MASK ) != NET::Normal
&& info.windowType( SUPPORTED_WINDOW_TYPES_MASK ) != NET::Dialog )
return;
}
applyStyle( w );
QApplication::exit();
}
//extern Atom qt_wm_state; // defined in qapplication_x11.cpp
static bool wstate_withdrawn( WId winid )
{
Q_UNUSED(winid);
#ifdef __GNUC__
#warning "Porting required."
#endif
//Porting info: The Qt4 equivalent for qt_wm_state is qt_x11Data->atoms[QX11Data::WM_STATE]
//which can be accessed via the macro ATOM(WM_STATE). Unfortunately, neither of these seem
//to be exported out of the Qt environment. This value may have to be acquired from somewhere else.
/*
Atom type;
int format;
unsigned long length, after;
unsigned char *data;
int r = XGetWindowProperty( QX11Info::display(), winid, qt_wm_state, 0, 2,
false, AnyPropertyType, &type, &format,
&length, &after, &data );
bool withdrawn = true;
if ( r == Success && data && format == 32 ) {
quint32 *wstate = (quint32*)data;
withdrawn = (*wstate == WithdrawnState );
XFree( (char *)data );
}
return withdrawn;
*/
return true;
}
void KStart::applyStyle(WId w ) {
if ( state || iconify || windowtype != NET::Unknown || desktop >= 1 ) {
XWithdrawWindow(QX11Info::display(), w, QX11Info::appScreen());
QApplication::flush();
while ( !wstate_withdrawn(w) )
;
}
NETWinInfo info(QX11Info::connection(), w, QX11Info::appRootWindow(), NET::WMState, NET::Properties2());
if ( ( desktop > 0 && desktop <= KWindowSystem::numberOfDesktops() )
|| desktop == NETWinInfo::OnAllDesktops )
info.setDesktop( desktop );
if (iconify) {
XWMHints * hints = XGetWMHints(QX11Info::display(), w );
if (hints ) {
hints->flags |= StateHint;
hints->initial_state = IconicState;
XSetWMHints( QX11Info::display(), w, hints );
XFree(hints);
}
}
if ( windowtype != NET::Unknown ) {
info.setWindowType( windowtype );
}
if ( state )
info.setState( state, mask );
if ( fullscreen ) {
QRect r = QApplication::desktop()->screenGeometry();
XMoveResizeWindow( QX11Info::display(), w, r.x(), r.y(), r.width(), r.height() );
}
XSync(QX11Info::display(), False);
XMapWindow(QX11Info::display(), w );
XSync(QX11Info::display(), False);
if (activate)
KWindowSystem::forceActiveWindow( w );
QApplication::flush();
}
int main( int argc, char *argv[] )
{
QApplication app(argc, argv);
KLocalizedString::setApplicationDomain( "kstart5" );
KAboutData aboutData(QStringLiteral("kstart"), i18n("KStart"), QString::fromLatin1(PROJECT_VERSION),
i18n(""
"Utility to launch applications with special window properties \n"
"such as iconified, maximized, a certain virtual desktop, a special decoration\n"
"and so on." ),
KAboutLicense::GPL,
i18n("(C) 1997-2000 Matthias Ettrich (ettrich@kde.org)"));
aboutData.addAuthor( i18n("Matthias Ettrich"), QString(), QStringLiteral("ettrich@kde.org") );
aboutData.addAuthor( i18n("David Faure"), QString(), QStringLiteral("faure@kde.org") );
aboutData.addAuthor( i18n("Richard J. Moore"), QString(), QStringLiteral("rich@kde.org") );
KAboutData::setApplicationData(aboutData);
QCommandLineParser parser;
aboutData.setupCommandLine(&parser);
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("!+command"), i18n("Command to execute")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("service"), i18n("Alternative to <command>: desktop file to start. D-Bus service will be printed to stdout"), QLatin1String("desktopfile")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("url"), i18n("Optional URL to pass <desktopfile>, when using --service"), QLatin1String("url")));
// "!" means: all options after command are treated as arguments to the command
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("window"), i18n("A regular expression matching the window title"), QLatin1String("regexp")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("windowclass"),
i18n("A string matching the window class (WM_CLASS property)\n"
"The window class can be found out by running\n"
"'xprop | grep WM_CLASS' and clicking on a window\n"
"(use either both parts separated by a space or only the right part).\n"
"NOTE: If you specify neither window title nor window class,\n"
"then the very first window to appear will be taken;\n"
"omitting both options is NOT recommended."), QLatin1String("class")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("desktop"), i18n("Desktop on which to make the window appear"), QLatin1String("number")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("currentdesktop"), i18n("Make the window appear on the desktop that was active\nwhen starting the application")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("alldesktops"), i18n("Make the window appear on all desktops")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("iconify"), i18n("Iconify the window")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("maximize"), i18n("Maximize the window")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("maximize-vertically"), i18n("Maximize the window vertically")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("maximize-horizontally"), i18n("Maximize the window horizontally")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("fullscreen"), i18n("Show window fullscreen")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("type"), i18n("The window type: Normal, Desktop, Dock, Toolbar, \nMenu, Dialog, TopMenu or Override"), QLatin1String("type")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("activate"),
i18n("Jump to the window even if it is started on a \n"
"different virtual desktop")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("ontop") << QLatin1String("keepabove"), i18n("Try to keep the window above other windows")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("onbottom") << QLatin1String("keepbelow"), i18n("Try to keep the window below other windows")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("skiptaskbar"), i18n("The window does not get an entry in the taskbar")));
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("skippager"), i18n("The window does not get an entry on the pager")));
parser.process(app);
aboutData.processCommandLine(&parser);
if (parser.isSet(QStringLiteral("service"))) {
exe = parser.value(QStringLiteral("service"));
url = parser.value(QStringLiteral("url"));
} else {
if ( parser.positionalArguments().count() == 0 )
qCritical() << i18n("No command specified");
exe = parser.positionalArguments().at(0);
proc = new KProcess;
for(int i=0; i < parser.positionalArguments().count(); i++)
(*proc) << parser.positionalArguments().at(i);
}
desktop = parser.value( QStringLiteral("desktop") ).toInt();
if ( parser.isSet ( QStringLiteral("alldesktops")) )
desktop = NETWinInfo::OnAllDesktops;
if ( parser.isSet ( QStringLiteral("currentdesktop")) )
desktop = KWindowSystem::currentDesktop();
windowtitle = parser.value( QStringLiteral("window" ));
windowclass = parser.value( QStringLiteral("windowclass" ));
if( !windowclass.isEmpty() )
windowclass = windowclass.toLower();
if( windowtitle.isEmpty() && windowclass.isEmpty())
qWarning() << "Omitting both --window and --windowclass arguments is not recommended" ;
QString s = parser.value( QStringLiteral("type") );
if ( !s.isEmpty() ) {
s = s.toLower();
if ( s == QLatin1String("desktop") )
windowtype = NET::Desktop;
else if ( s == QLatin1String("dock") )
windowtype = NET::Dock;
else if ( s == QLatin1String("toolbar") )
windowtype = NET::Toolbar;
else if ( s == QLatin1String("menu") )
windowtype = NET::Menu;
else if ( s == QLatin1String("dialog") )
windowtype = NET::Dialog;
else if ( s == QLatin1String("override") )
windowtype = NET::Override;
else if ( s == QLatin1String("topmenu") )
windowtype = NET::TopMenu;
else
windowtype = NET::Normal;
}
if ( parser.isSet( QStringLiteral("keepabove") ) ) {
state |= NET::KeepAbove;
mask |= NET::KeepAbove;
} else if ( parser.isSet( QStringLiteral("keepbelow") ) ) {
state |= NET::KeepBelow;
mask |= NET::KeepBelow;
}
if ( parser.isSet( QStringLiteral("skiptaskbar") ) ) {
state |= NET::SkipTaskbar;
mask |= NET::SkipTaskbar;
}
if ( parser.isSet( QStringLiteral("skippager") ) ) {
state |= NET::SkipPager;
mask |= NET::SkipPager;
}
activate = parser.isSet(QStringLiteral("activate"));
if ( parser.isSet(QStringLiteral("maximize")) ) {
state |= NET::Max;
mask |= NET::Max;
}
if ( parser.isSet(QStringLiteral("maximize-vertically")) ) {
state |= NET::MaxVert;
mask |= NET::MaxVert;
}
if ( parser.isSet(QStringLiteral("maximize-horizontally")) ) {
state |= NET::MaxHoriz;
mask |= NET::MaxHoriz;
}
iconify = parser.isSet(QStringLiteral("iconify"));
if ( parser.isSet(QStringLiteral("fullscreen")) ) {
NETRootInfo i( QX11Info::connection(), NET::Supported );
if( i.isSupported( NET::FullScreen )) {
state |= NET::FullScreen;
mask |= NET::FullScreen;
} else {
windowtype = NET::Override;
fullscreen = true;
}
}
fcntl(XConnectionNumber(QX11Info::display()), F_SETFD, 1);
KStart start;
return app.exec();
}
|