[gnome-shell] Combination of updates to match design suggestions
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Combination of updates to match design suggestions
- Date: Wed, 19 May 2010 16:31:45 +0000 (UTC)
commit db36a90c48efaafd22f55b5dae24481d80a34bc8
Author: Colin Walters <walters verbum org>
Date: Wed May 12 17:07:41 2010 -0400
Combination of updates to match design suggestions
* Align the icons inside text
* Add application name to Quit
* Fade in/out the menu
* Drop some padding around the edges
* Add padding around the separators
* Use a gradient for separators
https://bugzilla.gnome.org/show_bug.cgi?id=618460
data/theme/gnome-shell.css | 14 ++++++---
js/ui/boxpointer.js | 22 +++------------
js/ui/panel.js | 61 +++++++++++++++++++++++++++++++++++--------
3 files changed, 63 insertions(+), 34 deletions(-)
---
diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index 266cfa7..3367c57 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -131,14 +131,15 @@ StTooltip {
.panel-menu {
color: #ffffff;
font-size: 16px;
+ min-width: 200px;
}
.panel-menu-content {
- padding: 20px 0px;
+ padding: 10px 0px;
}
.panel-menu-item {
- padding: 6px 30px;
+ padding: 6px 20px;
}
.panel-menu-item:hover {
@@ -146,12 +147,15 @@ StTooltip {
}
.panel-image-menu-item {
- spacing: 6px;
+ spacing: 12px;
}
.panel-separator-menu-item {
- background: #4c4c4c;
- height: 1px;
+ -gradient-height: 2px;
+ -gradient-start: rgba(8,8,8,0);
+ -gradient-end: #333333;
+ -margin-horizontal: 30px;
+ height: 16px;
}
#appMenu {
diff --git a/js/ui/boxpointer.js b/js/ui/boxpointer.js
index bd58828..f527135 100644
--- a/js/ui/boxpointer.js
+++ b/js/ui/boxpointer.js
@@ -8,10 +8,6 @@ const Shell = imports.gi.Shell;
/**
* BoxPointer:
* @side: A St.Side type; currently only St.Side.TOP is implemented
- * @sourceActor: The side of the BoxPointer where the pointer is
- * constrained to be as big as the corresponding dimension of
- * @sourceActor. E.g. for St.Side.TOP, the BoxPointer is horizontally
- * constrained to be bigger than @sourceActor.
* @binProperties: Properties to set on contained bin
*
* An actor which displays a triangle "arrow" pointing to a given
@@ -19,16 +15,15 @@ const Shell = imports.gi.Shell;
* placed. The arrow position may be controlled via setArrowOrigin().
*
*/
-function BoxPointer(side, sourceActor, binProperties) {
- this._init(side, sourceActor, binProperties);
+function BoxPointer(side, binProperties) {
+ this._init(side, binProperties);
}
BoxPointer.prototype = {
- _init: function(arrowSide, sourceActor, binProperties) {
+ _init: function(arrowSide, binProperties) {
if (arrowSide != St.Side.TOP)
throw new Error('Not implemented');
this._arrowSide = arrowSide;
- this._sourceActor = sourceActor;
this._arrowOrigin = 0;
this.actor = new St.Bin({ x_fill: true,
y_fill: true });
@@ -61,13 +56,8 @@ BoxPointer.prototype = {
_getPreferredWidth: function(actor, forHeight, alloc) {
let [minInternalSize, natInternalSize] = this.bin.get_preferred_width(forHeight);
- // The allocation property unlike get_allocation_box() doesn't trigger
- // synchronous relayout, which would be bad here. We assume that the
- // previous allocation of the button is fine.
- let sourceAlloc = this._sourceActor.allocation;
- let sourceWidth = sourceAlloc.x2 - sourceAlloc.x1;
- alloc.min_size = Math.max(minInternalSize, sourceWidth);
- alloc.natural_size = Math.max(natInternalSize, sourceWidth);
+ alloc.min_size = minInternalSize;
+ alloc.natural_size = natInternalSize;
this._adjustAllocationForArrow(true, alloc);
},
@@ -108,8 +98,6 @@ BoxPointer.prototype = {
_drawBorder: function(area) {
let themeNode = this.actor.get_theme_node();
- let [sourceX, sourceY] = this._sourceActor.get_transformed_position();
-
let found, borderWidth, borderRadius, rise, base;
[found, borderWidth] = themeNode.get_length('-arrow-border-width', false);
[found, base] = themeNode.get_length('-arrow-base', false);
diff --git a/js/ui/panel.js b/js/ui/panel.js
index ac1d122..5047f60 100644
--- a/js/ui/panel.js
+++ b/js/ui/panel.js
@@ -1,5 +1,6 @@
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
+const Cairo = imports.cairo;
const Clutter = imports.gi.Clutter;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
@@ -15,12 +16,13 @@ const _ = Gettext.gettext;
const AppDisplay = imports.ui.appDisplay;
const Calendar = imports.ui.calendar;
+const Overview = imports.ui.overview;
const Main = imports.ui.main;
const BoxPointer = imports.ui.boxpointer;
const PANEL_HEIGHT = 26;
-const DEFAULT_PADDING = 4;
+const POPUP_ANIMATION_TIME = 0.1;
const PANEL_ICON_SIZE = 24;
@@ -136,7 +138,8 @@ PanelMenuItem.prototype = {
x_fill: true,
y_fill: true,
x_align: St.Align.START });
- this.actor.set_child(new St.Label({ text: text }));
+ this.label = new St.Label({ text: text });
+ this.actor.set_child(this.label);
this.actor.connect('button-release-event', Lang.bind(this, function (actor, event) {
this.emit('activate', event);
}));
@@ -150,8 +153,31 @@ function PanelSeparatorMenuItem(text) {
PanelSeparatorMenuItem.prototype = {
_init: function (text) {
- this.actor = new St.Bin({ x_fill: true, y_fill: true });
- this.actor.set_child(new St.Bin({ style_class: 'panel-separator-menu-item' }));
+ this.actor = new St.DrawingArea({ style_class: 'panel-separator-menu-item' });
+ this.actor.connect('repaint', Lang.bind(this, this._onRepaint));
+ },
+
+ _onRepaint: function(area) {
+ let cr = area.get_context();
+ let themeNode = this.actor.get_theme_node();
+ let [width, height] = area.get_surface_size();
+ let found, margin, gradientHeight;
+ [found, margin] = themeNode.get_length('-margin-horizontal', false);
+ [found, gradientHeight] = themeNode.get_length('-gradient-height', false);
+ let startColor = new Clutter.Color()
+ themeNode.get_color('-gradient-start', false, startColor);
+ let endColor = new Clutter.Color()
+ themeNode.get_color('-gradient-end', false, endColor);
+
+ let gradientWidth = (width - margin * 2);
+ let gradientOffset = (height - gradientHeight) / 2;
+ let pattern = new Cairo.LinearGradient(margin, gradientOffset, width - margin, gradientOffset + gradientHeight);
+ pattern.addColorStopRGBA(0, startColor.red / 255, startColor.green / 255, startColor.blue / 255, startColor.alpha / 255);
+ pattern.addColorStopRGBA(0.5, endColor.red / 255, endColor.green / 255, endColor.blue / 255, endColor.alpha / 0xFF);
+ pattern.addColorStopRGBA(1, startColor.red / 255, startColor.green / 255, startColor.blue / 255, startColor.alpha / 255);
+ cr.setSource(pattern);
+ cr.rectangle(margin, gradientOffset, gradientWidth, gradientHeight);
+ cr.fill();
}
};
Signals.addSignalMethods(PanelSeparatorMenuItem.prototype);
@@ -200,12 +226,11 @@ PanelImageMenuItem.prototype = {
show = settings.gtk_menu_images;
}
if (!show) {
- let child = this._imageBin.get_child();
- if (child)
- child.destroy();
+ this._imageBin.hide();
} else {
let img = St.TextureCache.get_default().load_icon_name(this._iconName, this._size);
this._imageBin.set_child(img);
+ this._imageBin.show();
}
}
};
@@ -218,8 +243,7 @@ function PanelMenu(sourceButton) {
PanelMenu.prototype = {
_init: function(sourceButton) {
this._sourceButton = sourceButton;
- this._boxPointer = new BoxPointer.BoxPointer(St.Side.TOP, this._sourceButton,
- { x_fill: true, y_fill: true, x_align: St.Align.START });
+ this._boxPointer = new BoxPointer.BoxPointer(St.Side.TOP, { x_fill: true, y_fill: true, x_align: St.Align.START });
this.actor = this._boxPointer.actor;
this.actor.style_class = 'panel-menu-boxpointer';
this._box = new St.BoxLayout({ style_class: 'panel-menu-content',
@@ -293,6 +317,11 @@ PanelMenuButton.prototype = {
let panelActor = Main.panel.actor;
this.menu.actor.lower(panelActor);
this.menu.actor.show();
+ this.menu.actor.opacity = 0;
+ this.menu.actor.reactive = true;
+ Tweener.addTween(this.menu.actor, { opacity: 255,
+ transition: "easeOutQuad",
+ time: POPUP_ANIMATION_TIME });
this._repositionMenu();
this.actor.add_style_pseudo_class('pressed');
@@ -355,7 +384,11 @@ PanelMenuButton.prototype = {
if (this._state != this.State.OPEN)
return;
this._state = this.State.CLOSED;
- this.menu.actor.hide();
+ this.menu.actor.reactive = false;
+ Tweener.addTween(this.menu.actor, { opacity: 0,
+ transition: "easeOutQuad",
+ time: POPUP_ANIMATION_TIME,
+ onComplete: Lang.bind(this, function () { this.menu.actor.hide(); })});
this.actor.remove_style_pseudo_class('pressed');
this.emit('open-state-changed', false);
},
@@ -529,7 +562,9 @@ AppMenuButton.prototype = {
this._label = new TextShadower();
this._container.add_actor(this._label.actor);
- this.menu.addAction(_("Quit"), Lang.bind(this, this._onQuit));
+ this._quitMenu = new PanelMenuItem('');
+ this.menu.addMenuItem(this._quitMenu);
+ this._quitMenu.connect('activate', Lang.bind(this, this._onQuit));
Main.overview.connect('hiding', Lang.bind(this, function () {
this.actor.opacity = 255;
@@ -630,7 +665,9 @@ AppMenuButton.prototype = {
if (this._focusedApp != null) {
let icon = this._focusedApp.get_faded_icon(AppDisplay.APPICON_SIZE);
- this._label.setText(this._focusedApp.get_name());
+ let appName = this._focusedApp.get_name();
+ this._label.setText(appName);
+ this._quitMenu.label.set_text(_('Quit %s').format(appName));
this._iconBox.set_child(icon);
this._iconBox.show();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]