00001 00002 #ifndef __GWND_H 00003 #define __GWND_H 00004 00005 class LgiClass GWnd : public BWindow 00006 { 00007 GView *Notify; 00008 00009 public: 00010 GWnd(GView *notify); 00011 GWnd(GView *notify, BRect frame, char *title, window_type type, uint32 flags, uint32 workspaces = B_CURRENT_WORKSPACE); 00012 bool QuitRequested(); 00013 void MessageReceived(BMessage *Msg); 00014 void FrameMoved(BPoint origin); 00015 void FrameResized(float width, float height); 00016 }; 00017 00018 #endif