[gnome-shell/modekill: 3/13] dash: Make the favRemoveTarget always visible
- From: Florian MÃllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/modekill: 3/13] dash: Make the favRemoveTarget always visible
- Date: Mon, 20 Aug 2012 07:40:59 +0000 (UTC)
commit 7fa303e8134c36321c2100bc17104a4678bf9095
Author: Joost Verdoorn <jpverdoorn gmail com>
Date: Tue Aug 14 16:27:28 2012 +0200
dash: Make the favRemoveTarget always visible
Weâll be repurposing the favRemoveTarget, which calls for it the be
permanently visibe. ÂThe favRemoveTarget used to be added to the dash when
needed and removed again when it wasnât. This made that it always appeared
at the bottom of the dash. Now that we always show it, we also need to
explicitly define it to be at the bottom of the dash.
https://bugzilla.gnome.org/show_bug.cgi?id=682109
js/ui/dash.js | 54 +++++++++++++++++-------------------------------------
1 files changed, 17 insertions(+), 37 deletions(-)
---
diff --git a/js/ui/dash.js b/js/ui/dash.js
index 320defb..b672cd5 100644
--- a/js/ui/dash.js
+++ b/js/ui/dash.js
@@ -311,12 +311,22 @@ const Dash = new Lang.Class({
this._resetHoverTimeoutId = 0;
this._labelShowing = false;
- this._box = new St.BoxLayout({ name: 'dash',
- vertical: true,
+ this._container = new St.BoxLayout({ name: 'dash',
+ vertical: true,
+ clip_to_allocation: true });
+
+ this._box = new St.BoxLayout({ vertical: true,
clip_to_allocation: true });
this._box._delegate = this;
+ this._container.add(this._box);
+
+ this._favRemoveTarget = new RemoveFavoriteIcon();
+ this._favRemoveTarget.icon.setIconSize(this.iconSize);
+
+ this._container.add(this._favRemoveTarget.actor);
- this.actor = new St.Bin({ y_align: St.Align.START, child: this._box });
+ this.actor = new St.Bin({ child: this._container,
+ y_align: St.Align.START });
this.actor.connect('notify::height', Lang.bind(this,
function() {
if (this._maxHeight != this.actor.height)
@@ -369,14 +379,6 @@ const Dash = new Lang.Class({
_endDrag: function() {
this._clearDragPlaceholder();
- if (this._favRemoveTarget) {
- this._favRemoveTarget.animateOutAndDestroy();
- this._favRemoveTarget.actor.connect('destroy', Lang.bind(this,
- function() {
- this._favRemoveTarget = null;
- }));
- this._adjustIconSize();
- }
DND.removeDragMonitor(this._dragMonitor);
},
@@ -395,28 +397,13 @@ const Dash = new Lang.Class({
let srcIsFavorite = (id in favorites);
- if (srcIsFavorite &&
- app.get_state() != Shell.AppState.RUNNING &&
- dragEvent.source.actor &&
- this.actor.contains (dragEvent.source.actor) &&
- this._favRemoveTarget == null) {
- this._favRemoveTarget = new RemoveFavoriteIcon();
- this._favRemoveTarget.icon.setIconSize(this.iconSize);
- this._box.add(this._favRemoveTarget.actor);
- this._adjustIconSize();
- this._favRemoveTarget.animateIn();
- }
-
- let favRemoveHovered = false;
- if (this._favRemoveTarget)
- favRemoveHovered =
+ let favRemoveHovered =
this._favRemoveTarget.actor.contains(dragEvent.targetActor);
if (!this._box.contains(dragEvent.targetActor) || favRemoveHovered)
this._clearDragPlaceholder();
- if (this._favRemoveTarget)
- this._favRemoveTarget.setHover(favRemoveHovered);
+ this._favRemoveTarget.setHover(favRemoveHovered);
return DND.DragMotionResult.CONTINUE;
},
@@ -510,18 +497,12 @@ const Dash = new Lang.Class({
!actor._delegate.animatingOut;
});
- if (iconChildren.length == 0) {
- this._box.add_style_pseudo_class('empty');
- return;
- }
-
- this._box.remove_style_pseudo_class('empty');
+ iconChildren.push(this._favRemoveTarget.actor);
if (this._maxHeight == -1)
return;
-
- let themeNode = this._box.get_theme_node();
+ let themeNode = this._container.get_theme_node();
let maxAllocation = new Clutter.ActorBox({ x1: 0, y1: 0,
x2: 42 /* whatever */,
y2: this._maxHeight });
@@ -547,7 +528,6 @@ const Dash = new Lang.Class({
[minHeight, natHeight] = iconChildren[0].get_preferred_height(-1);
}
-
// Subtract icon padding and box spacing from the available height
availHeight -= iconChildren.length * (natHeight - this.iconSize) +
(iconChildren.length - 1) * spacing;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]