Initial revision
[dana/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    STDC_HEADERS
42 #  include <stdlib.h>
43 #  include <string.h>
44 #endif // STDC_HEADERS
45
46 #ifdef    HAVE_SYS_PARAM_H
47 #  include <sys/param.h>
48 #endif // HAVE_SYS_PARAM_H
49
50 #ifndef   MAXPATHLEN
51 #define   MAXPATHLEN 255
52 #endif // MAXPATHLEN
53
54
55 Rootmenu::Rootmenu(BScreen *scrn) : Basemenu(scrn) {
56   screen = scrn;
57   openbox = screen->getOpenbox();
58 }
59
60
61 void Rootmenu::itemSelected(int button, int index) {
62   if (button != 1)
63     return;
64
65   BasemenuItem *item = find(index);
66
67   if (!item->function())
68     return;
69
70   switch (item->function()) {
71   case BScreen::Execute:
72     if (item->exec()) {
73 #ifndef    __EMX__
74       char displaystring[MAXPATHLEN];
75       sprintf(displaystring, "DISPLAY=%s",
76               DisplayString(screen->getBaseDisplay()->getXDisplay()));
77       sprintf(displaystring + strlen(displaystring) - 1, "%d",
78               screen->getScreenNumber());
79
80       bexec(item->exec(), displaystring);
81 #else //   __EMX__
82       spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec(), NULL);
83 #endif // !__EMX__
84     }
85     break;
86
87   case BScreen::Restart:
88     openbox->restart();
89     break;
90
91   case BScreen::RestartOther:
92     if (item->exec())
93       openbox->restart(item->exec());
94     break;
95
96   case BScreen::Exit:
97     openbox->shutdown();
98     break;
99
100   case BScreen::SetStyle:
101     if (item->exec())
102       openbox->saveStyleFilename(item->exec());
103
104   case BScreen::Reconfigure:
105     openbox->reconfigure();
106     return;
107   }
108
109   if (! (screen->getRootmenu()->isTorn() || isTorn()) &&
110       item->function() != BScreen::Reconfigure &&
111       item->function() != BScreen::SetStyle)
112     hide();
113 }