mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
16 lines
465 B
C
16 lines
465 B
C
|
/*
|
||
|
* Miscellaneous helper functions for GTK.
|
||
|
*/
|
||
|
|
||
|
#ifndef PUTTY_GTKMISC_H
|
||
|
#define PUTTY_GTKMISC_H
|
||
|
|
||
|
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 */
|