summaryrefslogtreecommitdiff
path: root/app-assist-efl/src/WView.cpp
blob: d5cb04713e8155e9cbf76a32bbc03f1ff4225f3b (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/*
 * Copyright (c) 2009-2015 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
 *
 * 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.
 *
 */

#include "WView.h"
#include "WControl.h"
#include "WDebugInternal.h"
#include "WDefineInternal.h"
#include <app.h>
#include <Elementary.h>
#include <memory.h>
#include <string>


#define __CLASS_NAME	"WView"


class __WViewImpl
{
public:
	__WViewImpl();
	~__WViewImpl();
public:
	//
	char* __title;
	WWindow* __window;

	WNaviframe* __naviframe;
	Elm_Object_Item* __naviItem;

	std::function<void (Elm_Object_Item*)> __pushedHandler;

};
__WViewImpl::__WViewImpl()
{
	__title = NULL;
	__window = NULL;
	__naviframe = NULL;
	__naviItem = NULL;
	__pushedHandler = NULL;
}

__WViewImpl::~__WViewImpl()
{
	free(__title);
}

WView::WView()
{
	WHIT();
	__pv = new __WViewImpl();
}

WView::WView( const char* name ) : __pv( new __WViewImpl() )
{
	WHIT();
	setName( name);
}

WView::~WView()
{
	delete __pv;
}

const char* WView::getClassName()
{
	return __CLASS_NAME;
}

bool WView::create(Evas_Object* parent, void* param)
{
	if (WControl::create(parent, param)) {
		evas_object_data_set(getEvasObj(), WKEY_VIEW_INSTANCE, this );
		return true;
	}

	return false;
}

void WView::destroy()
{
	if (__pv->__naviItem)
	{
		elm_object_item_del(__pv->__naviItem);
		return;
	}
	WControl::destroy();
}

void WView::setTitle( const char* title )
{
	free( __pv->__title);
	__pv->__title = title ? strdup(title) : NULL;
}
const char* WView::getTitle()
{
	return __pv->__title;
}

void WView::setOnPushed( const std::function<void (Elm_Object_Item*)>& handlerFunc )
{
	__pv->__pushedHandler = handlerFunc;
}

bool WView::popOut()
{
	if( getEvasObj() == NULL)
	{
		WWARNING("Not created view! No Evas Object!");
		return false;
	}
	if( getNaviframe() == NULL)
	{
		WWARNING("Not pushed to naviframe!");
		return false;
	}
// "elm_object_item_widget_get" does not return right evas object!!! 2014.7.4
//	if( getEvasObj() != elm_object_item_widget_get( elm_naviframe_top_item_get(getNaviframe()->getEvasObj()) ))
//	{
//		WASSERT_EX(0,"This view is not on Top of Naviframe!");
//		return false;
//	}
	if( __pv->__naviItem != elm_naviframe_top_item_get(getNaviframe()->getEvasObj()) )
	{
		WASSERT_EX(0,"This view is not on Top of Naviframe!");
		return false;
	}

	destroyPopup(); // Before popping out view, pop-up is destroyed, if it has.Because pop-up is disappeared too late.

	elm_naviframe_item_pop(getNaviframe()->getEvasObj());
	return true;
}


WWindow* WView::getWindow()
{
	return __pv->__window;
}

bool WView::onPop()
{
	return true;
}

//void WView::onBecomeTop()
//{
//}
//
//void WView::onExpose()
//{
//}

WNaviframe* WView::getNaviframe()
{
	if( __pv->__naviframe == NULL)
	{
		WWARNING("naviframe does not exist!");
	}

	return __pv->__naviframe;
}

Elm_Object_Item* WView::getNaviItem()
{
	if( __pv->__naviItem == NULL)
	{
		WWARNING("naviItem does not exist!");
	}

	return __pv->__naviItem;
}

void WView::onPushed(Elm_Object_Item* naviItem)
{

}

Elm_Object_Item* WView::onPushToNaviframe( Evas_Object* naviFrame)
{
	return NULL;
}


Evas_Object* WView::onCreate( Evas_Object* parent, void* viewParam )
{
	Evas_Object* layout = elm_layout_add(parent);
	evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);

	#if defined RESDIR
		const char* path = RESDIR;
	#else
		char* path = app_get_resource_path();
	#endif
	
	WINFO("app_get_resource_path: [%s]", path);
	if( path == NULL )
	{
		WERROR("Failed to get resource path=NULL");
		return layout;
	}
	std::string edjPath(path);
	
	#if !defined(RESDIR)
		free(path);
	#endif
	
	edjPath += "/edje/app-assist-efl.edj";

	if( elm_layout_file_set(layout, edjPath.c_str(), "default-view") == EINA_TRUE)
	{
		Evas_Object* rect = evas_object_rectangle_add(evas_object_evas_get(layout));
		evas_object_color_set(rect, rand() % 256, rand() % 256, rand() % 256, 255);
		evas_object_size_hint_weight_set(rect, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
		evas_object_size_hint_align_set(rect, EVAS_HINT_FILL, EVAS_HINT_FILL);

		elm_object_part_content_set(layout, "rect", rect);
		if( getName() != NULL )
			elm_object_part_text_set(layout, "name", getName());

	}
	else
	{
		WERROR("Fail to set layout. Check EDJ file(%s)", edjPath.c_str());
	}

	evas_object_show(layout);

	return layout;
}

void WView::onSetAsPageContent(Elm_Object_Item* parentNaviItem)
{

}

bool WView::enableMoreButton( Elm_Object_Item* naviItem, Evas_Smart_Cb clickedCb, void* userData )
{
	if( getNaviframe() == NULL )
	{
		WERROR("naviframe is not set");
		return false;
	}
	Evas_Object *btn = elm_button_add( getNaviframe()->getEvasObj() );
	if (!btn) return false;
	elm_object_style_set(btn, "naviframe/more/default");
	evas_object_show(btn);
	evas_object_smart_callback_add(btn, "clicked", clickedCb, userData);
	elm_object_item_part_content_set(naviItem, "toolbar_more_btn", btn);
	return true;
}

bool WView::__callPushedHandlerFunc(Elm_Object_Item* naviItem)
{
	if( __pv->__pushedHandler )
	{
		__pv->__pushedHandler(naviItem);
		return true;
	}
	return false;
}

WView* WView_getInstanceFromEvasObj(Evas_Object* obj)
{
	return (WView*)evas_object_data_get(obj, WKEY_VIEW_INSTANCE);
}

void WView_setContainerProperties( WView* view, WWindow* win, WNaviframe* naviframe )
{
	view->__pv->__window = win;
	view->__pv->__naviframe = naviframe;
}

void WView_setContainerNaviItemProperty( WView* view, Elm_Object_Item* item )
{
	view->__pv->__naviItem = item;
}