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 130 131 132
|
/*
* Copyright 2017–2022 elementary, Inc. (https://elementary.io)
* SPDX-License-Identifier: GPL-2.0-or-later
*/
/**
* SimpleSettingsPage is a widget divided into three sections: a predefined header,
* a content area, and an action area.
*/
public abstract class Granite.SimpleSettingsPage : Granite.SettingsPage {
private Gtk.Label description_label;
private string _description;
/**
* A {@link Gtk.Box} used as the action area for #this
*/
public Gtk.Box action_area { get; construct; }
/**
* A {@link Gtk.Grid} used as the content area for #this
*/
public Gtk.Grid content_area { get; construct; }
/**
* A {@link Gtk.Switch} that appears in the header area when #this.activatable is #true. #status_switch will be #null when #this.activatable is #false
*/
public Gtk.Switch? status_switch { get; construct; }
/**
* Creates a {@link Gtk.Switch} #status_switch in the header of #this
*/
public bool activatable { get; construct; }
/**
* Creates a {@link Gtk.Label} with a page description in the header of #this
*/
public string description {
get {
return _description;
}
construct set {
if (description_label != null) {
description_label.label = value;
}
_description = value;
}
}
/**
* Creates a new SimpleSettingsPage
* Deprecated: Subclass this instead.
*/
protected SimpleSettingsPage () {
}
class construct {
set_css_name ("simplesettingspage");
}
construct {
var header_icon = new Gtk.Image.from_icon_name (icon_name) {
icon_size = Gtk.IconSize.LARGE,
valign = Gtk.Align.START
};
var title_label = new Gtk.Label (title) {
hexpand = true,
selectable = true,
wrap = true,
xalign = 0
};
title_label.add_css_class (Granite.STYLE_CLASS_H2_LABEL);
var header_area = new Gtk.Grid ();
header_area.add_css_class ("header-area");
header_area.attach (title_label, 1, 0);
if (description != null) {
description_label = new Gtk.Label (description) {
selectable = true,
use_markup = true,
wrap = true,
xalign = 0
};
header_area.attach (header_icon, 0, 0, 1, 2);
header_area.attach (description_label, 1, 1, 2);
} else {
header_area.attach (header_icon, 0, 0);
}
if (activatable) {
status_switch = new Gtk.Switch () {
valign = Gtk.Align.START
};
header_area.attach (status_switch, 2, 0);
}
content_area = new Gtk.Grid () {
column_spacing = 12,
row_spacing = 12,
vexpand = true
};
content_area.add_css_class ("content-area");
action_area = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0) {
halign = Gtk.Align.END
};
action_area.add_css_class ("buttonbox");
var grid = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
grid.append (header_area);
grid.append (content_area);
grid.append (action_area);
child = grid;
notify["icon-name"].connect (() => {
if (header_icon != null) {
header_icon.icon_name = icon_name;
}
});
notify["title"].connect (() => {
if (title_label != null) {
title_label.label = title;
}
});
}
}
|