Skip to content

setWindowGeometry

Thomas Marrinan edited this page Jan 13, 2017 · 1 revision

Method

setWindowGeometry — sets position and size of an existing window

Specification

void setWindowGeometry(int winId,
                       int x,
                       int y,
                       unsigned int width,
                       unsigned int height);

Parameters

winId

  • here

x

  • here

y

  • here

width

  • here

height

  • here

Example

glow *gl = new glow();
...
gl->setWindowGeometry(win, 100, 100, 800, 600);
Clone this wiki locally