#include <stdio.h>
#include <stdlib.h>
#include <gtk/gtkentry.h>
#include <string>
Go to the source code of this file.
Defines | |
#define | INCLUDED_GTKUTIL_ENTRY_H |
Functions | |
void | entry_set_string (GtkEntry *entry, const std::string &string) |
void | entry_set_int (GtkEntry *entry, int i) |
void | entry_set_float (GtkEntry *entry, float f) |
const char * | entry_get_string (GtkEntry *entry) |
int | entry_get_int (GtkEntry *entry) |
double | entry_get_float (GtkEntry *entry) |
double entry_get_float | ( | GtkEntry * | entry | ) | [inline] |
Definition at line 59 of file entry.h.
References entry_get_string().
Referenced by Vector3Attribute::apply(), DirectionAttribute::apply(), AnglesAttribute::apply(), and AngleAttribute::apply().
int entry_get_int | ( | GtkEntry * | entry | ) | [inline] |
Definition at line 54 of file entry.h.
References entry_get_string().
const char* entry_get_string | ( | GtkEntry * | entry | ) | [inline] |
Definition at line 49 of file entry.h.
Referenced by entry_get_float(), and entry_get_int().
void entry_set_float | ( | GtkEntry * | entry, | |
float | f | |||
) | [inline] |
Definition at line 42 of file entry.h.
References entry_set_string().
void entry_set_int | ( | GtkEntry * | entry, | |
int | i | |||
) | [inline] |
Definition at line 35 of file entry.h.
References entry_set_string().
void entry_set_string | ( | GtkEntry * | entry, | |
const std::string & | string | |||
) | [inline] |
Definition at line 30 of file entry.h.
Referenced by entry_set_float(), and entry_set_int().