summaryrefslogtreecommitdiffstats
path: root/src/app/extern.h
blob: 410f459b5fb9ea991119cfbdf418ed3d95173f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// (C) 2005 Max Howell ([email protected])
// See COPYING file for licensing information

#ifndef CODEINE_EXTERN_H
#define CODEINE_EXTERN_H

extern "C"
{
   typedef struct xine_s xine_t;
}

class TDESelectAction;
class TQWidget;

namespace Codeine
{
   class VideoWindow;
   class XineEngine;

   VideoWindow* const engine(); //defined in xineEngine.h
   VideoWindow* const videoWindow(); //defined in xineEngine.h

   void showVideoSettingsDialog( TQWidget* );
   void showXineConfigurationDialog( TQWidget*, xine_t* );
   void insertAspectRatioMenuItems( TDESelectAction* );
}

#endif