summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/gtk/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/mplayer/gtk/common.h')
-rw-r--r--Gui/mplayer/gtk/common.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Gui/mplayer/gtk/common.h b/Gui/mplayer/gtk/common.h
new file mode 100644
index 0000000000..4162ea6b3b
--- /dev/null
+++ b/Gui/mplayer/gtk/common.h
@@ -0,0 +1,19 @@
+
+#ifndef __COMMON_H
+#define __COMMON_H
+
+#include <gdk/gdkkeysyms.h>
+#include <gtk/gtk.h>
+
+extern GtkWidget * AddFrame( char * title,int type,GtkWidget * parent,int add );
+extern GtkWidget * AddLabel( char * title,GtkWidget * parent );
+extern GtkWidget * AddVBox( GtkWidget * parent );
+extern GtkWidget * AddHBox( GtkWidget * parent,int type );
+extern GtkWidget * AddCheckButton( char * title, GtkWidget * parent );
+extern GtkWidget * AddRadioButton( char * title,GSList ** group,GtkWidget * parent );
+extern GtkWidget * AddButton( char * title,GtkWidget * parent );
+extern GtkWidget * AddHSeparator( GtkWidget * parent );
+extern GtkWidget * AddHButtonBox( GtkWidget * parent );
+extern GtkWidget * AddHScaler( GtkAdjustment * adj,GtkWidget * parent,int digit );
+
+#endif