aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-08-20 10:22:51 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-08-20 10:22:51 (GMT)
commit74df0fcda9d9a60e32d4bcc240564854e49731fe (patch)
tree60d279fd180d78e637325b57f5eede83b98abe40 /src/CurrentWindowCmd.cc
parent2df0e67ca506448996a83b47a3eb77360712f4cc (diff)
downloadfluxbox-74df0fcda9d9a60e32d4bcc240564854e49731fe.zip
fluxbox-74df0fcda9d9a60e32d4bcc240564854e49731fe.tar.bz2
add SetDecor key command
Diffstat (limited to 'src/CurrentWindowCmd.cc')
-rw-r--r--src/CurrentWindowCmd.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.cc b/src/CurrentWindowCmd.cc
index bfccbdc..6918db9 100644
--- a/src/CurrentWindowCmd.cc
+++ b/src/CurrentWindowCmd.cc
@@ -509,6 +509,15 @@ void SetTitleCmd::real_execute() {
509 fbwindow().winClient().setTitle(title); 509 fbwindow().winClient().setTitle(title);
510} 510}
511 511
512REGISTER_COMMAND_WITH_ARGS(setdecor, SetDecorCmd, void);
513
514SetDecorCmd::SetDecorCmd(const std::string &args):
515 m_mask(FbWinFrame::getDecoMaskFromString(args)) { }
516
517void SetDecorCmd::real_execute() {
518 fbwindow().setDecorationMask(m_mask);
519}
520
512FbTk::Command<void> *SetAlphaCmd::parse(const string &command, const string &args, 521FbTk::Command<void> *SetAlphaCmd::parse(const string &command, const string &args,
513 bool trusted) { 522 bool trusted) {
514 typedef std::vector<string> StringTokens; 523 typedef std::vector<string> StringTokens;