diff options
author | rathnor <rathnor> | 2003-07-28 15:06:36 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-07-28 15:06:36 (GMT) |
commit | d353b688dec41daddeec9696586a4519f58cce45 (patch) | |
tree | 322a29e0e31cb15a7725047c10144c4ab3d5e130 /src/CurrentWindowCmd.hh | |
parent | f9bb208da8e8926281c91f3e386ec1de48f700a2 (diff) | |
download | fluxbox-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.hh | 7 |
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 | ||
30 | class FluxboxWindow; | 30 | class FluxboxWindow; |
31 | class 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> |
33 | class CurrentWindowCmd: public FbTk::Command { | 35 | class CurrentWindowCmd: public FbTk::Command { |
@@ -47,7 +49,8 @@ public: | |||
47 | 49 | ||
48 | protected: | 50 | protected: |
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 | }; |