-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollageFrame.h
36 lines (25 loc) · 892 Bytes
/
CollageFrame.h
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
///////////////////////////////////////////////////////////////////////////////////////////////
//
// Name: CollageFrame.h
//
// Author: David Borland
//
// Description: Frame for Collage application.
//
///////////////////////////////////////////////////////////////////////////////////////////////
#ifndef COLLAGEFRAME_H
#define COLLAGEFRAME_H
#include <RenciFrame.h>
class CollageFrame : public RenciFrame {
public:
CollageFrame(const wxString& title, const wxSize& size, RenciGraphics* theGraphics,
EnvironmentMode environmentMode = Normal, bool toroidalMode = false);
virtual ~CollageFrame();
void OnKey(wxKeyEvent& e);
void OnMouse(wxMouseEvent& e);
void ChooseMedia(wxCoord x, wxCoord y);
void ChooseBackgroundColor(wxCoord x, wxCoord y);
protected:
DECLARE_EVENT_TABLE()
};
#endif