////////////////////////////////////////////////// // Blabber [CustomStatusWindow.h] // Give a custom status message and status. ////////////////////////////////////////////////// #ifndef CUSTOM_STATUS_WINDOW_H #define CUSTOM_STATUS_WINDOW_H #include #ifndef _RADIO_BUTTON_H #include #endif #ifndef _TEXT_CONTROL_H #include #endif #ifndef _WINDOW_H #include #endif class CustomStatusWindow : public BWindow { public: static CustomStatusWindow *Instance(); public: CustomStatusWindow(BRect frame); ~CustomStatusWindow(); void MessageReceived(BMessage *msg); private: static CustomStatusWindow *fInstance; private: BTextControl *fStatus; BRadioButton *fChatRadio; BRadioButton *fAwayRadio; BRadioButton *fExtendedAwayRadio; BRadioButton *fDoNotDisturbRadio; }; #endif