// TextControlFloater.h // * PURPOSE // Display an editable text field in a simple pop-up window // (which must automatically close when the user hits 'enter' // or the window loses focus). // * TO DO +++++ // escape key -> cancel // // * HISTORY // e.moon 23aug99 Begun #ifndef __TextControlFloater_H__ #define __TextControlFloater_H__ #include #include class BTextControl; #include "cortex_defs.h" __BEGIN_CORTEX_NAMESPACE class TextControlFloater : public BWindow { typedef BWindow _inherited; public: // dtor/ctors virtual ~TextControlFloater(); TextControlFloater( BRect frame, alignment align, const BFont* font, const char* text, const BMessenger& target, BMessage* message, BMessage* cancelMessage=0); public: // BWindow virtual void WindowActivated( bool activated); virtual bool QuitRequested(); public: // BHandler virtual void MessageReceived( BMessage* message); private: BTextControl* m_control; BMessenger m_target; const BMessage* m_message; BMessage* m_cancelMessage; // true if a message has been sent indicating the // user modified the text bool m_sentUpdate; }; __END_CORTEX_NAMESPACE #endif /*__TextControlFloater_H__*/