118 lines
4.3 KiB
JavaScript
118 lines
4.3 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, Gtk, St} = imports.gi;
|
|
const BaseMenuLayout = Me.imports.menulayouts.baseMenuLayout;
|
|
const Constants = Me.imports.constants;
|
|
const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
|
|
const MW = Me.imports.menuWidgets;
|
|
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: 10,
|
|
RowSpacing: 10,
|
|
DefaultMenuWidth: 450,
|
|
DefaultIconGridStyle: "SmallIconGrid",
|
|
VerticalMainBox: true,
|
|
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.searchBox.name = "ArcSearchEntryRound";
|
|
|
|
if(this._settings.get_enum('searchbar-default-top-location') === Constants.SearchbarLocation.TOP){
|
|
this.searchBox.style = "margin: 0px 10px 10px 10px;";
|
|
this.mainBox.add_child(this.searchBox.actor);
|
|
}
|
|
|
|
this.subMainBox = new St.BoxLayout({
|
|
vertical: false,
|
|
x_expand: false,
|
|
y_expand: false,
|
|
y_align: Clutter.ActorAlign.START,
|
|
x_align: Clutter.ActorAlign.START
|
|
});
|
|
this.mainBox.add_child(this.subMainBox);
|
|
|
|
this.applicationsBox = new St.BoxLayout({
|
|
vertical: true
|
|
});
|
|
|
|
this.applicationsScrollBox = this._createScrollBox({
|
|
x_expand: true,
|
|
y_expand: true,
|
|
y_align: Clutter.ActorAlign.START,
|
|
x_align: Clutter.ActorAlign.START,
|
|
overlay_scrollbars: true,
|
|
style_class: this.disableFadeEffect ? '' : 'vfade',
|
|
reactive: true
|
|
});
|
|
this.applicationsScrollBox.add_actor(this.applicationsBox);
|
|
|
|
this.subMainBox.add_child(this.applicationsScrollBox);
|
|
if(this._settings.get_enum('searchbar-default-top-location') === Constants.SearchbarLocation.BOTTOM){
|
|
this.searchBox.style = "margin: 10px 10px 0px 10px;";
|
|
this.mainBox.add_child(this.searchBox.actor);
|
|
}
|
|
|
|
this.updateWidth();
|
|
this.loadCategories();
|
|
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();
|
|
}
|
|
|
|
setDefaultMenuView(){
|
|
super.setDefaultMenuView();
|
|
this.displayAllApps();
|
|
}
|
|
|
|
loadCategories() {
|
|
this.categoryDirectories = null;
|
|
this.categoryDirectories = new Map();
|
|
super.loadCategories();
|
|
}
|
|
}
|