/* * 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 . */ 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 PlaceDisplay = Me.imports.placeDisplay; 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: 10, RowSpacing: 10, DefaultMenuWidth: 450, DefaultIconGridStyle: "SmallIconGrid", VerticalMainBox: false, 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"; this.searchBox.style = "margin: 0px 10px 5px 10px;"; this.subMainBox= new St.BoxLayout({ x_expand: true, y_expand: true, y_align: Clutter.ActorAlign.FILL, vertical: true }); if(this._settings.get_enum('searchbar-default-top-location') === Constants.SearchbarLocation.TOP) this.subMainBox.add_child(this.searchBox.actor); this.applicationsBox = new St.BoxLayout({ vertical: true }); this.applicationsScrollBox = this._createScrollBox({ x_expand: true, y_expand: true, x_align: Clutter.ActorAlign.START, 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); if(this._settings.get_enum('searchbar-default-top-location') === Constants.SearchbarLocation.BOTTOM){ this.searchBox.style = "margin: 10px 10px 0px 10px;"; this.subMainBox.add_child(this.searchBox.actor); } this.rightBox = new St.BoxLayout({ y_align: Clutter.ActorAlign.FILL, y_expand: true, vertical: true, style_class: 'right-panel margin-box' }); this.placesShortcuts = false; this.externalDevicesShorctus = false; this.networkDevicesShorctus = false; this.bookmarksShorctus = false; this.softwareShortcuts = false; if(!this._settings.get_boolean('disable-user-avatar')){ this.user = new MW.UserMenuItem(this, Constants.DisplayType.LIST); this.rightBox.add_child(this.user.actor); let separator = new MW.ArcMenuSeparator(Constants.SeparatorStyle.SHORT, Constants.SeparatorAlignment.HORIZONTAL); this.rightBox.add_child(separator); } this.shortcutsBox = new St.BoxLayout({ vertical: true }); this.shortcutsScrollBox = this._createScrollBox({ y_align: Clutter.ActorAlign.START, overlay_scrollbars: true, style_class: 'right-panel ' + (this.disableFadeEffect ? '' : 'small-vfade'), }); this.shortcutsScrollBox.add_actor(this.shortcutsBox); this.rightBox.add_child(this.shortcutsScrollBox); // Add place shortcuts to menu (Home,Documents,Downloads,Music,Pictures,Videos) this._displayPlaces(); //draw bottom right horizontal separator + logic to determine if should show let shouldDraw = false; if(this._settings.get_value('directory-shortcuts-list').deep_unpack().length>0){ this.placesShortcuts=true; } if(this._settings.get_value('application-shortcuts-list').deep_unpack().length>0){ this.softwareShortcuts = true; } //check to see if should draw separator if(this.placesShortcuts && (this._settings.get_boolean('show-external-devices') || this.softwareShortcuts || this._settings.get_boolean('show-bookmarks')) ) shouldDraw=true; if(shouldDraw){ let separator = new MW.ArcMenuSeparator(Constants.SeparatorStyle.SHORT, Constants.SeparatorAlignment.HORIZONTAL); this.shortcutsBox.add_child(separator); } //External Devices and Bookmarks Shortcuts this.externalDevicesBox = new St.BoxLayout({ vertical: true, x_expand: true, y_expand: true }); this.shortcutsBox.add_child(this.externalDevicesBox); this._sections = { }; this.placesManager = new PlaceDisplay.PlacesManager(); for (let i = 0; i < Constants.SECTIONS.length; i++) { let id = Constants.SECTIONS[i]; this._sections[id] = new St.BoxLayout({ vertical: true }); this.placeManagerUpdatedID = this.placesManager.connect(`${id}-updated`, () => { this._redisplayPlaces(id); }); this._createPlaces(id); this.externalDevicesBox.add_child(this._sections[id]); } //Add Application Shortcuts to menu (Software, Settings, Tweaks, Terminal) let SOFTWARE_TRANSLATIONS = [_("Software"), _("Settings"), _("Tweaks"), _("Terminal"), _("Activities Overview"), _("ArcMenu Settings")]; let applicationShortcuts = this._settings.get_value('application-shortcuts-list').deep_unpack(); for(let i = 0; i < applicationShortcuts.length; i++){ let applicationName = applicationShortcuts[i][0]; let shortcutMenuItem = new MW.ShortcutMenuItem(this, _(applicationName), applicationShortcuts[i][1], applicationShortcuts[i][2], Constants.DisplayType.LIST); if(shortcutMenuItem.shouldShow) this.shortcutsBox.add_child(shortcutMenuItem.actor); } //create new section for Power, Lock, Logout, Suspend Buttons this.actionsBox = new St.BoxLayout({ vertical: false, x_expand: true, x_align: Clutter.ActorAlign.CENTER, y_expand: true, y_align: Clutter.ActorAlign.END, style: "spacing: 6px;" }); let powerOptions = this._settings.get_value("power-options").deep_unpack(); for(let i = 0; i < powerOptions.length; i++){ let powerType = powerOptions[i][0]; let shouldShow = powerOptions[i][1]; if(shouldShow){ let powerButton = new MW.PowerButton(this, powerType); this.actionsBox.add_child(powerButton); } } this.rightBox.add_child(this.actionsBox); let horizonalFlip = this._settings.get_boolean("enable-horizontal-flip"); this.mainBox.add_child(horizonalFlip ? this.rightBox : this.subMainBox); let verticalSeparator = new MW.ArcMenuSeparator(Constants.SeparatorStyle.MEDIUM, Constants.SeparatorAlignment.VERTICAL); this.mainBox.add_child(verticalSeparator); this.mainBox.add_child(horizonalFlip ? this.subMainBox: this.rightBox); horizonalFlip ? this.rightBox.style += "margin-right: 0px" : this.rightBox.style += "margin-left: 0px" 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(); } }