3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://floralicense.org/license/
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
19 /*@file: IntConfirmationPopup.h
20 *@brief: This header file contains the declarations of the ConfirmationPopup
24 #ifndef CONFIRMATIONPOPUP_H_
25 #define CONFIRMATIONPOPUP_H_
30 class ConfirmationPopup
31 : public Tizen::Ui::Controls::Popup
34 ConfirmationPopup(void);
36 virtual ~ConfirmationPopup(void);
38 bool Initialize(void);
40 void AddActionListener(Tizen::Ui::IActionEventListener& listener);
42 Tizen::Base::String GetMessage(void);
44 virtual result OnTerminating(void);
46 void RemoveActionListener(Tizen::Ui::IActionEventListener& listener);
48 void setMessage(Tizen::Base::String& str);
52 Tizen::Base::String __message;
53 Tizen::Ui::Controls::Button* __pNoButton;
54 Tizen::Ui::Controls::Label* __pPopupText;
55 Tizen::Ui::Controls::Button* __pYesButton;
58 #endif /* CONFIRMATIONPOPUP_H_ */