aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-07-28 15:06:36 (GMT)
committerrathnor <rathnor>2003-07-28 15:06:36 (GMT)
commitd353b688dec41daddeec9696586a4519f58cce45 (patch)
tree322a29e0e31cb15a7725047c10144c4ab3d5e130 /src/CurrentWindowCmd.hh
parentf9bb208da8e8926281c91f3e386ec1de48f700a2 (diff)
downloadfluxbox-d353b688dec41daddeec9696586a4519f58cce45.zip
fluxbox-d353b688dec41daddeec9696586a4519f58cce45.tar.bz2
update many things to use WinClient instead of FluxboxWindow
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh
index fd6ac40..3e56625 100644
--- a/src/CurrentWindowCmd.hh
+++ b/src/CurrentWindowCmd.hh
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: CurrentWindowCmd.hh,v 1.1 2003/06/30 14:35:11 fluxgen Exp $ 23// $Id: CurrentWindowCmd.hh,v 1.2 2003/07/28 15:06:33 rathnor Exp $
24 24
25#ifndef CURRENTWINDOWCMD_HH 25#ifndef CURRENTWINDOWCMD_HH
26#define CURRENTWINDOWCMD_HH 26#define CURRENTWINDOWCMD_HH
@@ -28,6 +28,8 @@
28#include "Command.hh" 28#include "Command.hh"
29 29
30class FluxboxWindow; 30class FluxboxWindow;
31class WinClient;
32
31/// command that calls FluxboxWindow::<the function> on execute() 33/// command that calls FluxboxWindow::<the function> on execute()
32/// similar to FbTk::SimpleCommand<T> 34/// similar to FbTk::SimpleCommand<T>
33class CurrentWindowCmd: public FbTk::Command { 35class CurrentWindowCmd: public FbTk::Command {
@@ -47,7 +49,8 @@ public:
47 49
48protected: 50protected:
49 51
50 FluxboxWindow &window(); 52 WinClient &winclient();
53 FluxboxWindow &fbwindow();
51 virtual void real_execute() = 0; 54 virtual void real_execute() = 0;
52 55
53}; 56};