vdk 2.4.0
|
This class provides a gtkentry wrapper. More...
#include <entry.h>
This class provides a gtkentry wrapper.
void VDKEntry::AddCompletionItem | ( | char * | completion_item | ) |
Add a completion word to completion list
completion_item |
void VDKEntry::RemoveCompletionItem | ( | char * | completion_item | ) |
Remove a completion word from completion list
completion_item |
void VDKEntry::SetBackground | ( | VDKRgb | color, |
GtkStateType | state | ||
) | [virtual] |
void VDKEntry::SetCompletion | ( | char ** | completion_list | ) |
Enables word completion
completion_list | a NULL terminating string array |
void VDKEntry::SetFont | ( | VDKFont * | f | ) | [virtual] |
Sets object font
Reimplemented from VDKObject.
void VDKEntry::SetForeground | ( | VDKRgb | color, |
GtkStateType | state | ||
) | [virtual] |
VDKReadWriteValueProp<VDKEntry,bool> VDKEntry::Editable |
Enable/disable editing
VDKReadWriteValueProp<VDKEntry,bool> VDKEntry::Hidden |
Enable/disable text visibility
VDKReadWriteValueProp<VDKEntry,char*> VDKEntry::Text |
Read/write entry text.
char* p = "a text"; entry->Text = p; printf("\ntext:%s",(char*) entry->Text); fflush(stdout);