]> icculus.org git repositories - mikachu/openbox.git/blob - src/Rootmenu.cc
better gcc3 compat. using ostrstream again. and using namespace std;
[mikachu/openbox.git] / 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)
4 //
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:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
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.
22
23 // stupid macros needed to access some functions in version 2 of the GNU C
24 // library
25 #ifndef   _GNU_SOURCE
26 #define   _GNU_SOURCE
27 #endif // _GNU_SOURCE
28
29 #ifdef    HAVE_CONFIG_H
30 #  include "../config.h"
31 #endif // HAVE_CONFIG_H
32
33 #include "openbox.h"
34 #include "Rootmenu.h"
35 #include "Screen.h"
36
37 #ifdef    HAVE_STDIO_H
38 #  include <stdio.h>
39 #endif // HAVE_STDIO_H
40
41 #ifdef    HAVE_STDLIB_H
42 #  include <stdlib.h>
43 #endif // HAVE_STDLIB_H
44
45 #ifdef    HAVE_STRING_H
46 #  include <string.h>
47 #endif // HAVE_STRING_H
48
49 #ifdef    HAVE_SYS_PARAM_H
50 #  include <sys/param.h>
51 #endif // HAVE_SYS_PARAM_H
52
53 #ifndef   MAXPATHLEN
54 #define   MAXPATHLEN 255
55 #endif // MAXPATHLEN
56
57
58 Rootmenu::Rootmenu(BScreen &scrn) : Basemenu(scrn), screen(scrn),
59   openbox(scrn.getOpenbox())
60 {
61 }
62
63
64 void Rootmenu::itemSelected(int button, int index) {
65   if (button != 1)
66     return;
67
68   BasemenuItem *item = find(index);
69
70   if (!item->function())
71     return;
72
73   switch (item->function()) {
74   case BScreen::Execute:
75     if (item->exec()) {
76 #ifndef    __EMX__
77       char displaystring[MAXPATHLEN];
78       sprintf(displaystring, "DISPLAY=%s",
79               DisplayString(screen.getBaseDisplay().getXDisplay()));
80       sprintf(displaystring + strlen(displaystring) - 1, "%d",
81               screen.getScreenNumber());
82
83       bexec(item->exec(), displaystring);
84 #else //   __EMX__
85       spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec(), NULL);
86 #endif // !__EMX__
87     }
88     break;
89
90   case BScreen::Restart:
91     openbox.restart();
92     break;
93
94   case BScreen::RestartOther:
95     if (item->exec())
96       openbox.restart(item->exec());
97     break;
98
99   case BScreen::Exit:
100     openbox.shutdown();
101     break;
102
103   case BScreen::SetStyle:
104     if (item->exec())
105       openbox.setStyleFilename(item->exec());
106
107   case BScreen::Reconfigure:
108     openbox.reconfigure();
109     return;
110   }
111
112   if (! (screen.getRootmenu()->isTorn() || isTorn()) &&
113       item->function() != BScreen::Reconfigure &&
114       item->function() != BScreen::SetStyle)
115     hide();
116 }