summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/gtk/common.h
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-12 21:51:08 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-12 21:51:08 +0000
commit9349d007f8cf708ad6c3122db747c339c06dd510 (patch)
treef41dbd3e072feeadc9461978252983352650a78e /Gui/mplayer/gtk/common.h
parent563dce2146bc723566319f6cf98ac9f5286f102e (diff)
downloadmpv-9349d007f8cf708ad6c3122db747c339c06dd510.tar.bz2
mpv-9349d007f8cf708ad6c3122db747c339c06dd510.tar.xz
new entry
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8173 b3059339-0415-0410-9bf9-f77b7e298cf2
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