blob: c4c32a71161c1e4311aacdc020bf914fbbebeed5 (
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
29
30
31
32
33
34
35
36
|
/* $Id: MainWindow.h,v 1.10 2003/10/10 01:08:42 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://beos.titer.org/handbrake/>.
It may be used under the terms of the GNU General Public License. */
#ifndef HB_MAIN_WINDOW_H
#define HB_MAIN_WINDOW_H
#include <Window.h>
class ScanView;
class RipView;
#include "Common.h"
class MainWindow : public BWindow
{
public:
MainWindow();
virtual bool QuitRequested();
virtual void MessageReceived( BMessage * message );
private:
static void UpdateInterface( MainWindow * _this );
void _UpdateInterface();
HBManager * fManager;
int fUpdateThread;
volatile bool fDie;
ScanView * fScanView;
RipView * fRipView;
};
#endif
|