mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
23 lines
606 B
C
23 lines
606 B
C
//$ class TopWindow {
|
|
protected:
|
|
virtual void EventProc(XWindow& w, XEvent *event);
|
|
private:
|
|
XSizeHints *size_hints;
|
|
XWMHints *wm_hints;
|
|
XClassHint *class_hint;
|
|
Size xminsize, xmaxsize;
|
|
bool topmost;
|
|
|
|
Buffer<unsigned long> PreperIcon(const Image& icon, int& len);
|
|
|
|
void CenterRect(Ctrl *owner);
|
|
void DefSyncTitle();
|
|
void EndIgnoreTakeFocus();
|
|
|
|
void SyncState();
|
|
|
|
Image invert;
|
|
WString title2;
|
|
|
|
static Rect windowFrameMargin;
|
|
//$ };
|