diff options
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r-- | src/FbCommands.hh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh index 9c61259..0355e7e 100644 --- a/src/FbCommands.hh +++ b/src/FbCommands.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbCommands.hh,v 1.15 2003/12/19 03:56:51 fluxgen Exp $ | 22 | // $Id: FbCommands.hh,v 1.16 2003/12/19 17:19:56 fluxgen Exp $ |
23 | 23 | ||
24 | // \file contains basic commands to restart, reconfigure, execute command and exit fluxbox | 24 | // \file contains basic commands to restart, reconfigure, execute command and exit fluxbox |
25 | 25 | ||
@@ -114,4 +114,18 @@ public: | |||
114 | 114 | ||
115 | } // end namespace FbCommands | 115 | } // end namespace FbCommands |
116 | 116 | ||
117 | class SetResourceValueCmd: public FbTk::Command { | ||
118 | public: | ||
119 | SetResourceValueCmd(const std::string &resourcename, const std::string &value); | ||
120 | void execute(); | ||
121 | private: | ||
122 | const std::string m_resname; | ||
123 | const std::string m_value; | ||
124 | }; | ||
125 | |||
126 | class SetResourceValueDialogCmd: public FbTk::Command { | ||
127 | public: | ||
128 | void execute(); | ||
129 | }; | ||
130 | |||
117 | #endif // FBCOMMANDS_HH | 131 | #endif // FBCOMMANDS_HH |