summaryrefslogtreecommitdiff
path: root/alarm-app/inc/Alert/AlertView.h
blob: 4e64834d2b78a15b44aa063562ced4902a8d8c28 (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
/*
 * 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.
 */

#ifndef ALERT_ALERT_VIEW_H
#define ALERT_ALERT_VIEW_H

#include "Common/Model/Alarm.h"
#include "Ui/View.h"

#include <efl_extension.h>

namespace Alert
{
	/**
	 * @brief Alarm alert view.
	 */
	class AlertView : public Ui::View
	{
	public:
		/**
		 * @brief Create alert view.
		 * @param[in]   alarm   Alarm to show alert for
		 */
		AlertView(Common::Model::Alarm alarm);

	private:
		virtual Evas_Object *onCreate(Evas_Object *parent) override;
		virtual void onNavigation(bool isCurrent) override;
		virtual void onPageAttached(Ui::NavigatorPage *page) override;
		virtual bool onBackPressed() override;

		Evas_Object *createButton(Evas_Object *parent, const char *iconPath, Elm_Color_RGBA color,
				const char *pressSignal, const char *unpressSignal);
		Evas_Object *createDismissButton(Evas_Object *parent);
		Evas_Object *createSnoozeButton(Evas_Object *parent);
		Eina_Bool onRotaryEvent(Evas_Object *obj, Eext_Rotary_Event_Info *eventInfo);

		void onCancel();
		void onDismissClicked(Evas_Object *button, void *eventInfo);
		void onSnoozeClicked(Evas_Object *button, void *eventInfo);
		static void onButtonPressed(const char *signal, Evas_Object *button, void *eventInfo);

		Evas_Object *m_DismissButton;
		Evas_Object *m_SnoozeButton;
		Common::Model::Alarm m_Alarm;
	};
}

#endif /* ALERT_ALERT_VIEW_H */