"changed" void user_function (EText *etext, gpointer user_data); "activate" void user_function (EText *etext, gpointer user_data);
struct ETextSuckFont {
guchar *bitmap;
gint bitmap_width;
gint bitmap_height;
gint ascent;
ETextSuckChar chars[256];
};struct ETextSuckChar {
int left_sb;
int right_sb;
int width;
int ascent;
int descent;
int bitmap_offset; /* in pixels */
};void user_function (EText *etext, gpointer user_data);
| etext : | the object which received the signal. |
| user_data : | user data set when the signal handler was connected. |
void user_function (EText *etext, gpointer user_data);
| etext : | the object which received the signal. |
| user_data : | user data set when the signal handler was connected. |
| <<< E-text | ETextEventProcessor >>> |