[gnome-shell/gbsneto/custom-icon-positions: 5/19] appDisplay: Make FolderIcon draggable
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/custom-icon-positions: 5/19] appDisplay: Make FolderIcon draggable
- Date: Fri, 10 Jul 2020 14:50:26 +0000 (UTC)
commit 3826f284038ea1afd98aff257f0cdb94d11e6f35
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Tue May 26 18:26:52 2020 -0300
appDisplay: Make FolderIcon draggable
By making it a subclass of AppViewItem, it automagically inherits
the DnD code.
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1284
js/ui/appDisplay.js | 71 ++++++++++++++++++++++++-----------------------------
1 file changed, 32 insertions(+), 39 deletions(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index 63578fc1d5..860dc0a223 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -1066,7 +1066,7 @@ class AppDisplay extends BaseAppView {
}
_onDragMotion(dragEvent) {
- if (!(dragEvent.source instanceof AppIcon))
+ if (!(dragEvent.source instanceof AppViewItem))
return DND.DragMotionResult.CONTINUE;
let appIcon = dragEvent.source;
@@ -1588,21 +1588,20 @@ var FolderIcon = GObject.registerClass({
'apps-changed': {},
'name-changed': {},
},
-}, class FolderIcon extends St.Button {
+}, class FolderIcon extends AppViewItem {
_init(id, path, parentView) {
super._init({
style_class: 'app-well-app app-folder',
button_mask: St.ButtonMask.ONE,
toggle_mode: true,
can_focus: true,
- });
- this.id = id;
- this.name = '';
+ }, true);
+ this._id = id;
+ this._name = '';
this._parentView = parentView;
this._folder = new Gio.Settings({ schema_id: 'org.gnome.desktop.app-folders.folder',
path });
- this._delegate = this;
this.icon = new IconGrid.BaseIcon('', {
createIcon: this._createIcon.bind(this),
@@ -1613,20 +1612,13 @@ var FolderIcon = GObject.registerClass({
this.view = new FolderView(this._folder, id, parentView);
- this._iconIsHovering = false;
-
- this.connect('destroy', this._onDestroy.bind(this));
-
this._folderChangedId = this._folder.connect(
'changed', this._sync.bind(this));
this._sync();
}
_onDestroy() {
- if (this._dragMonitor) {
- DND.removeDragMonitor(this._dragMonitor);
- this._dragMonitor = null;
- }
+ super._onDestroy();
if (this._dialog)
this._dialog.destroy();
@@ -1661,29 +1653,39 @@ var FolderIcon = GObject.registerClass({
}
_setHoveringByDnd(hovering) {
- if (this._iconIsHovering == hovering)
+ if (this._otherIconIsHovering == hovering)
return;
- this._iconIsHovering = hovering;
+ super._setHoveringByDnd(hovering);
- if (hovering) {
- this._dragMonitor = {
- dragMotion: this._onDragMotion.bind(this),
- };
- DND.addDragMonitor(this._dragMonitor);
+ if (hovering)
this.add_style_pseudo_class('drop');
- } else {
- DND.removeDragMonitor(this._dragMonitor);
+ else
this.remove_style_pseudo_class('drop');
- }
}
_onDragMotion(dragEvent) {
- if (!this.contains(dragEvent.targetActor) ||
- !this._canAccept(dragEvent.source))
+ if (!this._canAccept(dragEvent.source))
this._setHoveringByDnd(false);
- return DND.DragMotionResult.CONTINUE;
+ return super._onDragMotion(dragEvent);
+ }
+
+ getDragActor() {
+ const iconParams = {
+ createIcon: this._createIcon.bind(this),
+ showLabel: this.icon.label !== null,
+ setSizeManually: false,
+ };
+
+ const icon = new IconGrid.BaseIcon(this.name, iconParams);
+ icon.style_class = this.style_class;
+
+ return icon;
+ }
+
+ getDragActorSource() {
+ return this;
}
_canAccept(source) {
@@ -1700,19 +1702,10 @@ var FolderIcon = GObject.registerClass({
return true;
}
- handleDragOver(source) {
- if (!this._canAccept(source))
- return DND.DragMotionResult.NO_DROP;
-
- this._setHoveringByDnd(true);
-
- return DND.DragMotionResult.MOVE_DROP;
- }
-
acceptDrop(source) {
- this._setHoveringByDnd(false);
+ const accepted = super.acceptDrop(source);
- if (!this._canAccept(source))
+ if (!accepted)
return false;
this.view.addApp(source.app);
@@ -1725,7 +1718,7 @@ var FolderIcon = GObject.registerClass({
if (this.name == name)
return;
- this.name = name;
+ this._name = name;
this.icon.label.text = this.name;
this.emit('name-changed');
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]