resize command
This commit is contained in:
parent
d75ac0afcc
commit
39abccae4a
3 changed files with 27 additions and 23 deletions
|
@ -20,7 +20,7 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// $Id: CurrentWindowCmd.cc,v 1.4 2003/08/19 23:37:31 fluxgen Exp $
|
||||
// $Id: CurrentWindowCmd.cc,v 1.5 2003/09/06 15:43:27 fluxgen Exp $
|
||||
|
||||
#include "CurrentWindowCmd.hh"
|
||||
|
||||
|
@ -85,13 +85,11 @@ void MoveUpCmd::real_execute() {
|
|||
fbwindow().move(fbwindow().x(), fbwindow().y() - stepSize());
|
||||
}
|
||||
|
||||
ResizeHorizontalCmd::ResizeHorizontalCmd(int step_size):MoveHelper(step_size) { }
|
||||
void ResizeHorizontalCmd::real_execute() {
|
||||
fbwindow().resize(fbwindow().width() + stepSize() * fbwindow().winClient().width_inc, fbwindow().height());
|
||||
}
|
||||
ResizeCmd::ResizeCmd(const int step_size_x, const int step_size_y) :
|
||||
m_step_size_x(step_size_x), m_step_size_y(step_size_y) { }
|
||||
|
||||
ResizeVerticalCmd::ResizeVerticalCmd(int step_size):MoveHelper(step_size) { }
|
||||
void ResizeVerticalCmd::real_execute() {
|
||||
fbwindow().resize(fbwindow().width(), fbwindow().height() + stepSize() * fbwindow().winClient().height_inc);
|
||||
void ResizeCmd::real_execute() {
|
||||
fbwindow().resize(
|
||||
fbwindow().width() + m_step_size_x * fbwindow().winClient().width_inc,
|
||||
fbwindow().height() + m_step_size_y * fbwindow().winClient().height_inc );
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// $Id: CurrentWindowCmd.hh,v 1.3 2003/08/19 23:37:31 fluxgen Exp $
|
||||
// $Id: CurrentWindowCmd.hh,v 1.4 2003/09/06 15:43:27 fluxgen Exp $
|
||||
|
||||
#ifndef CURRENTWINDOWCMD_HH
|
||||
#define CURRENTWINDOWCMD_HH
|
||||
|
@ -110,19 +110,16 @@ protected:
|
|||
void real_execute();
|
||||
};
|
||||
|
||||
// resize vertical
|
||||
class ResizeVerticalCmd: public MoveHelper {
|
||||
public:
|
||||
explicit ResizeVerticalCmd(int step_size);
|
||||
protected:
|
||||
void real_execute();
|
||||
};
|
||||
|
||||
// resize horizontal
|
||||
class ResizeHorizontalCmd: public MoveHelper{
|
||||
class ResizeCmd: public WindowHelperCmd{
|
||||
public:
|
||||
explicit ResizeHorizontalCmd(int step_size);
|
||||
explicit ResizeCmd(int step_size_x, int step_size_y);
|
||||
protected:
|
||||
void real_execute();
|
||||
|
||||
private:
|
||||
|
||||
const int m_step_size_x;
|
||||
const int m_step_size_y;
|
||||
};
|
||||
#endif // CURRENTWINDOWCMD_HH
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// $Id: FbCommandFactory.cc,v 1.14 2003/08/30 11:59:29 fluxgen Exp $
|
||||
// $Id: FbCommandFactory.cc,v 1.15 2003/09/06 15:43:27 fluxgen Exp $
|
||||
|
||||
#include "FbCommandFactory.hh"
|
||||
|
||||
|
@ -32,6 +32,8 @@
|
|||
#include "SimpleCommand.hh"
|
||||
#include "Screen.hh"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
// autoregister this module to command parser
|
||||
FbCommandFactory FbCommandFactory::s_autoreg;
|
||||
|
||||
|
@ -72,6 +74,7 @@ FbCommandFactory::FbCommandFactory() {
|
|||
"quit",
|
||||
"raise",
|
||||
"reconfigure",
|
||||
"resize",
|
||||
"resizehorizontal",
|
||||
"resizevertical",
|
||||
"restart",
|
||||
|
@ -129,10 +132,16 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command,
|
|||
return new CurrentWindowCmd(&FluxboxWindow::maximizeVertical);
|
||||
else if (command == "maximizehorizontal")
|
||||
return new CurrentWindowCmd(&FluxboxWindow::maximizeHorizontal);
|
||||
else if (command == "resize") {
|
||||
std::istringstream is(arguments);
|
||||
int dx = 0, dy = 0;
|
||||
is >> dx >> dy;
|
||||
return new ResizeCmd(dx, dy);
|
||||
}
|
||||
else if (command == "resizehorizontal")
|
||||
return new ResizeHorizontalCmd(atoi(arguments.c_str()));
|
||||
return new ResizeCmd(atoi(arguments.c_str()),0);
|
||||
else if (command == "resizevertical")
|
||||
return new ResizeVerticalCmd(atoi(arguments.c_str()));
|
||||
return new ResizeCmd(0,atoi(arguments.c_str()));
|
||||
else if (command == "moveright")
|
||||
return new MoveRightCmd(atoi(arguments.c_str()));
|
||||
else if (command == "moveleft")
|
||||
|
|
Loading…
Reference in a new issue