403Webshell
Server IP : 172.67.191.97  /  Your IP : 104.23.197.208
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/gnome-shell/extensions/[email protected]/app/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/gnome-shell/extensions/[email protected]/app/askRenamePopup.js
/* DING: Desktop Icons New Generation for GNOME Shell
 *
 * Copyright (C) 2019 Sergio Costas ([email protected])
 * Based on code original (C) Carlos Soriano
 *
 * 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, version 3 of the License.
 *
 * 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/>.
 */
/* exported AskRenamePopup */
'use strict';
const Atk = imports.gi.Atk;
const Gtk = imports.gi.Gtk;
const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib;
const DBusUtils = imports.dbusUtils;
const DesktopIconsUtil = imports.desktopIconsUtil;
const Gettext = imports.gettext.domain('ding');
const SignalManager = imports.signalManager;

const _ = Gettext.gettext;

var AskRenamePopup = class extends SignalManager.SignalManager {
    constructor(extensionManager, fileItem, allowReturnOnSameName, closeCB) {
        super();
        this._extensionManager = extensionManager
        this._closeCB = closeCB;
        this._allowReturnOnSameName = allowReturnOnSameName;
        this._desktopPath = GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_DESKTOP);
        this._fileItem = fileItem;
        this._popover = new Gtk.Popover({
            relative_to: fileItem._iconContainer,
            modal: true,
        });
        let contentBox = new Gtk.Grid({
            row_spacing: 6,
            column_spacing: 6,
            margin: 10,
        });
        this._popover.add(contentBox);
        let label = new Gtk.Label({
            label: fileItem.isDirectory ? _('Folder name') : _('File name'),
            justify: Gtk.Justification.LEFT,
            halign: Gtk.Align.START,
        });
        contentBox.attach(label, 0, 0, 2, 1);
        contentBox.get_accessible().add_relationship(Atk.RelationType.LABELLED_BY, label.get_accessible());
        this._textArea = new Gtk.Entry();
        this._textArea.text = fileItem.fileName;
        contentBox.attach(this._textArea, 0, 1, 1, 1);
        this._button = new Gtk.Button({label: allowReturnOnSameName ? _('OK') : _('Rename')});
        contentBox.attach(this._button, 1, 1, 1, 1);
        this.connectSignal(this._button, 'clicked', this._do_rename.bind(this));
        this.connectSignal(this._textArea, 'changed', this._validate.bind(this));
        this.connectSignal(this._textArea, 'activate', this._do_rename.bind(this));
        this.connectSignal(this._popover, 'closed', this._cleanAll.bind(this));
        this._extensionManager.showPopup();
        this._textArea.set_can_default(true);
        this._popover.set_default_widget(this._textArea);
        this._button.get_style_context().add_class('suggested-action');
        contentBox.show_all();
        this._popover.popup();
        this._validate();
        this._textArea.grab_focus_without_selecting();
        this._textArea.select_region(0, DesktopIconsUtil.getFileExtensionOffset(fileItem.fileName, {'isDirectory': fileItem.isDirectory}).offset);
    }

    _cleanAll() {
        this.disconnectAllSignals();
        this._extensionManager.hidePopup();
        this._closeCB();
    }

    updateFileItem(fileItem) {
        this._fileItem = fileItem;
        if (fileItem) {
            this._popover.set_relative_to(this._fileItem._iconContainer);
            this._popover.modal = true;
            this._textArea.set_position(this._cursorPosition);
        } else {
            this._cursorPosition = this._textArea.get_position();
            this._popover.modal = false;
            this._popover.set_relative_to(null);
        }
    }

    _validate() {
        let text = this._textArea.text;
        let finalPath = `${this._desktopPath}/${text}`;
        let finalFile = Gio.File.new_for_commandline_arg(finalPath);
        if ((text == '') || (text.indexOf('/') !== -1) ||
           ((text == this._fileItem.fileName) && !this._allowReturnOnSameName) ||
           (finalFile.query_exists(null) && (text !== this._fileItem.fileName))) {
            this._button.sensitive = false;
        } else {
            this._button.sensitive = true;
        }
    }

    _do_rename() {
        if (!this._button.sensitive) {
            return;
        }
        this._popover.popdown();
        if (this._fileItem.fileName == this._textArea.text) {
            return;
        }
        DBusUtils.RemoteFileOperations.RenameURIRemote(
            this._fileItem.file.get_uri(), this._textArea.text
        );
    }

    closeWindow() {
        this._popover.popdown();
    }
};

Youez - 2016 - github.com/yon3zu
LinuXploit