mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
16 lines
251 B
C
16 lines
251 B
C
//$ class TopWindow {
|
|
public:
|
|
virtual void State(int reason);
|
|
|
|
private:
|
|
TopWindowFrame *frame;
|
|
|
|
void SyncRect();
|
|
void SyncFrameRect(const Rect& r);
|
|
void DestroyFrame();
|
|
|
|
friend class Ctrl;
|
|
|
|
public:
|
|
void GripResize();
|
|
//$ };
|