X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fscreen.hh;h=c20e676f941a036e1fbd344bcd87841aaefdc141;hb=06a80ce2c7a189e26063d5e4e475ca500778aba5;hp=d4d42a7c826d45c2bfa02a0ef7d7bb2d94c2967a;hpb=cee305244662d352a7ad5ab7ae22f6221c064d3d;p=chaz%2Fopenbox diff --git a/src/screen.hh b/src/screen.hh index d4d42a7c..c20e676f 100644 --- a/src/screen.hh +++ b/src/screen.hh @@ -97,7 +97,7 @@ private: public: //! Constructs a new OBScreen object - OBScreen(int screen); + OBScreen(int screen, const otk::Configuration &config); //! Destroys the OBScreen object virtual ~OBScreen(); @@ -107,6 +107,9 @@ public: inline const otk::Point &size() const { return _size; } //! Returns the area of the screen not reserved by applications' Struts inline const otk::Rect &area() const { return _area; } + //! Returns the style in use on the screen + inline const otk::Style *style() const { return &_style; } + //! Adds a window's strut to the screen's list of reserved spaces void addStrut(otk::Strut *strut); @@ -116,7 +119,17 @@ public: //! Loads a new style on the screen void loadStyle(const otk::Configuration &config); - inline const otk::Style *style() const { return &_style; } + //! Manage a client window + /*! + This gives the window a frame, reparents it, selects events on it, etc. + */ + void manageWindow(Window window); + //! Unmanage a client + /*! + This removes the window's frame, reparents it to root, unselects events on + it, etc. + */ + void unmanageWindow(OBClient *client); }; }