screenshot-ui: Add IconLabelButton
A button that has an icon and a subtitle label. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1954>
This commit is contained in:
parent
df0cd3457f
commit
7245f95165
@ -1,4 +1,13 @@
|
|||||||
// Screenshot UI
|
// Screenshot UI
|
||||||
|
.icon-label-button-container {
|
||||||
|
spacing: $base_spacing;
|
||||||
|
font-size: $base_font_size - 3pt;
|
||||||
|
|
||||||
|
StIcon {
|
||||||
|
icon-size: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.screenshot-ui-panel {
|
.screenshot-ui-panel {
|
||||||
background-color: $osd_bg_color;
|
background-color: $osd_bg_color;
|
||||||
border-radius: 12px + 21px;
|
border-radius: 12px + 21px;
|
||||||
|
@ -20,6 +20,25 @@ const { DBusSenderChecker } = imports.misc.util;
|
|||||||
|
|
||||||
const ScreenshotIface = loadInterfaceXML('org.gnome.Shell.Screenshot');
|
const ScreenshotIface = loadInterfaceXML('org.gnome.Shell.Screenshot');
|
||||||
|
|
||||||
|
var IconLabelButton = GObject.registerClass(
|
||||||
|
class IconLabelButton extends St.Button {
|
||||||
|
_init(iconName, label, params) {
|
||||||
|
super._init(params);
|
||||||
|
|
||||||
|
this._container = new St.BoxLayout({
|
||||||
|
vertical: true,
|
||||||
|
style_class: 'icon-label-button-container',
|
||||||
|
});
|
||||||
|
this.set_child(this._container);
|
||||||
|
|
||||||
|
this._container.add_child(new St.Icon({ icon_name: iconName }));
|
||||||
|
this._container.add_child(new St.Label({
|
||||||
|
text: label,
|
||||||
|
x_align: Clutter.ActorAlign.CENTER,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
var ScreenshotUI = GObject.registerClass(
|
var ScreenshotUI = GObject.registerClass(
|
||||||
class ScreenshotUI extends St.Widget {
|
class ScreenshotUI extends St.Widget {
|
||||||
_init() {
|
_init() {
|
||||||
|
Loading…
Reference in New Issue
Block a user