all repos — fluxbox @ 3eb4d3637fbe4059acdc323660a6ce401c7ebe80

custom fork of the fluxbox windowmanager

contains basic commands to restart, reconfigure, execute command and exit fluxbox
fluxgen fluxgen
commit

3eb4d3637fbe4059acdc323660a6ce401c7ebe80

parent

7debbae5bdb8e8ec759e76d655f3b970613e3fb4

2 files changed, 128 insertions(+), 0 deletions(-)

jump to
A src/FbCommands.cc

@@ -0,0 +1,64 @@

+// FbCommands.cc for Fluxbox +// Copyright (c) 2003 Henrik Kinnunen (fluxgen 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: FbCommands.cc,v 1.1 2003/01/09 17:46:10 fluxgen Exp $ + +#include "FbCommands.hh" +#include "fluxbox.hh" + +#include <sys/types.h> +#include <unistd.h> + +#include <iostream> +using namespace std; + +namespace FbCommands { + +ExecuteCmd::ExecuteCmd(const std::string &cmd):m_cmd(cmd) { + +} + +void ExecuteCmd::execute() { +#ifndef __EMX__ + if (! fork()) { + setsid(); + execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), 0); + exit(0); + } +#else // __EMX__ + spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec().c_str(), 0); +#endif // !__EMX__ + +} + +void ExitFluxboxCmd::execute() { + Fluxbox::instance()->shutdown(); +} + +void RestartFluxboxCmd::execute() { + Fluxbox::instance()->restart(); +} + +void ReconfigureFluxboxCmd::execute() { + Fluxbox::instance()->reconfigure(); +} + +}; // end namespace FbCommands
A src/FbCommands.hh

@@ -0,0 +1,64 @@

+// FbCommands.hh for Fluxbox +// Copyright (c) 2003 Henrik Kinnunen (fluxgen 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: FbCommands.hh,v 1.1 2003/01/09 17:46:10 fluxgen Exp $ + +// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox + +#ifndef FBCOMMANDS_HH +#define FBCOMMANDS_HH + +#include "Command.hh" + +#include <string> + +namespace FbCommands { + +/// executes a system command +class ExecuteCmd: public FbTk::Command { +public: + explicit ExecuteCmd(const std::string &cmd); + void execute(); +private: + std::string m_cmd; +}; + +/// exit fluxbox +class ExitFluxboxCmd: public FbTk::Command { +public: + void execute(); +}; + +/// restarts fluxbox +class RestartFluxboxCmd: public FbTk::Command { +public: + void execute(); +}; + +/// reconfigures fluxbox +class ReconfigureFluxboxCmd: public FbTk::Command { +public: + void execute(); +}; + +}; // end namespace FbCommands + +#endif // FBCOMMANDS_HH