blob: 3e9847b4a97a9c5732821b9e37de706e47bf2b01 (
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
|
/* Copyright 2016 Software Freedom Conservancy Inc.
* Copyright 2019 Jens Georg <mail@jensge.org>
*
* This software is licensed under the GNU LGPL (version 2.1 or later).
* See the COPYING file in this distribution.
*/
namespace PublishingUI {
[GtkTemplate (ui = "/org/gnome/Shotwell/ui/login_welcome_pane_widget.ui")]
public class LoginWelcomePane : Spit.Publishing.DialogPane, Gtk.Box {
[GtkChild]
private unowned Gtk.Button login_button;
[GtkChild]
private unowned Gtk.Label not_logged_in_label;
public Gtk.Widget get_widget() {
return this;
}
public Spit.Publishing.DialogPane.GeometryOptions get_preferred_geometry() {
return Spit.Publishing.DialogPane.GeometryOptions.NONE;
}
public void on_pane_installed() {
}
public void on_pane_uninstalled() {
}
public signal void login_requested();
public LoginWelcomePane(string service_welcome_message) {
Object();
login_button.clicked.connect(on_login_clicked);
not_logged_in_label.set_use_markup(true);
not_logged_in_label.set_markup(service_welcome_message);
}
private void on_login_clicked() {
login_requested();
}
}
} // namespace PublishingUI
|