blob: 0c89d77279928116c8b7cbbf5f75b2cab9da8793 (
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
|
/* 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/progress_pane_widget.ui")]
public class ProgressPane : Spit.Publishing.DialogPane, Gtk.Box {
[GtkChild]
private unowned Gtk.ProgressBar progress_bar;
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 void set_text(string text) {
progress_bar.set_text(text);
}
public void set_progress(double progress) {
progress_bar.set_fraction(progress);
}
public void set_status(string status_text, double progress) {
if (status_text != progress_bar.get_text())
progress_bar.set_text(status_text);
set_progress(progress);
}
}
} // namespace PublishingUI
|