]>
Dogcows Code - chaz/openbox/blob - src/Rootmenu.cc
1 // Rootmenu.cc for Openbox
2 // Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
3 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
23 // stupid macros needed to access some functions in version 2 of the GNU C
30 # include "../config.h"
31 #endif // HAVE_CONFIG_H
39 #endif // HAVE_STDIO_H
43 #endif // HAVE_STDLIB_H
47 #endif // HAVE_STRING_H
49 #ifdef HAVE_SYS_PARAM_H
50 # include <sys/param.h>
51 #endif // HAVE_SYS_PARAM_H
54 #define MAXPATHLEN 255
58 Rootmenu::Rootmenu(BScreen
&scrn
) : Basemenu(scrn
), openbox(scrn
.getOpenbox()),
64 void Rootmenu::itemSelected(int button
, int index
) {
68 BasemenuItem
*item
= find(index
);
70 if (!item
->function())
73 switch (item
->function()) {
74 case BScreen::Execute
:
77 char displaystring
[MAXPATHLEN
];
78 sprintf(displaystring
, "DISPLAY=%s",
79 DisplayString(screen
.getBaseDisplay().getXDisplay()));
80 sprintf(displaystring
+ strlen(displaystring
) - 1, "%d",
81 screen
.getScreenNumber());
83 bexec(item
->exec(), displaystring
);
85 spawnlp(P_NOWAIT
, "cmd.exe", "cmd.exe", "/c", item
->exec(), NULL
);
90 case BScreen::Restart
:
94 case BScreen::RestartOther
:
96 openbox
.restart(item
->exec());
103 case BScreen::SetStyle
:
105 openbox
.setStyleFilename(item
->exec());
107 case BScreen::Reconfigure
:
108 openbox
.reconfigure();
112 if (! (screen
.getRootmenu()->isTorn() || isTorn()) &&
113 item
->function() != BScreen::Reconfigure
&&
114 item
->function() != BScreen::SetStyle
)
This page took 0.045722 seconds and 4 git commands to generate.