blob: 2a6581b8441c102d4e0492efb3b7bbc23db03f82 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*-
*
* Copyright (C) 2011 Canonical 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: Robert Ancell <robert.ancell@canonical.com>
*/
public const int grid_size = 40;
public class ArcticaGreeter
{
public static ArcticaGreeter singleton;
public signal void show_message (string text, LightDM.MessageType type);
public signal void show_prompt (string text, LightDM.PromptType type);
public signal void authentication_complete ();
public bool test_mode = false;
public bool session_started = false;
public string last_respond_response;
public bool orca_needs_kick;
public bool is_authenticated ()
{
return false;
}
public void authenticate (string? userid = null)
{
}
public void authenticate_as_guest ()
{
}
public void authenticate_remote (string? session, string? userid)
{
}
public void cancel_authentication ()
{
}
public void respond (string response)
{
last_respond_response = response;
}
public string authentication_user ()
{
return "";
}
public string default_session_hint ()
{
return "";
}
public string select_user_hint ()
{
return "";
}
public bool _show_manual_login_hint = true;
public bool show_manual_login_hint ()
{
return _show_manual_login_hint;
}
public bool _show_remote_login_hint = true;
public bool show_remote_login_hint ()
{
return _show_remote_login_hint;
}
public bool _hide_users_hint = false;
public bool hide_users_hint ()
{
return _hide_users_hint;
}
public bool _has_guest_account_hint = true;
public bool has_guest_account_hint ()
{
return _has_guest_account_hint;
}
public bool start_session (string? session, Background bg)
{
session_started = true;
return true;
}
public void push_list (GreeterList widget)
{
}
public void pop_list ()
{
}
public string? get_state (string key)
{
return null;
}
public void set_state (string key, string value)
{
}
public static void add_style_class (Gtk.Widget widget)
{
/* Add style context class lightdm-user-list */
var ctx = widget.get_style_context ();
ctx.add_class ("lightdm");
}
}
|