summaryrefslogtreecommitdiffstats
path: root/src/app/extern.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/extern.h')
-rw-r--r--src/app/extern.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/app/extern.h b/src/app/extern.h
new file mode 100644
index 0000000..20e49fd
--- /dev/null
+++ b/src/app/extern.h
@@ -0,0 +1,28 @@
+// (C) 2005 Max Howell (max.howell@methylblue.com)
+// See COPYING file for licensing information
+
+#ifndef CODEINE_EXTERN_H
+#define CODEINE_EXTERN_H
+
+extern "C"
+{
+ typedef struct xine_s xine_t;
+}
+
+class QPopupMenu;
+class QWidget;
+
+namespace Codeine
+{
+ class VideoWindow;
+ class XineEngine;
+
+ VideoWindow* const engine(); //defined in xineEngine.h
+ VideoWindow* const videoWindow(); //defined in xineEngine.h
+
+ void showVideoSettingsDialog( QWidget* );
+ void showXineConfigurationDialog( QWidget*, xine_t* );
+ void insertAspectRatioMenuItems( QPopupMenu* );
+}
+
+#endif