~ci-train-bot/unity/unity-ubuntu-yakkety-2192

« back to all changes in this revision

Viewing changes to lockscreen/LockScreenSettings.h

  • Committer: CI bot
  • Author(s): Andrea Azzarone
  • Date: 2014-03-11 18:36:57 UTC
  • mfrom: (3566.5.457 unity)
  • Revision ID: ps-jenkins@lists.canonical.com-20140311183657-b3haqqvvr2ctp9u9
Implement the lockscreen in Unity that looks like unity-greeter. Also allow to fallback to lightdm + greeter (tty switching) in case you need more pam power. Fixes: 878836, 1266464, 1282798

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
* Copyright (C) 2013 Canonical Ltd
 
4
*
 
5
* This program is free software: you can redistribute it and/or modify
 
6
* it under the terms of the GNU General Public License version 3 as
 
7
* published by the Free Software Foundation.
 
8
*
 
9
* This program is distributed in the hope that it will be useful,
 
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
* GNU General Public License for more details.
 
13
*
 
14
* You should have received a copy of the GNU General Public License
 
15
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
*
 
17
* Authored by: Andrea Azzarone <andrea.azzarone@canonical.com>
 
18
*/
 
19
 
 
20
#ifndef UNITY_LOCKSCREEN_SETTINGS_H
 
21
#define UNITY_LOCKSCREEN_SETTINGS_H
 
22
 
 
23
#include <NuxCore/Property.h>
 
24
 
 
25
namespace unity
 
26
{
 
27
namespace lockscreen
 
28
{
 
29
 
 
30
enum class Type : int
 
31
{
 
32
  NONE = 0, // Do nothing
 
33
  LIGHTDM, // Fallback to lightdm
 
34
  UNITY // Use custom Unity lockscreen
 
35
};
 
36
 
 
37
// TODO (andy) use the same options of unity-greeter
 
38
 
 
39
class Settings
 
40
{
 
41
public:
 
42
  Settings();
 
43
  ~Settings();
 
44
 
 
45
  static Settings& Instance();
 
46
 
 
47
  nux::Property<Type> lockscreen_type;
 
48
  nux::Property<std::string> font_name;
 
49
  nux::Property<std::string> logo;
 
50
  nux::Property<std::string> background;
 
51
  nux::Property<nux::Color> background_color;
 
52
  nux::Property<bool> show_hostname;
 
53
  nux::Property<bool> use_user_background;
 
54
  nux::Property<bool> draw_grid;
 
55
 
 
56
  static const int GRID_SIZE = 40;
 
57
 
 
58
private:
 
59
  struct Impl;
 
60
  std::unique_ptr<Impl> impl_;
 
61
};
 
62
 
 
63
}
 
64
}
 
65
 
 
66
#endif