summaryrefslogtreecommitdiff
path: root/alarm-app/inc/Alert/AlertView.h
blob: b077020dc6be8cc8824a36ff9e85cf5be77aa5ff (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
/*
 * 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 "Common/SoundManager.h"
#include "Ui/View.h"

#include <efl_extension.h>
#include <player.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);
		virtual ~AlertView() override;

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

		player_h createPlayer();
		Evas_Object *createButton(Evas_Object *parent, const char *iconPath, Elm_Color_RGBA color,
				const char *pressSignal, const char *unpressSignal);
		Evas_Object *createButtonAccessObject(Evas_Object *button,
				const char *name, const char *description);

		Evas_Object *createDismissButton(Evas_Object *parent);
		Evas_Object *createSnoozeButton(Evas_Object *parent);
		Eina_Bool onRotaryEvent(Evas_Object *obj, Eext_Rotary_Event_Info *eventInfo);

		bool onClose();
		void onDismissClicked(Evas_Object *button, void *eventInfo);
		void onSnoozeClicked(Evas_Object *button, void *eventInfo);
		void onFocusChanged(sound_stream_focus_state_e state);
		static void onButtonPressed(const char *signal, Evas_Object *button, void *eventInfo);
		static Eina_Bool onButtonActivated(Evas_Object *button, Evas_Object *obj,
				Elm_Access_Action_Info *accessInfo);
		static Eina_Bool onFeedbackTimer(void *data);

		Evas_Object *m_DismissButton;
		Evas_Object *m_SnoozeButton;
		Ecore_Timer *m_Timer;
		Ecore_Timer *m_FeedbackTimer;
		Common::SoundManager m_SoundManager;
		player_h m_Player;
		Common::Model::Alarm m_Alarm;
	};
}

#endif /* ALERT_ALERT_VIEW_H */