gnome:extensions:extension.js
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
gnome:extensions:extension.js [2022/07/23 11:58] – 194.32.120.95 | gnome:extensions:extension.js [2022/07/23 12:24] (current) – 194.32.120.105 | ||
---|---|---|---|
Line 113: | Line 113: | ||
* This is passed to the **init()** function when an extension is loaded and can be retrieved by calling **ExtensionUtils.getCurrentExtension()**. | * This is passed to the **init()** function when an extension is loaded and can be retrieved by calling **ExtensionUtils.getCurrentExtension()**. | ||
- | |||
- | <WRAP important> | ||
- | **WARNING: | ||
- | |||
- | * All properties should be considered read-only. | ||
- | |||
- | </ | ||
<code javascript> | <code javascript> | ||
Line 136: | Line 129: | ||
* @property {string[]} sessionModes - a list of supported session modes | * @property {string[]} sessionModes - a list of supported session modes | ||
*/ | */ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | ===== prefs.js ===== | ||
- | |||
- | **prefs.js** is used to build a Gtk widget that will be inserted into a window and be used as the preferences dialog for your extension. | ||
- | |||
- | * If this file is not present, there will simply be no preferences button in GNOME Extensions or on https:// | ||
- | |||
- | <code javascript> | ||
- | const {Adw, GLib, Gtk} = imports.gi; | ||
- | |||
- | // It is common practice to keep GNOME API and JS imports in separate blocks | ||
- | const ExtensionUtils = imports.misc.extensionUtils; | ||
- | const Me = ExtensionUtils.getCurrentExtension(); | ||
- | |||
- | |||
- | /** | ||
- | * Like `extension.js` this is used for any one-time setup like translations. | ||
- | * | ||
- | * @param {ExtensionMeta} meta - An extension meta object, described below. | ||
- | */ | ||
- | function init(meta) { | ||
- | log(`initializing ${meta.metadata.name} Preferences`); | ||
- | } | ||
- | |||
- | |||
- | /** | ||
- | * This function is called when the preferences window is first created to build | ||
- | * and return a GTK widget. | ||
- | * | ||
- | * As of GNOME 42, the preferences window will be a `Adw.PreferencesWindow`. | ||
- | * Intermediate `Adw.PreferencesPage` and `Adw.PreferencesGroup` widgets will be | ||
- | * used to wrap the returned widget if necessary. | ||
- | * | ||
- | * @returns {Gtk.Widget} the preferences widget | ||
- | */ | ||
- | function buildPrefsWidget() { | ||
- | // This could be any GtkWidget subclass, although usually you would choose | ||
- | // something like a GtkGrid, GtkBox or GtkNotebook | ||
- | const prefsWidget = new Gtk.Label({ | ||
- | label: Me.metadata.name, | ||
- | visible: true, | ||
- | }); | ||
- | |||
- | // Add a widget to the group. This could be any GtkWidget subclass, | ||
- | // although usually you would choose preferences rows such as AdwActionRow, | ||
- | // AdwComboRow or AdwRevealerRow. | ||
- | const label = new Gtk.Label({ label: `${Me.metadata.name}` }); | ||
- | group.add(label); | ||
- | |||
- | window.add(page); | ||
- | } | ||
- | |||
- | /** | ||
- | * This function is called when the preferences window is first created to fill | ||
- | * the `Adw.PreferencesWindow`. | ||
- | * | ||
- | * This function will only be called by GNOME 42 and later. If this function is | ||
- | * present, `buildPrefsWidget()` will never be called. | ||
- | * | ||
- | * @param {Adw.PreferencesWindow} window - The preferences window | ||
- | */ | ||
- | function fillPreferencesWindow(window) { | ||
- | const prefsPage = new Adw.PreferencesPage({ | ||
- | name: ' | ||
- | title: ' | ||
- | icon_name: ' | ||
- | }); | ||
- | window.add(prefsPage); | ||
- | | ||
- | const prefsGroup = new Adw.PreferencesGroup({ | ||
- | title: ' | ||
- | description: | ||
- | }); | ||
- | prefsPage.add(prefsGroup); | ||
- | | ||
- | const showIndicatorRow = new Adw.ActionRow({ | ||
- | title: 'Show Indicator', | ||
- | subtitle: ' | ||
- | }); | ||
- | prefsGroup.add(showIndicatorRow); | ||
- | | ||
- | const showIndicatorSwitch = new Gtk.Switch(); | ||
- | showIndicatorRow.add_suffix(showIndicatorSwitch); | ||
- | showIndicatorRow.set_activatable_widget(showIndicatorSwitch); | ||
- | } | ||
- | |||
</ | </ | ||
- | < | + | < |
- | **NOTE: | + | **WARNING: |
- | * Here you will not have access to code running in GNOME Shell, but fatal errors or mistakes will be contained within that process. | + | * All properties should |
- | * In this process you will be using the Gtk toolkit, not Clutter. | + | |
- | + | ||
- | * You can open the preferences dialog for your extension manually with gnome-extensions prefs: <code bash> | + | |
- | gnome-extensions prefs example@gjs.guide | + | |
- | </ | + | |
</ | </ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | ===== stylesheet.css ===== | ||
- | |||
- | **stylesheet.css** is CSS stylesheet which can apply custom styles to your St widgets in extension.js or GNOME Shell as a whole. | ||
- | |||
- | For example, if you had the following widgets: | ||
- | |||
- | <code javascript> | ||
- | // A standard StLabel | ||
- | let label = new St.Label({ | ||
- | text: ' | ||
- | style_class: | ||
- | }); | ||
- | |||
- | // An StLabel subclass with `CssName` set to " | ||
- | var ExampleLabel = GObject.registerClass({ | ||
- | GTypeName: ' | ||
- | CssName: ' | ||
- | }, class ExampleLabel extends St.Label { | ||
- | }); | ||
- | |||
- | let exampleLabel = new ExampleLabel({ | ||
- | text: 'Label Text' | ||
- | }); | ||
- | </ | ||
- | |||
- | You could have this in your stylesheet.css: | ||
- | |||
- | <code css> | ||
- | /* This will change the color of all StLabel elements */ | ||
- | StLabel { | ||
- | color: red; | ||
- | } | ||
- | |||
- | /* This will change the color of all elements with the " | ||
- | .example-style { | ||
- | color: green; | ||
- | } | ||
- | |||
- | /* This will change the color of StLabel elements with the " | ||
- | StLabel.example-style { | ||
- | color: blue; | ||
- | } | ||
- | |||
- | /* This will change the color of your StLabel subclass with the custom CssName */ | ||
- | ExampleLabel { | ||
- | color: yellow; | ||
- | } | ||
- | </ | ||
Line 298: | Line 145: | ||
https:// | https:// | ||
- | https:// | + | https:// |
gnome/extensions/extension.js.1658577489.txt.gz · Last modified: 2022/07/23 11:58 by 194.32.120.95