// 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: main.cc,v 1.24 2003/10/02 16:14:41 rathnor Exp $ #include "fluxbox.hh" #include "I18n.hh" #include "version.h" #include "defaults.hh" #include "FbTk/Theme.hh" #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H //use GNU extensions #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif // _GNU_SOURCE #include #include #include #include #include #include #include using namespace std; void showInfo(ostream &ostr) { ostr<<"Fluxbox version: "<<__fluxbox_version< disabled): "<= argc) { fprintf(stderr, i18n.getMessage(FBNLS::mainSet, FBNLS::mainRCRequiresArg, "error: '-rc' requires and argument\n")); exit(1); } rc_file = argv[i]; } else if (! strcmp(argv[i], "-display")) { // check for -display option... to run on a display other than the one // set by the environment variable DISPLAY if ((++i) >= argc) { fprintf(stderr, i18n.getMessage(FBNLS::mainSet, FBNLS::mainDISPLAYRequiresArg, "error: '-display' requires an argument\n")); exit(1); } session_display = argv[i]; std::string display_env = "DISPLAY=" + session_display; if (putenv(const_cast(display_env.c_str()))) { fprintf(stderr, i18n. getMessage(FBNLS::mainSet, FBNLS::mainWarnDisplaySet, "warning: couldn't set environment variable 'DISPLAY'\n")); perror("putenv()"); } } else if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) { // print current version string cout<<"Fluxbox "<<__fluxbox_version<<" : (c) 2001-2003 Henrik Kinnunen "<= argc) { cerr<<"error: '-log' need an argument"<\t\tuse display connection.\n" " -rc \t\t\tuse alternate resource file.\n" " -version\t\t\tdisplay version and exit.\n" " -info\t\t\t\tdisplay some useful information.\n" "\t-log \t\t\tlog output to file.\n" " -help\t\t\t\tdisplay this help text and exit.\n\n"), __fluxbox_version, "2001-2003"); 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<<"Loggin to: "<eventLoop(); exitcode = EXIT_SUCCESS; } catch (std::out_of_range &oor) { cerr<<"Fluxbox: Out of range: "<