Added gm_world_text_view_get_metrics

This commit is contained in:
Jesse van den Kieboom 2005-11-15 11:53:57 +00:00
parent 8fe7604cd5
commit aa1fd0861f
1 changed files with 4 additions and 2 deletions

View File

@ -42,8 +42,8 @@ struct _GmWorldTextViewClass {
/* Signals */
void (* url_activate) (GmWorldTextView *view, const gchar *url);
void (* character_size_changed) (GmWorldTextView *view, gint width,
gint height);
void (* character_size_changed) (GmWorldTextView *view, guint width,
guint height);
};
GType gm_world_text_view_get_type(void) G_GNUC_CONST;
@ -53,6 +53,8 @@ gchar *gm_world_text_view_insert(GmWorldTextView *view, const gchar *text);
GmColorTable *gm_world_text_view_color_table(GmWorldTextView *view);
void gm_world_text_view_set_color_table(GmWorldTextView *view,
GmColorTable *color_table);
void gm_world_text_view_get_metrics(GmWorldTextView *view, guint *width,
guint *height);
G_END_DECLS
#endif /* __GM_WORLD_TEXT_VIEW_H__ */