X11Top.h

Zbigniew Rebacz, 09/07/2013 12:38 AM

Download (606 Bytes)

 
1
//$ class TopWindow {
2
protected:
3
        virtual void    EventProc(XWindow& w, XEvent *event);
4
private:
5
        XSizeHints *size_hints;
6
        XWMHints   *wm_hints;
7
        XClassHint *class_hint;
8
        Size        xminsize, xmaxsize;
9
        bool        topmost;
10
        
11
        Buffer<unsigned long>  PreperIcon(const Image& icon, int& len);
12
        
13
        void                   CenterRect(Ctrl *owner);
14
        void                   DefSyncTitle();
15
        void                   EndIgnoreTakeFocus();
16

    
17
        void                   SyncState();
18

    
19
        Image                  invert;
20
        WString                title2;
21

    
22
        static  Rect           windowFrameMargin;
23
//$ };