- // Text field functions
- wxString GetValue(void) const ;
- void SetValue(const wxString& value);
-
- // Clipboard operations
- void Copy(void);
- void Cut(void);
- void Paste(void);
- void SetInsertionPoint(const long pos);
- void SetInsertionPointEnd(void);
- long GetInsertionPoint(void) const ;
- long GetLastPosition(void) const ;
- void Replace(const long from, const long to, const wxString& value);
- void Remove(const long from, const long to);
- void SetSelection(const long from, const long to);
- void SetEditable(const bool editable);
-
- private:
+ void SetClientData( int n, void* clientData );
+ void* GetClientData( int n );
+ void SetClientObject( int n, wxClientData* clientData );
+ wxClientData* GetClientObject( int n );
+
+ void SetClientObject( wxClientData *data ) { wxControl::SetClientObject( data ); }
+ wxClientData *GetClientObject() const { return wxControl::GetClientObject(); }
+ void SetClientData( void *data ) { wxControl::SetClientData( data ); }
+ void *GetClientData() const { return wxControl::GetClientData(); }
+
+ void Clear();
+ void Delete( int n );
+
+ int FindString( const wxString &item );
+ int GetSelection() const;
+ wxString GetString( int n ) const;
+ wxString GetStringSelection() const;
+ int GetCount() const { return Number(); }
+ int Number() const;
+ void SetSelection( int n );
+ void SetStringSelection( const wxString &string );
+
+ wxString GetValue() const;
+ void SetValue(const wxString& value);
+
+ void Copy();
+ void Cut();
+ void Paste();
+ void SetInsertionPoint( long pos );
+ void SetInsertionPointEnd();
+ long GetInsertionPoint() const;
+ long GetLastPosition() const;
+ void Replace( long from, long to, const wxString& value );
+ void Remove( long from, long to );
+ void SetSelection( long from, long to );
+ void SetEditable( bool editable );