285 lines
11 KiB
JavaScript
285 lines
11 KiB
JavaScript
/*
|
|
* ArcMenu - A traditional application menu for GNOME 3
|
|
*
|
|
* ArcMenu Lead Developer and Maintainer
|
|
* Andrew Zaech https://gitlab.com/AndrewZaech
|
|
*
|
|
* ArcMenu Founder, Former Maintainer, and Former Graphic Designer
|
|
* LinxGem33 https://gitlab.com/LinxGem33 - (No Longer Active)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
|
|
|
const {Clutter, Gio, GLib, Gtk, Shell, St} = imports.gi;
|
|
const BaseMenuLayout = Me.imports.menulayouts.baseMenuLayout;
|
|
const Constants = Me.imports.constants;
|
|
const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
|
|
const Main = imports.ui.main;
|
|
const MW = Me.imports.menuWidgets;
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
const Utils = Me.imports.utils;
|
|
const _ = Gettext.gettext;
|
|
|
|
var createMenu = class extends BaseMenuLayout.BaseLayout{
|
|
constructor(menuButton) {
|
|
super(menuButton, {
|
|
Search: true,
|
|
DisplayType: Constants.DisplayType.GRID,
|
|
SearchDisplayType: Constants.DisplayType.GRID,
|
|
ColumnSpacing: 4,
|
|
RowSpacing: 4,
|
|
VerticalMainBox: true,
|
|
DefaultMenuWidth: 460,
|
|
DefaultIconGridStyle: 'LargeRectIconGrid',
|
|
DefaultCategoryIconSize: Constants.MEDIUM_ICON_SIZE,
|
|
DefaultApplicationIconSize: Constants.LARGE_ICON_SIZE,
|
|
DefaultQuickLinksIconSize: Constants.EXTRA_SMALL_ICON_SIZE,
|
|
DefaultButtonsIconSize: Constants.EXTRA_SMALL_ICON_SIZE,
|
|
DefaultPinnedIconSize: Constants.MEDIUM_ICON_SIZE,
|
|
});
|
|
}
|
|
|
|
createLayout(){
|
|
super.createLayout();
|
|
|
|
this.topBoxStyle = "margin: 0px 0px 10px 0px; spacing: 0px; background-color: rgba(186, 196,201, 0.1); padding: 11px 5px;"+
|
|
"border-color:rgba(186, 196,201, 0.2); border-bottom-width: 1px;";
|
|
|
|
this.topBox = new St.BoxLayout({
|
|
x_expand: false,
|
|
y_expand: false,
|
|
x_align: Clutter.ActorAlign.FILL,
|
|
y_align: Clutter.ActorAlign.START,
|
|
vertical: false,
|
|
style: this.topBoxStyle
|
|
});
|
|
this.arcMenu.box.style = "padding-bottom: 0px; padding-top: 0px; margin: 0px;";
|
|
|
|
this.subMainBox= new St.BoxLayout({
|
|
x_expand: true,
|
|
y_expand: true,
|
|
x_align: Clutter.ActorAlign.FILL,
|
|
y_align: Clutter.ActorAlign.FILL,
|
|
vertical: true
|
|
});
|
|
this.mainBox.add_child(this.subMainBox);
|
|
|
|
this.searchBox.style = "margin: 5px 15px 5px 15px;";
|
|
this.topBox.add_child(this.searchBox.actor);
|
|
this.subMainBox.add_child(this.topBox);
|
|
|
|
this.applicationsBox = new St.BoxLayout({
|
|
vertical: true,
|
|
x_expand: true,
|
|
y_expand: true,
|
|
x_align: Clutter.ActorAlign.FILL,
|
|
y_align: Clutter.ActorAlign.FILL,
|
|
style: "padding-bottom: 10px;"
|
|
});
|
|
this.applicationsScrollBox = this._createScrollBox({
|
|
clip_to_allocation: true,
|
|
x_expand: true,
|
|
y_expand: true,
|
|
x_align: Clutter.ActorAlign.FILL,
|
|
y_align: Clutter.ActorAlign.START,
|
|
overlay_scrollbars: true,
|
|
style_class: this.disableFadeEffect ? '' : 'vfade',
|
|
});
|
|
this.applicationsScrollBox.add_actor(this.applicationsBox);
|
|
this.subMainBox.add_child(this.applicationsScrollBox);
|
|
|
|
this.actionsContainerBoxStyle = "margin: 0px; spacing: 0px;background-color:rgba(186, 196,201, 0.1) ; padding: 12px 5px;"+
|
|
"border-color:rgba(186, 196,201, 0.2) ; border-top-width: 1px;";
|
|
|
|
this.actionsContainerBox = new St.BoxLayout({
|
|
x_expand: true,
|
|
y_expand: true,
|
|
x_align: Clutter.ActorAlign.FILL,
|
|
y_align: Clutter.ActorAlign.END,
|
|
vertical: false,
|
|
style: this.actionsContainerBoxStyle
|
|
});
|
|
|
|
this.subMainBox.add_child(this.actionsContainerBox);
|
|
|
|
this.actionsBox = new St.BoxLayout({
|
|
x_expand: true,
|
|
y_expand: true,
|
|
x_align: Clutter.ActorAlign.FILL,
|
|
y_align: Clutter.ActorAlign.CENTER,
|
|
vertical: false
|
|
});
|
|
this.actionsBox.style = "margin: 0px 15px; spacing: 10px;";
|
|
this.appsBox = new St.BoxLayout({
|
|
vertical: true
|
|
});
|
|
this.actionsContainerBox.add_child(this.actionsBox);
|
|
|
|
this.user = new MW.UserMenuItem(this, Constants.DisplayType.LIST);
|
|
this.user.x_expand = true;
|
|
this.user.x_align = Clutter.ActorAlign.FILL;
|
|
this.actionsBox.add_child(this.user.actor);
|
|
|
|
|
|
let filesButton = new MW.ShortcutMenuItem(this, _("Files"), "system-file-manager", "org.gnome.Nautilus.desktop", Constants.DisplayType.BUTTON);
|
|
if(filesButton.shouldShow)
|
|
this.actionsBox.add_child(filesButton.actor);
|
|
|
|
let settingsButton = new MW.SettingsButton(this);
|
|
this.actionsBox.add_child(settingsButton.actor);
|
|
|
|
this.leaveButton = new MW.LeaveButton(this);
|
|
this.actionsBox.add_child(this.leaveButton.actor);
|
|
|
|
this.backButton = this._createNavigationButtons(_("All Apps"), MW.BackButton)
|
|
this.allAppsButton = this._createNavigationButtons(_("Pinned"), MW.AllAppsButton)
|
|
|
|
this.updateWidth();
|
|
this.loadCategories();
|
|
this.loadPinnedApps();
|
|
this.setDefaultMenuView();
|
|
}
|
|
|
|
updateWidth(setDefaultMenuView){
|
|
const widthAdjustment = this._settings.get_int("menu-width-adjustment");
|
|
let menuWidth = this.layoutProperties.DefaultMenuWidth + widthAdjustment;
|
|
//Set a 300px minimum limit for the menu width
|
|
menuWidth = Math.max(300, menuWidth);
|
|
this.applicationsScrollBox.style = `width: ${menuWidth}px;`;
|
|
this.layoutProperties.MenuWidth = menuWidth;
|
|
if(setDefaultMenuView)
|
|
this.setDefaultMenuView();
|
|
}
|
|
|
|
loadPinnedApps(){
|
|
this.layoutProperties.IconGridSize = 42;
|
|
this.layoutProperties.DisplayType = Constants.DisplayType.GRID;
|
|
super.loadPinnedApps();
|
|
}
|
|
|
|
setDefaultMenuView(){
|
|
this.setGridLayout(Constants.DisplayType.GRID, 4, 4);
|
|
this.layoutProperties.IconGridSize = 42;
|
|
super.setDefaultMenuView();
|
|
this.activeCategory = _("Pinned");
|
|
this.activeCategoryType = Constants.CategoryType.HOME_SCREEN;
|
|
this.displayPinnedApps();
|
|
}
|
|
|
|
displayAllApps(){
|
|
this.activeCategory = _("All Apps");
|
|
this.activeCategoryType = Constants.CategoryType.ALL_PROGRAMS;
|
|
|
|
this.setGridLayout(Constants.DisplayType.LIST, 1, 3);
|
|
let appList = [];
|
|
this.applicationsMap.forEach((value,key,map) => {
|
|
appList.push(key);
|
|
});
|
|
appList.sort((a, b) => {
|
|
return a.get_name().toLowerCase() > b.get_name().toLowerCase();
|
|
});
|
|
this._clearActorsFromBox();
|
|
this._displayAppList(appList, Constants.CategoryType.ALL_PROGRAMS, this.applicationsGrid);
|
|
this.setGridLayout(Constants.DisplayType.GRID, 4, 4, false);
|
|
}
|
|
|
|
updateStyle(){
|
|
super.updateStyle();
|
|
|
|
let themeNode = this.arcMenu.actor.get_theme_node();
|
|
let borderRadius = themeNode.get_length('-arrow-border-radius');
|
|
let monitorIndex = Main.layoutManager.findIndexForActor(this.menuButton);
|
|
let scaleFactor = Main.layoutManager.monitors[monitorIndex].geometry_scale;
|
|
borderRadius = borderRadius / scaleFactor;
|
|
|
|
const RoundBottomBorder = "border-radius: 0px 0px " + borderRadius + "px " + borderRadius + "px;";
|
|
const RoundTopBorder = "border-radius: " + borderRadius + "px " + borderRadius + "px 0px 0px;";
|
|
this.actionsContainerBox.style = this.actionsContainerBoxStyle + RoundBottomBorder;
|
|
this.topBox.style = this.topBoxStyle + RoundTopBorder;
|
|
this.arcMenu.box.style = "padding-bottom: 0px; padding-top: 0px; margin: 0px;";
|
|
}
|
|
|
|
setGridLayout(displayType, columns, spacing, setStyle = true){
|
|
if(setStyle){
|
|
this.applicationsGrid.x_align = displayType === Constants.DisplayType.LIST ? Clutter.ActorAlign.FILL : Clutter.ActorAlign.CENTER;
|
|
displayType === Constants.DisplayType.LIST ? this.applicationsBox.add_style_class_name('margin-box') : this.applicationsBox.remove_style_class_name('margin-box');
|
|
}
|
|
|
|
this.applicationsGrid.layout_manager.column_spacing = spacing;
|
|
this.applicationsGrid.layout_manager.row_spacing = spacing;
|
|
this.layoutProperties.DisplayType = displayType;
|
|
}
|
|
|
|
loadCategories() {
|
|
this.layoutProperties.DisplayType = Constants.DisplayType.LIST;
|
|
this.layoutProperties.IconGridSize = 26;
|
|
this.categoryDirectories = null;
|
|
this.categoryDirectories = new Map();
|
|
this.hasPinnedApps = true;
|
|
super.loadCategories();
|
|
}
|
|
|
|
displayPinnedApps() {
|
|
this._clearActorsFromBox(this.applicationsBox);
|
|
this.activeCategory = _("Pinned");
|
|
this._displayAppList(this.pinnedAppsArray, Constants.CategoryType.PINNED_APPS, this.applicationsGrid);
|
|
}
|
|
|
|
_displayAppList(apps, category, grid){
|
|
super._displayAppList(apps, category, grid);
|
|
|
|
this._hideNavigationButtons();
|
|
|
|
if(category === Constants.CategoryType.PINNED_APPS){
|
|
this.subMainBox.insert_child_at_index(this.allAppsButton, 1);
|
|
}
|
|
else if(category === Constants.CategoryType.ALL_PROGRAMS){
|
|
this.subMainBox.insert_child_at_index(this.backButton, 1);
|
|
}
|
|
}
|
|
|
|
_hideNavigationButtons(){
|
|
if(this.subMainBox.contains(this.backButton))
|
|
this.subMainBox.remove_child(this.backButton);
|
|
if(this.subMainBox.contains(this.allAppsButton))
|
|
this.subMainBox.remove_child(this.allAppsButton);
|
|
}
|
|
|
|
_createNavigationButtons(buttonTitle, ButtonClass){
|
|
let navButton = this.createLabelRow(buttonTitle);
|
|
navButton.remove_child(navButton._ornamentLabel);
|
|
navButton.label.y_align = Clutter.ActorAlign.CENTER;
|
|
navButton.style = 'padding: 0px 15px 10px 15px;'
|
|
navButton.add_child(new ButtonClass(this));
|
|
return navButton;
|
|
}
|
|
|
|
_onSearchBoxChanged(searchBox, searchString){
|
|
this.applicationsBox.remove_style_class_name('margin-box');
|
|
if(!searchBox.isEmpty())
|
|
this._hideNavigationButtons();
|
|
super._onSearchBoxChanged(searchBox, searchString);
|
|
}
|
|
|
|
destroy(){
|
|
this.arcMenu.box.style = null;
|
|
this.arcMenu.actor.style = null;
|
|
this.leaveButton.destroy();
|
|
this.backButton.destroy();
|
|
this.allAppsButton.destroy();
|
|
super.destroy();
|
|
}
|
|
}
|