зеркало из https://github.com/github/putty.git
21 строка
618 B
C
21 строка
618 B
C
/*
|
|
* Miscellaneous helper functions for GTK.
|
|
*/
|
|
|
|
#ifndef PUTTY_GTKMISC_H
|
|
#define PUTTY_GTKMISC_H
|
|
|
|
int string_width(const char *text);
|
|
void get_label_text_dimensions(const char *text, int *width, int *height);
|
|
|
|
void align_label_left(GtkLabel *label);
|
|
|
|
GtkWidget *our_dialog_new(void);
|
|
void our_dialog_add_to_content_area(GtkWindow *dlg, GtkWidget *w,
|
|
gboolean expand, gboolean fill,
|
|
guint padding);
|
|
void our_dialog_set_action_area(GtkWindow *dlg, GtkWidget *w);
|
|
GtkBox *our_dialog_make_action_hbox(GtkWindow *dlg);
|
|
|
|
#endif /* PUTTY_GTKMISC_H */
|