summaryrefslogtreecommitdiff
path: root/src/preview/PreviewView.h
blob: 728d5472de7cc61bd9a9e206988fb4c4cc696f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * PreviewView.h
 *
 *  Created on: Jan 21, 2012
 *      Author: Simon
 */

#ifndef PREVIEWVIEW_H_
#define PREVIEWVIEW_H_
#include "interface/Window.h"
#include "preview/PreviewController.h"

class PreviewController;
class PreviewView: public ui::Window {
	PreviewController * c;
public:
	void AttachController(PreviewController * controller) { c = controller;}
	PreviewView();
	virtual void OnDraw();
	virtual ~PreviewView();
};

#endif /* PREVIEWVIEW_H_ */