diff options
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Window.hh b/src/Window.hh index 943ad35..06a901c 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.hh,v 1.35 2002/10/22 14:41:13 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.36 2002/11/15 12:14:39 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -47,6 +47,7 @@ | |||
47 | 47 | ||
48 | class Tab; | 48 | class Tab; |
49 | 49 | ||
50 | |||
50 | /** | 51 | /** |
51 | Creates the window frame and handles any window event for it | 52 | Creates the window frame and handles any window event for it |
52 | TODO: this is to huge! | 53 | TODO: this is to huge! |
@@ -232,19 +233,18 @@ private: | |||
232 | // state and hint signals | 233 | // state and hint signals |
233 | WinSubject m_hintsig, m_statesig, m_workspacesig; | 234 | WinSubject m_hintsig, m_statesig, m_workspacesig; |
234 | 235 | ||
235 | BImageControl *image_ctrl; //image control for rendering | 236 | BImageControl *image_ctrl; /// image control for rendering |
236 | 237 | ||
237 | // got from WM_CLASS | 238 | std::string m_instance_name; /// instance name from WM_CLASS |
238 | std::string m_instance_name; | 239 | std::string m_class_name; /// class name from WM_CLASS |
239 | std::string m_class_name; | ||
240 | 240 | ||
241 | //Window state | 241 | //Window state |
242 | bool moving, resizing, shaded, maximized, visible, iconic, transient, | 242 | bool moving, resizing, shaded, maximized, visible, iconic, transient, |
243 | focused, stuck, modal, send_focus_message, managed; | 243 | focused, stuck, modal, send_focus_message, managed; |
244 | 244 | ||
245 | BScreen *screen; | 245 | BScreen *screen; /// screen on which this window exist |
246 | BTimer timer; | 246 | BTimer timer; |
247 | Display *display; | 247 | Display *display; /// display connection (obsolete by BaseDisplay singleton) |
248 | BaseDisplay::BlackboxAttributes blackbox_attrib; | 248 | BaseDisplay::BlackboxAttributes blackbox_attrib; |
249 | 249 | ||
250 | Time lastButtonPressTime; | 250 | Time lastButtonPressTime; |