[go: up one dir, main page]

Menu

[e59016]: / gui / gtkutils.h  Maximize  Restore  History

Download this file

16 lines (13 with data), 586 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#ifndef __gtkutils_h__
#define __gtkutils_h__
#include <gtk/gtk.h>
#include <string>
gint gtk_option_menu_get_history(GtkOptionMenu * option_menu);
gint gtk_menu_get_history(GtkMenu * menu);
void change_button_pixmap(GtkWidget *btn, GtkWidget *img);
GtkWidget* create_pixmap (GtkWidget *widget,
const gchar *filename);
void activate_group(GtkWidget *w, gboolean sensitive);
std::string get_file_name(const char *title, gboolean for_open,const char **filters=0);
void gtk_help_display(const char *link_id);
#endif