aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-19 17:22:04 (GMT)
committerfluxgen <fluxgen>2003-12-19 17:22:04 (GMT)
commit6c647097c218cae3eabf2d380e603177b16ce8fc (patch)
tree921e931831cf65d5223ef6e40f0ca7fa9266bf84 /src/FbCommands.hh
parent694c4489e8de6179273cd8770004d6fd74a15d1b (diff)
downloadfluxbox-6c647097c218cae3eabf2d380e603177b16ce8fc.zip
fluxbox-6c647097c218cae3eabf2d380e603177b16ce8fc.tar.bz2
SetResourceValueCmd and SetResourceValueDialogCmd
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r--src/FbCommands.hh16
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
117class SetResourceValueCmd: public FbTk::Command {
118public:
119 SetResourceValueCmd(const std::string &resourcename, const std::string &value);
120 void execute();
121private:
122 const std::string m_resname;
123 const std::string m_value;
124};
125
126class SetResourceValueDialogCmd: public FbTk::Command {
127public:
128 void execute();
129};
130
117#endif // FBCOMMANDS_HH 131#endif // FBCOMMANDS_HH