aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-19 23:37:31 (GMT)
committerfluxgen <fluxgen>2003-08-19 23:37:31 (GMT)
commit5749014fa76f6019d0507776bcadec12bae54635 (patch)
tree5c846471ba97eec7822cd08dfc11ab7c840dddc9 /src/CurrentWindowCmd.hh
parent6d1ac53b5f99c098b149e472143d46df68378347 (diff)
downloadfluxbox-5749014fa76f6019d0507776bcadec12bae54635.zip
fluxbox-5749014fa76f6019d0507776bcadec12bae54635.tar.bz2
added resizehorizontal and resizevertical, patch from Mathias Gumz
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh
index 3e56625..7927add 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.2 2003/07/28 15:06:33 rathnor Exp $ 23// $Id: CurrentWindowCmd.hh,v 1.3 2003/08/19 23:37:31 fluxgen Exp $
24 24
25#ifndef CURRENTWINDOWCMD_HH 25#ifndef CURRENTWINDOWCMD_HH
26#define CURRENTWINDOWCMD_HH 26#define CURRENTWINDOWCMD_HH
@@ -110,4 +110,19 @@ protected:
110 void real_execute(); 110 void real_execute();
111}; 111};
112 112
113// resize vertical
114class ResizeVerticalCmd: public MoveHelper {
115public:
116 explicit ResizeVerticalCmd(int step_size);
117protected:
118 void real_execute();
119};
120
121// resize horizontal
122class ResizeHorizontalCmd: public MoveHelper{
123public:
124 explicit ResizeHorizontalCmd(int step_size);
125protected:
126 void real_execute();
127};
113#endif // CURRENTWINDOWCMD_HH 128#endif // CURRENTWINDOWCMD_HH