Index

C++ Code Documentation

gtk::widget0::Entry

Derived from: widget::ui::String , gtk::widget0::Editable

Children: gtk::widget0::EntryCb

File: WIDGET/gtk/widget0/Entry.H

public:
  • Entry() : Editable( gtk_entry_new() );
  • Entry( uint max ) : Editable( gtk_entry_new_with_max_length( max ) );
  • void set( char const *s );
  • void set( base::String const &s );
  • void editable( bool x );
  • char const *get() const;
  • void max_length( uint max );
  • void set_text( char const *text );
  • void append_text( char const *text );
  • void prepend_text( char const *text );
  • void set_position( int position );
  • char* get_text();
  • void select_region( int start, int end );
  • void set_visibility( bool visible );
  • void set_editable( bool editable );
  • void set_max_length( uint max );
protected:
  • Entry( GtkWidget *x ) : Editable(x);
private:


gtk::widget0::Entry GANG