]> icculus.org git repositories - dana/openbox.git/blob - src/main.cc
use openbox/ dir for rc file and menu file. turn menu into a command line option...
[dana/openbox.git] / src / main.cc
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // main.cc for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #include "../version.h"
25
26 #ifdef    HAVE_CONFIG_H
27 #  include "../config.h"
28 #endif // HAVE_CONFIG_H
29
30 extern "C" {
31 #ifdef    HAVE_STDIO_H
32 #  include <stdio.h>
33 #endif // HAVE_STDIO_H
34
35 #ifdef HAVE_STDLIB_H
36 #  include <stdlib.h>
37 #endif // HAVE_STDLIB_H
38
39 #ifdef HAVE_STRING_H
40 #  include <string.h>
41 #endif // HAVE_STRING_H
42
43 #ifdef    HAVE_UNISTD_H
44 #include <sys/types.h>
45 #endif // HAVE_UNISTD_H
46
47 #ifdef    HAVE_SYS_PARAM_H
48 #  include <sys/param.h>
49 #endif // HAVE_SYS_PARAM_H
50 }
51
52 #include <string>
53 using std::string;
54
55 #include "i18n.hh"
56 #include "blackbox.hh"
57
58
59 I18n i18n; // initialized in main
60
61 static void showHelp(int exitval) {
62   // print program usage and command line options
63   printf(i18n(mainSet, mainUsage,
64               "Blackbox %s : (c) 2001 - 2002 Sean 'Shaleh' Perry\n"
65               "\t\t\t  1997 - 2000, 2002 Brad Hughes\n\n"
66               "  -display <string>\t\tuse display connection.\n"
67               "  -rc <string>\t\t\tuse alternate resource file.\n"
68               "  -menu <string>\t\t\tuse alternate menu file.\n"
69               "  -version\t\t\tdisplay version and exit.\n"
70               "  -help\t\t\t\tdisplay this help text and exit.\n\n"),
71          __openbox_version);
72
73   // some people have requested that we print out compile options
74   // as well
75   printf(i18n(mainSet, mainCompileOptions,
76               "Compile time options:\n"
77               "  Debugging:\t\t\t%s\n"
78               "  Shape:\t\t\t%s\n"
79               "  8bpp Ordered Dithering:\t%s\n\n"),
80 #ifdef    DEBUG
81          i18n(CommonSet, CommonYes, "yes"),
82 #else // !DEBUG
83          i18n(CommonSet, CommonNo, "no"),
84 #endif // DEBUG
85
86 #ifdef    SHAPE
87          i18n(CommonSet, CommonYes, "yes"),
88 #else // !SHAPE
89          i18n(CommonSet, CommonNo, "no"),
90 #endif // SHAPE
91
92 #ifdef    ORDEREDPSEUDO
93          i18n(CommonSet, CommonYes, "yes")
94 #else // !ORDEREDPSEUDO
95          i18n(CommonSet, CommonNo, "no")
96 #endif // ORDEREDPSEUDO
97           );
98
99   ::exit(exitval);
100 }
101
102 int main(int argc, char **argv) {
103   char *session_display = (char *) 0;
104   char *rc_file = (char *) 0;
105   char *menu_file = (char *) 0;
106
107   i18n.openCatalog("blackbox.cat");
108
109   for (int i = 1; i < argc; ++i) {
110     if (! strcmp(argv[i], "-rc")) {
111       // look for alternative rc file to use
112
113       if ((++i) >= argc) {
114         fprintf(stderr,
115                 i18n(mainSet, mainRCRequiresArg,
116                                  "error: '-rc' requires and argument\n"));
117
118         ::exit(1);
119       }
120
121       rc_file = argv[i];
122     } else if (! strcmp(argv[i], "-menu")) {
123       // look for alternative menu file to use
124
125       if ((++i) >= argc) {
126         fprintf(stderr,
127                 i18n(mainSet, mainMENURequiresArg,
128                      "error: '-menu' requires and argument\n"));
129
130         ::exit(1);
131       }
132
133       menu_file = argv[i];
134     } else if (! strcmp(argv[i], "-display")) {
135       // check for -display option... to run on a display other than the one
136       // set by the environment variable DISPLAY
137
138       if ((++i) >= argc) {
139         fprintf(stderr,
140                 i18n(mainSet, mainDISPLAYRequiresArg,
141                                  "error: '-display' requires an argument\n"));
142
143         ::exit(1);
144       }
145
146       session_display = argv[i];
147       string dtmp = "DISPLAY=";
148       dtmp += session_display;
149
150       if (putenv(const_cast<char*>(dtmp.c_str()))) {
151         fprintf(stderr, i18n(mainSet, mainWarnDisplaySet,
152                 "warning: couldn't set environment variable 'DISPLAY'\n"));
153         perror("putenv()");
154       }
155     } else if (! strcmp(argv[i], "-version")) {
156       // print current version string
157       printf("Blackbox %s : (c) 2001 - 2002 Sean 'Shaleh' Perry\n",
158              "\t\t\t   1997 - 2000 Brad Hughes\n"
159              __openbox_version);
160
161       ::exit(0);
162     } else if (! strcmp(argv[i], "-help")) {
163       showHelp(0);
164     } else { // invalid command line option
165       showHelp(-1);
166     }
167   }
168
169 #ifdef    __EMX__
170   _chdir2(getenv("X11ROOT"));
171 #endif // __EMX__
172
173   Blackbox blackbox(argv, session_display, rc_file, menu_file);
174   blackbox.eventLoop();
175
176   return(0);
177 }