summaryrefslogtreecommitdiff
path: root/lib-apps-common/src/Ui/Toast.cpp
blob: c193c8bcec16e73959bd0fc344bad8a47ab28b22 (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
/*
 * Copyright 2017 Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.1 (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.
 */

#include "Ui/Toast.h"
#include "Ui/Window.h"

using namespace Ui;

void Toast::setText(const char *text)
{
	elm_object_translatable_part_text_set(getEvasObject(), "elm.text", text);
}

void Toast::setIcon(Evas_Object *icon)
{
	elm_object_part_content_set(getEvasObject(), "toast,icon", icon);
	elm_layout_signal_emit(getEvasObject(), "elm,state,tizen,toast,icon,show", "elm");
}

Evas_Object *Toast::onCreate(Evas_Object *parent)
{
	Evas_Object *popup = Popup::onCreate(findParent<Window>(parent)->getEvasObject());
	elm_object_style_set(popup, "toast/circle");
	elm_popup_timeout_set(popup, 2.0);
	evas_object_smart_callback_add(popup, "timeout",
		[](void *data, Evas_Object *popup, void *) {
			elm_popup_dismiss(popup);
		}, this);

	return popup;
}