2021-02-01 04:20:48 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
/* exported WelcomeDialog */
|
|
|
|
|
|
|
|
const { Clutter, GObject, Shell, St } = imports.gi;
|
|
|
|
|
|
|
|
const Config = imports.misc.config;
|
|
|
|
const Dialog = imports.ui.dialog;
|
2021-02-19 11:11:14 -05:00
|
|
|
const Main = imports.ui.main;
|
2021-02-01 04:20:48 -05:00
|
|
|
const ModalDialog = imports.ui.modalDialog;
|
|
|
|
|
|
|
|
var DialogResponse = {
|
|
|
|
NO_THANKS: 0,
|
|
|
|
TAKE_TOUR: 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
var WelcomeDialog = GObject.registerClass(
|
|
|
|
class WelcomeDialog extends ModalDialog.ModalDialog {
|
|
|
|
_init() {
|
|
|
|
super._init({ styleClass: 'welcome-dialog' });
|
|
|
|
|
|
|
|
const appSystem = Shell.AppSystem.get_default();
|
|
|
|
this._tourAppInfo = appSystem.lookup_app('org.gnome.Tour.desktop');
|
|
|
|
|
|
|
|
this._buildLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
open() {
|
|
|
|
if (!this._tourAppInfo)
|
|
|
|
return;
|
|
|
|
|
|
|
|
super.open();
|
|
|
|
}
|
|
|
|
|
|
|
|
_buildLayout() {
|
|
|
|
const [majorVersion] = Config.PACKAGE_VERSION.split('.');
|
2021-10-05 09:05:18 -04:00
|
|
|
const title = _('Welcome to GNOME %s').format(majorVersion);
|
2021-02-01 04:20:48 -05:00
|
|
|
const description = _('If you want to learn your way around, check out the tour.');
|
|
|
|
const content = new Dialog.MessageDialogContent({ title, description });
|
|
|
|
|
|
|
|
const icon = new St.Widget({ style_class: 'welcome-dialog-image' });
|
|
|
|
content.insert_child_at_index(icon, 0);
|
|
|
|
|
|
|
|
this.contentLayout.add_child(content);
|
|
|
|
|
|
|
|
this.addButton({ label: _('No Thanks'),
|
|
|
|
action: () => {
|
|
|
|
this._sendResponse(DialogResponse.NO_THANKS);
|
|
|
|
},
|
|
|
|
key: Clutter.KEY_Escape });
|
|
|
|
this.addButton({ label: _('Take Tour'),
|
|
|
|
action: () => this._sendResponse(DialogResponse.TAKE_TOUR) });
|
|
|
|
}
|
|
|
|
|
|
|
|
_sendResponse(response) {
|
2021-02-19 11:11:14 -05:00
|
|
|
if (response === DialogResponse.TAKE_TOUR) {
|
2021-02-01 04:20:48 -05:00
|
|
|
this._tourAppInfo.launch(0, -1, Shell.AppLaunchGpu.APP_PREF);
|
2021-02-19 11:11:14 -05:00
|
|
|
Main.overview.hide();
|
|
|
|
}
|
2021-02-01 04:20:48 -05:00
|
|
|
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
});
|