#ifndef text_field_header #define text_field_header #include "editpane.h" class text_field : public editing_pane { public: text_field(); void resize( int new_width, int new_height ); int take_control(); int process_key( int keystroke ); String value(); void set_value( const char * text ); }; #endif