CuiEntry

Name

CuiEntry -- 

Synopsis


#include <history.h>


            CuiEntry;
CuiWidget*  cui_entry_new                   (void);
CuiWidget*  cui_entry_new_for_filename      (CuiWindow *window,
                                             Background *background,
                                             CuiFilename *file,
                                             GtkTextMark *begin,
                                             GtkTextMark *end,
                                             const char *text);
void        cui_entry_set_default_text      (CuiEntry *entry,
                                             const gchar *text);
void        cui_entry_realize               (CuiEntry *entry);

Object Hierarchy


  GObject
   +----CuiWidget
         +----CuiEntry

Description

Details

CuiEntry

typedef struct _CuiEntry CuiEntry;

I'm setting every field to public because I'm working on this part of the program.


cui_entry_new ()

CuiWidget*  cui_entry_new                   (void);

Creates a new CuiEntry widget.

Returns :

a new CuiEntry widget


cui_entry_new_for_filename ()

CuiWidget*  cui_entry_new_for_filename      (CuiWindow *window,
                                             Background *background,
                                             CuiFilename *file,
                                             GtkTextMark *begin,
                                             GtkTextMark *end,
                                             const char *text);

window :

background :

file :

begin :

end :

text :

Returns :


cui_entry_set_default_text ()

void        cui_entry_set_default_text      (CuiEntry *entry,
                                             const gchar *text);

Sets the default text for the entry. The default text will appear when the entry shown on the screen.

entry :

a CuiEntry

text :

the default text for the entry


cui_entry_realize ()

void        cui_entry_realize               (CuiEntry *entry);

entry :

a CuiEntry type widget