/* * 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(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; }