summaryrefslogtreecommitdiff
path: root/sample/org.tizen.live-video/include/CWindow.h
blob: e3fb605864c0313c0ac7b5763c3a63c26dd8767c (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * Copyright 2013  Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://floralicense.org/license/
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

class CWindow {
public:
	static CWindow *Find(enum target_type type, const char *id);
	static CWindow *Create(enum target_type type, const char *id, int w, int h);

	static void *s_AllocateCanvas(void *data, int size);
	static void s_ReleaseCanvas(void *data, void *canvas);
	static void s_PostRender(void *data, Evas *e, void *event_info);
	static int s_BufferEventHandler(struct livebox_buffer *buffer, enum buffer_event event, double timestamp, double x, double y, void *data);

	virtual ~CWindow(void);
	int Destroy(void);
	int Resize(int w, int h);

	void SetBuffer(struct livebox_buffer *pBuffer) { m_pBuffer = pBuffer; }
	enum target_type Type(void) { return m_vType; }
	int Width(void) { return m_nWidth; }
	int Height(void) { return m_nHeight; }
	struct livebox_buffer *Buffer(void) { return m_pBuffer; }
	Evas_Object *Object(void) { return m_pObject; }
	const char *Id(void) { return m_sID; }
	Evas *EvasObject(void) { return m_pEvas; }

private:
	CWindow(enum target_type type, int width, int height);

	enum target_type m_vType;
	int m_nWidth;
	int m_nHeight;

	struct livebox_buffer *m_pBuffer;

	Ecore_Evas *m_pEcoreEvas;
	Evas *m_pEvas;
	Evas_Object *m_pObject;

	char *m_sID;

	static Eina_List *s_pList;
};

/* End of a file */