// main.cc for Fluxbox Window manager // Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) // and 2003 Simon Bowden (rathnor at users.sourceforge.net) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. // $Id$ #include "fluxbox.hh" #include "version.h" #include "defaults.hh" #include "FbTk/Theme.hh" #include "FbTk/I18n.hh" #include "FbTk/StringUtil.hh" #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H //use GNU extensions #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif // _GNU_SOURCE #ifdef HAVE_CSTDIO #include #else #include #endif #ifdef HAVE_CSTDLIB #include #else #include #endif #ifdef HAVE_CSTRING #include #else #include #endif #include #include #include #include using namespace std; void showInfo(ostream &ostr) { _FB_USES_NLS; ostr<<_FBTEXT(Common, FluxboxVersion, "Fluxbox version", "Fluxbox version heading")<<": "<<__fluxbox_version< "<< _FBTEXT(Common, Disabled, "disabled", "option is turned off")<<"): "<= argc) { cerr<<_FBTEXT(main, RCRequiresArg, "error: '-rc' requires an argument", "the -rc option requires a file argument")<= argc) { cerr<<_FBTEXT(main, DISPLAYRequiresArg, "error: '-display' requires an argument", "")<(display_env.c_str()))) { cerr<<_FBTEXT(main, WarnDisplayEnv, "warning: couldn't set environment variable 'DISPLAY'", "")<= argc) { cerr<<_FBTEXT(main, LOGRequiresArg, "error: '-log' needs an argument", "")<\t\tuse display connection.\n" "\t-rc \t\t\tuse alternate resource file.\n" "\t-version\t\t\tdisplay version and exit.\n" "\t-info\t\t\t\tdisplay some useful information.\n" "\t-log \t\t\tlog output to file.\n" "\t-help\t\t\t\tdisplay this help text and exit.\n\n", "Main usage string. Please lay it out nicely. There is one %s that is given the version"), __fluxbox_version, "2001-2004"); exit(0); } else if (strcmp(argv[i], "-info") == 0 || strcmp(argv[i], "-i") == 0) { showInfo(cout); exit(0); } else if (strcmp(argv[i], "-verbose") == 0) { FbTk::ThemeManager::instance().setVerbose(true); } } #ifdef __EMX__ _chdir2(getenv("X11ROOT")); #endif // __EMX__ std::auto_ptr fluxbox; int exitcode=EXIT_FAILURE; streambuf *outbuf = 0; streambuf *errbuf = 0; ofstream log_file(log_filename.c_str()); // setup log file if (log_file) { cerr<<_FBTEXT(main, LoggingTo, "Logging to", "Logging to a file")<<": "<eventLoop(); exitcode = EXIT_SUCCESS; } catch (std::out_of_range &oor) { cerr<<"Fluxbox: "<<_FBTEXT(main, ErrorOutOfRange, "Out of range", "Error message")<<": "<isRestarting(); restart_argument = fluxbox->getRestartArgument(); } // destroy fluxbox fluxbox.reset(0); // restore cout and cin streams if (outbuf != 0) cout.rdbuf(outbuf); if (errbuf != 0) cerr.rdbuf(errbuf); if (restarting) { if (restart_argument.c_str()) { execlp(restart_argument.c_str(), restart_argument.c_str(), 0); perror(restart_argument.c_str()); } // fall back in case the above execlp doesn't work execvp(argv[0], argv); execvp(FbTk::StringUtil::basename(argv[0]).c_str(), argv); } return exitcode; }