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
77
78
79
80
81
82
|
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
* Copyright (C) 2015 Canonical Ltd
* 2015, National University of Defense Technology(NUDT) & Kylin Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: handsome_feng <jianfengli@ubuntukylin.com>
*/
#ifndef UNITY_LOCKSCREEN_ABSTRACT_USER_PROMPT_H
#define UNITY_LOCKSCREEN_ABSTRACT_USER_PROMPT_H
#include <memory>
#include <deque>
#include <Nux/Nux.h>
#include <Nux/View.h>
#include <Nux/VLayout.h>
#include "UnityCore/SessionManager.h"
#include "UserAuthenticator.h"
#include "unity-shared/IMTextEntry.h"
namespace nux
{
class VLayout;
}
namespace unity
{
class StaticCairoText;
class TextInput;
namespace lockscreen
{
class AbstractUserPromptView : public nux::View
{
public:
AbstractUserPromptView(session::Manager::Ptr const& session_manager,
UserAuthenticator::Ptr const& user_authenticator)
: nux::View(NUX_TRACKER_LOCATION)
, scale(1.0)
, session_manager_(session_manager)
, user_authenticator_(user_authenticator)
{}
nux::Property<double> scale;
virtual nux::View* focus_view() = 0;
virtual void AuthenticationCb(bool authenticated) = 0;
virtual void ResetLayout() = 0;
virtual void UpdateSize() = 0;
protected:
session::Manager::Ptr session_manager_;
UserAuthenticator::Ptr user_authenticator_;
std::shared_ptr<nux::AbstractPaintLayer> bg_layer_;
StaticCairoText* username_;
nux::VLayout* msg_layout_;
nux::VLayout* prompt_layout_;
std::deque<TextInput*> focus_queue_;
nux::Geometry cached_focused_geo_;
};
} // lockscreen
} // unity
#endif // UNITY_LOCKSCREEN_ABSTRACT_USER_PROMPT_H
|