Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
|
|
|
|
const Big = imports.gi.Big;
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
const Gtk = imports.gi.Gtk;
|
|
|
|
const Mainloop = imports.mainloop;
|
2009-08-09 19:48:54 -04:00
|
|
|
const Pango = imports.gi.Pango;
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const Signals = imports.signals;
|
|
|
|
const Lang = imports.lang;
|
2009-10-22 13:33:09 -04:00
|
|
|
const St = imports.gi.St;
|
2009-08-14 09:30:48 -04:00
|
|
|
const Gettext = imports.gettext.domain('gnome-shell');
|
|
|
|
const _ = Gettext.gettext;
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
|
|
|
const AppDisplay = imports.ui.appDisplay;
|
|
|
|
const DocDisplay = imports.ui.docDisplay;
|
2009-10-31 22:25:28 -04:00
|
|
|
const PlaceDisplay = imports.ui.placeDisplay;
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
const GenericDisplay = imports.ui.genericDisplay;
|
|
|
|
const Main = imports.ui.main;
|
2009-11-29 17:45:30 -05:00
|
|
|
const Search = imports.ui.search;
|
|
|
|
|
|
|
|
// 25 search results (per result type) should be enough for everyone
|
|
|
|
const MAX_RENDERED_SEARCH_RESULTS = 25;
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
|
|
|
const DEFAULT_PADDING = 4;
|
2009-08-28 13:37:03 -04:00
|
|
|
const DEFAULT_SPACING = 4;
|
2009-08-09 19:48:54 -04:00
|
|
|
|
|
|
|
const BACKGROUND_COLOR = new Clutter.Color();
|
|
|
|
BACKGROUND_COLOR.from_pixel(0x000000c0);
|
|
|
|
|
2009-08-26 18:46:58 -04:00
|
|
|
const PRELIGHT_COLOR = new Clutter.Color();
|
|
|
|
PRELIGHT_COLOR.from_pixel(0x4f6fadaa);
|
|
|
|
|
2009-08-15 16:32:58 -04:00
|
|
|
const TEXT_COLOR = new Clutter.Color();
|
|
|
|
TEXT_COLOR.from_pixel(0x5f5f5fff);
|
2009-08-28 13:37:03 -04:00
|
|
|
const BRIGHTER_TEXT_COLOR = new Clutter.Color();
|
|
|
|
BRIGHTER_TEXT_COLOR.from_pixel(0xbbbbbbff);
|
2009-08-15 16:32:58 -04:00
|
|
|
const BRIGHT_TEXT_COLOR = new Clutter.Color();
|
|
|
|
BRIGHT_TEXT_COLOR.from_pixel(0xffffffff);
|
|
|
|
const SEARCH_TEXT_COLOR = new Clutter.Color();
|
|
|
|
SEARCH_TEXT_COLOR.from_pixel(0x333333ff);
|
|
|
|
|
|
|
|
const SEARCH_CURSOR_COLOR = BRIGHT_TEXT_COLOR;
|
|
|
|
const HIGHLIGHTED_SEARCH_CURSOR_COLOR = SEARCH_TEXT_COLOR;
|
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
const SEARCH_BORDER_BOTTOM_COLOR = new Clutter.Color();
|
|
|
|
SEARCH_BORDER_BOTTOM_COLOR.from_pixel(0x191919ff);
|
|
|
|
|
|
|
|
const BROWSE_ACTIVATED_BG = new Clutter.Color();
|
|
|
|
BROWSE_ACTIVATED_BG.from_pixel(0x303030f0);
|
|
|
|
|
2009-09-11 17:48:02 -04:00
|
|
|
const APPS = "apps";
|
|
|
|
const PREFS = "prefs";
|
|
|
|
const DOCS = "docs";
|
2009-10-31 22:25:28 -04:00
|
|
|
const PLACES = "places";
|
2009-09-11 17:48:02 -04:00
|
|
|
|
2009-09-11 16:42:54 -04:00
|
|
|
/*
|
|
|
|
* Returns the index in an array of a given length that is obtained
|
|
|
|
* if the provided index is incremented by an increment and the array
|
|
|
|
* is wrapped in if necessary.
|
2009-11-09 17:49:01 -05:00
|
|
|
*
|
2009-09-11 16:42:54 -04:00
|
|
|
* index: prior index, expects 0 <= index < length
|
|
|
|
* increment: the change in index, expects abs(increment) <= length
|
|
|
|
* length: the length of the array
|
|
|
|
*/
|
|
|
|
function _getIndexWrapped(index, increment, length) {
|
|
|
|
return (index + increment + length) % length;
|
|
|
|
}
|
|
|
|
|
2009-11-03 18:36:44 -05:00
|
|
|
function _createDisplay(displayType, flags) {
|
2009-09-11 17:48:02 -04:00
|
|
|
if (displayType == APPS)
|
2009-11-03 18:36:44 -05:00
|
|
|
return new AppDisplay.AppDisplay(false, flags);
|
2009-09-11 17:48:02 -04:00
|
|
|
else if (displayType == PREFS)
|
2009-11-03 18:36:44 -05:00
|
|
|
return new AppDisplay.AppDisplay(true, flags);
|
2009-09-11 17:48:02 -04:00
|
|
|
else if (displayType == DOCS)
|
2009-11-03 18:36:44 -05:00
|
|
|
return new DocDisplay.DocDisplay(flags);
|
2009-10-31 22:25:28 -04:00
|
|
|
else if (displayType == PLACES)
|
2009-11-03 18:36:44 -05:00
|
|
|
return new PlaceDisplay.PlaceDisplay(flags);
|
2009-09-11 17:48:02 -04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
function Pane() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
Pane.prototype = {
|
|
|
|
_init: function () {
|
|
|
|
this._open = false;
|
|
|
|
|
2009-11-06 14:55:03 -05:00
|
|
|
this.actor = new St.BoxLayout({ style_class: "dash-pane",
|
|
|
|
vertical: true,
|
|
|
|
reactive: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.actor.connect('button-press-event', Lang.bind(this, function (a, e) {
|
|
|
|
// Eat button press events so they don't go through and close the pane
|
|
|
|
return true;
|
|
|
|
}));
|
|
|
|
|
2009-11-06 14:55:03 -05:00
|
|
|
let chromeTop = new St.BoxLayout();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-11-12 13:09:20 -05:00
|
|
|
let closeIcon = new St.Button({ style_class: "dash-pane-close" });
|
|
|
|
closeIcon.connect('clicked', Lang.bind(this, function (b, e) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.close();
|
|
|
|
}));
|
2009-11-06 14:55:03 -05:00
|
|
|
let dummy = new St.Bin();
|
|
|
|
chromeTop.add(dummy, { expand: true });
|
|
|
|
chromeTop.add(closeIcon, { x_align: St.Align.END });
|
|
|
|
this.actor.add(chromeTop);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-11-06 14:55:03 -05:00
|
|
|
this.content = new St.BoxLayout({ vertical: true });
|
|
|
|
this.actor.add(this.content, { expand: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
|
|
|
// Hidden by default
|
|
|
|
this.actor.hide();
|
|
|
|
},
|
|
|
|
|
|
|
|
open: function () {
|
|
|
|
if (this._open)
|
|
|
|
return;
|
|
|
|
this._open = true;
|
|
|
|
this.actor.show();
|
|
|
|
this.emit('open-state-changed', this._open);
|
|
|
|
},
|
|
|
|
|
|
|
|
close: function () {
|
|
|
|
if (!this._open)
|
|
|
|
return;
|
|
|
|
this._open = false;
|
|
|
|
this.actor.hide();
|
|
|
|
this.emit('open-state-changed', this._open);
|
|
|
|
},
|
|
|
|
|
|
|
|
destroyContent: function() {
|
|
|
|
let children = this.content.get_children();
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
|
|
children[i].destroy();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
toggle: function () {
|
|
|
|
if (this._open)
|
|
|
|
this.close();
|
|
|
|
else
|
|
|
|
this.open();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Signals.addSignalMethods(Pane.prototype);
|
|
|
|
|
2009-11-03 18:36:44 -05:00
|
|
|
function ResultArea(displayType, flags) {
|
|
|
|
this._init(displayType, flags);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ResultArea.prototype = {
|
2009-11-03 18:36:44 -05:00
|
|
|
_init : function(displayType, flags) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.actor = new Big.Box({ orientation: Big.BoxOrientation.VERTICAL });
|
|
|
|
this.resultsContainer = new Big.Box({ orientation: Big.BoxOrientation.HORIZONTAL,
|
|
|
|
spacing: DEFAULT_PADDING
|
|
|
|
});
|
|
|
|
this.actor.append(this.resultsContainer, Big.BoxPackFlags.EXPAND);
|
|
|
|
|
2009-11-03 18:36:44 -05:00
|
|
|
this.display = _createDisplay(displayType, flags);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.resultsContainer.append(this.display.actor, Big.BoxPackFlags.EXPAND);
|
|
|
|
this.display.load();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Utility function shared between ResultPane and the DocDisplay in the main dash.
|
|
|
|
// Connects to the detail signal of the display, and on-demand creates a new
|
|
|
|
// pane.
|
2009-08-09 19:48:54 -04:00
|
|
|
function createPaneForDetails(dash, display) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
let detailPane = null;
|
|
|
|
display.connect('show-details', Lang.bind(this, function(display, index) {
|
|
|
|
if (detailPane == null) {
|
|
|
|
detailPane = new Pane();
|
|
|
|
detailPane.connect('open-state-changed', Lang.bind(this, function (pane, isOpen) {
|
|
|
|
if (!isOpen) {
|
|
|
|
/* Ensure we don't keep around large preview textures */
|
|
|
|
detailPane.destroyContent();
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
dash._addPane(detailPane);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index >= 0) {
|
|
|
|
detailPane.destroyContent();
|
2009-08-12 16:33:39 -04:00
|
|
|
let details = display.createDetailsForIndex(index);
|
2009-11-06 14:55:03 -05:00
|
|
|
detailPane.content.add(details, { expand: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
detailPane.open();
|
|
|
|
} else {
|
|
|
|
detailPane.close();
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
function ResultPane(dash) {
|
|
|
|
this._init(dash);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ResultPane.prototype = {
|
|
|
|
__proto__: Pane.prototype,
|
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
_init: function(dash) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
Pane.prototype._init.call(this);
|
|
|
|
this._dash = dash;
|
|
|
|
},
|
|
|
|
|
2009-09-11 17:48:02 -04:00
|
|
|
// Create a display of displayType and pack it into this pane's
|
|
|
|
// content area. Return the display.
|
2009-11-03 18:36:44 -05:00
|
|
|
packResults: function(displayType) {
|
|
|
|
let resultArea = new ResultArea(displayType);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
createPaneForDetails(this._dash, resultArea.display);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-11-06 14:55:03 -05:00
|
|
|
this.content.add(resultArea.actor, { expand: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.connect('open-state-changed', Lang.bind(this, function(pane, isOpen) {
|
|
|
|
resultArea.display.resetState();
|
|
|
|
}));
|
|
|
|
return resultArea.display;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function SearchEntry() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
SearchEntry.prototype = {
|
|
|
|
_init : function() {
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor = new St.BoxLayout({ name: "searchEntry",
|
|
|
|
reactive: true });
|
2009-08-16 10:09:34 -04:00
|
|
|
let box = new Big.Box({ orientation: Big.BoxOrientation.HORIZONTAL,
|
|
|
|
y_align: Big.BoxAlignment.CENTER });
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor.add(box, { expand: true });
|
2009-08-15 16:32:58 -04:00
|
|
|
this.actor.connect('button-press-event', Lang.bind(this, function () {
|
|
|
|
this._resetTextState(true);
|
|
|
|
return false;
|
|
|
|
}));
|
|
|
|
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.pane = null;
|
|
|
|
|
2009-08-28 11:56:40 -04:00
|
|
|
this._defaultText = _("Find...");
|
2009-08-09 19:48:54 -04:00
|
|
|
|
2009-08-28 16:21:21 -04:00
|
|
|
let textProperties = { font_name: "Sans 16px" };
|
2009-08-09 19:48:54 -04:00
|
|
|
let entryProperties = { editable: true,
|
|
|
|
activatable: true,
|
|
|
|
single_line_mode: true,
|
2009-08-15 16:32:58 -04:00
|
|
|
color: SEARCH_TEXT_COLOR,
|
|
|
|
cursor_color: SEARCH_CURSOR_COLOR };
|
2009-08-09 19:48:54 -04:00
|
|
|
Lang.copyProperties(textProperties, entryProperties);
|
|
|
|
this.entry = new Clutter.Text(entryProperties);
|
2009-08-15 16:32:58 -04:00
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
this.entry.connect('notify::text', Lang.bind(this, function () {
|
2009-08-15 16:32:58 -04:00
|
|
|
this._resetTextState(false);
|
2009-08-09 19:48:54 -04:00
|
|
|
}));
|
2009-08-16 10:09:34 -04:00
|
|
|
box.append(this.entry, Big.BoxPackFlags.EXPAND);
|
2009-08-09 19:48:54 -04:00
|
|
|
|
|
|
|
// Mark as editable just to get a cursor
|
|
|
|
let defaultTextProperties = { ellipsize: Pango.EllipsizeMode.END,
|
2009-08-14 18:13:55 -04:00
|
|
|
text: this._defaultText,
|
2009-08-09 19:48:54 -04:00
|
|
|
editable: true,
|
|
|
|
color: TEXT_COLOR,
|
|
|
|
cursor_visible: false,
|
|
|
|
single_line_mode: true };
|
|
|
|
Lang.copyProperties(textProperties, defaultTextProperties);
|
|
|
|
this._defaultText = new Clutter.Text(defaultTextProperties);
|
2009-08-16 10:09:34 -04:00
|
|
|
box.add_actor(this._defaultText);
|
2009-08-09 19:48:54 -04:00
|
|
|
this.entry.connect('notify::allocation', Lang.bind(this, function () {
|
|
|
|
this._repositionDefaultText();
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._iconBox = new Big.Box({ x_align: Big.BoxAlignment.CENTER,
|
2009-08-16 10:09:34 -04:00
|
|
|
y_align: Big.BoxAlignment.CENTER,
|
|
|
|
padding_right: 4 });
|
|
|
|
box.append(this._iconBox, Big.BoxPackFlags.END);
|
2009-08-09 19:48:54 -04:00
|
|
|
|
|
|
|
let magnifierUri = "file://" + global.imagedir + "magnifier.svg";
|
|
|
|
this._magnifierIcon = Shell.TextureCache.get_default().load_uri_sync(Shell.TextureCachePolicy.FOREVER,
|
2009-08-16 10:09:34 -04:00
|
|
|
magnifierUri, 18, 18);
|
|
|
|
let closeUri = "file://" + global.imagedir + "close-black.svg";
|
2009-08-09 19:48:54 -04:00
|
|
|
this._closeIcon = Shell.TextureCache.get_default().load_uri_sync(Shell.TextureCachePolicy.FOREVER,
|
|
|
|
closeUri, 18, 18);
|
|
|
|
this._closeIcon.reactive = true;
|
|
|
|
this._closeIcon.connect('button-press-event', Lang.bind(this, function () {
|
2009-08-15 16:32:58 -04:00
|
|
|
// Resetting this.entry.text will trigger notify::text signal which will
|
|
|
|
// result in this._resetTextState() being called, but we should not rely
|
|
|
|
// on that not short-circuiting if the text was already empty, so we call
|
|
|
|
// this._resetTextState() explicitly in that case.
|
|
|
|
if (this.entry.text == '')
|
|
|
|
this._resetTextState(false);
|
|
|
|
else
|
|
|
|
this.entry.text = '';
|
|
|
|
|
2009-11-09 17:49:01 -05:00
|
|
|
// Return true to stop the signal emission, so that this.actor doesn't get
|
2009-08-15 16:32:58 -04:00
|
|
|
// the button-press-event and re-highlight itself.
|
|
|
|
return true;
|
2009-08-09 19:48:54 -04:00
|
|
|
}));
|
|
|
|
this._repositionDefaultText();
|
|
|
|
this._resetTextState();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
setPane: function (pane) {
|
|
|
|
this._pane = pane;
|
2009-08-09 19:48:54 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
reset: function () {
|
|
|
|
this.entry.text = '';
|
|
|
|
},
|
|
|
|
|
|
|
|
getText: function () {
|
|
|
|
return this.entry.text;
|
|
|
|
},
|
|
|
|
|
2009-08-15 16:32:58 -04:00
|
|
|
_resetTextState: function (searchEntryClicked) {
|
2009-08-09 19:48:54 -04:00
|
|
|
let text = this.getText();
|
|
|
|
this._iconBox.remove_all();
|
2009-11-09 17:49:01 -05:00
|
|
|
// We highlight the search box if the user starts typing in it
|
2009-08-15 16:32:58 -04:00
|
|
|
// or just clicks in it to indicate that the search is active.
|
|
|
|
if (text != '' || searchEntryClicked) {
|
|
|
|
if (!searchEntryClicked)
|
|
|
|
this._defaultText.hide();
|
2009-08-09 19:48:54 -04:00
|
|
|
this._iconBox.append(this._closeIcon, Big.BoxPackFlags.NONE);
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor.set_style_pseudo_class('active');
|
2009-08-15 16:32:58 -04:00
|
|
|
this.entry.cursor_color = HIGHLIGHTED_SEARCH_CURSOR_COLOR;
|
2009-08-09 19:48:54 -04:00
|
|
|
} else {
|
|
|
|
this._defaultText.show();
|
|
|
|
this._iconBox.append(this._magnifierIcon, Big.BoxPackFlags.NONE);
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor.set_style_pseudo_class(null);
|
2009-08-15 16:32:58 -04:00
|
|
|
this.entry.cursor_color = SEARCH_CURSOR_COLOR;
|
2009-08-09 19:48:54 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_repositionDefaultText: function () {
|
|
|
|
// Offset a little to show the cursor
|
|
|
|
this._defaultText.set_position(this.entry.x + 4, this.entry.y);
|
|
|
|
this._defaultText.set_size(this.entry.width, this.entry.height);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
Signals.addSignalMethods(SearchEntry.prototype);
|
|
|
|
|
2009-11-29 17:45:30 -05:00
|
|
|
function SearchResult(provider, metaInfo, terms) {
|
|
|
|
this._init(provider, metaInfo, terms);
|
|
|
|
}
|
|
|
|
|
|
|
|
SearchResult.prototype = {
|
|
|
|
_init: function(provider, metaInfo, terms) {
|
|
|
|
this.provider = provider;
|
|
|
|
this.metaInfo = metaInfo;
|
|
|
|
this.actor = new St.Clickable({ style_class: 'dash-search-result',
|
|
|
|
reactive: true,
|
|
|
|
x_align: St.Align.START,
|
|
|
|
x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
this.actor._delegate = this;
|
|
|
|
|
|
|
|
let content = provider.createResultActor(metaInfo, terms);
|
|
|
|
if (content == null) {
|
|
|
|
content = new St.BoxLayout({ style_class: 'dash-search-result-content' });
|
|
|
|
let title = new St.Label({ text: this.metaInfo['name'] });
|
|
|
|
let icon = this.metaInfo['icon'];
|
|
|
|
content.add(icon, { y_fill: false });
|
|
|
|
content.add(title, { expand: true, y_fill: false });
|
|
|
|
}
|
|
|
|
this._content = content;
|
|
|
|
this.actor.set_child(content);
|
|
|
|
|
|
|
|
this.actor.connect('clicked', Lang.bind(this, this._onResultClicked));
|
|
|
|
},
|
|
|
|
|
|
|
|
setSelected: function(selected) {
|
|
|
|
this._content.set_style_pseudo_class(selected ? 'selected' : null);
|
|
|
|
},
|
|
|
|
|
|
|
|
activate: function() {
|
|
|
|
this.provider.activateResult(this.metaInfo.id);
|
|
|
|
Main.overview.toggle();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onResultClicked: function(actor, event) {
|
|
|
|
this.activate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function OverflowSearchResults(provider) {
|
|
|
|
this._init(provider);
|
|
|
|
}
|
|
|
|
|
|
|
|
OverflowSearchResults.prototype = {
|
|
|
|
__proto__: Search.SearchResultDisplay.prototype,
|
|
|
|
|
|
|
|
_init: function(provider) {
|
|
|
|
Search.SearchResultDisplay.prototype._init.call(this, provider);
|
|
|
|
this.actor = new St.OverflowBox({ style_class: 'dash-search-section-list-results' });
|
|
|
|
},
|
|
|
|
|
|
|
|
renderResults: function(results, terms) {
|
|
|
|
for (let i = 0; i < results.length && i < MAX_RENDERED_SEARCH_RESULTS; i++) {
|
|
|
|
let result = results[i];
|
|
|
|
let meta = this.provider.getResultMeta(result);
|
|
|
|
let display = new SearchResult(this.provider, meta, terms);
|
|
|
|
this.actor.add_actor(display.actor);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getVisibleCount: function() {
|
|
|
|
return this.actor.get_n_visible();
|
|
|
|
},
|
|
|
|
|
|
|
|
selectIndex: function(index) {
|
|
|
|
let nVisible = this.actor.get_n_visible();
|
|
|
|
let children = this.actor.get_children();
|
|
|
|
if (this.selectionIndex >= 0) {
|
|
|
|
let prevActor = children[this.selectionIndex];
|
|
|
|
prevActor._delegate.setSelected(false);
|
|
|
|
}
|
|
|
|
this.selectionIndex = -1;
|
|
|
|
if (index >= nVisible)
|
|
|
|
return false;
|
|
|
|
else if (index < 0)
|
|
|
|
return false;
|
|
|
|
let targetActor = children[index];
|
|
|
|
targetActor._delegate.setSelected(true);
|
|
|
|
this.selectionIndex = index;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function SearchResults(searchSystem) {
|
|
|
|
this._init(searchSystem);
|
|
|
|
}
|
|
|
|
|
|
|
|
SearchResults.prototype = {
|
|
|
|
_init: function(searchSystem) {
|
|
|
|
this._searchSystem = searchSystem;
|
|
|
|
|
|
|
|
this.actor = new St.BoxLayout({ name: 'dashSearchResults',
|
|
|
|
vertical: true });
|
|
|
|
this._searchingNotice = new St.Label({ style_class: 'dash-search-starting',
|
|
|
|
text: _("Searching...") });
|
|
|
|
this.actor.add(this._searchingNotice);
|
|
|
|
this._selectedProvider = -1;
|
|
|
|
this._providers = this._searchSystem.getProviders();
|
|
|
|
this._providerMeta = [];
|
|
|
|
for (let i = 0; i < this._providers.length; i++) {
|
|
|
|
let provider = this._providers[i];
|
|
|
|
let providerBox = new St.BoxLayout({ style_class: 'dash-search-section',
|
|
|
|
vertical: true });
|
|
|
|
let titleButton = new St.Button({ style_class: 'dash-search-section-header',
|
|
|
|
reactive: true,
|
|
|
|
x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
titleButton.connect('clicked', Lang.bind(this, function () { this._onHeaderClicked(provider); }));
|
|
|
|
providerBox.add(titleButton);
|
|
|
|
let titleBox = new St.BoxLayout();
|
|
|
|
titleButton.set_child(titleBox);
|
|
|
|
let title = new St.Label({ text: provider.title });
|
|
|
|
let count = new St.Label();
|
|
|
|
titleBox.add(title, { expand: true });
|
|
|
|
titleBox.add(count);
|
|
|
|
|
|
|
|
let resultDisplayBin = new St.Bin({ style_class: 'dash-search-section-results',
|
|
|
|
x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
providerBox.add(resultDisplayBin, { expand: true });
|
|
|
|
let resultDisplay = provider.createResultContainerActor();
|
|
|
|
if (resultDisplay == null) {
|
|
|
|
resultDisplay = new OverflowSearchResults(provider);
|
|
|
|
}
|
|
|
|
resultDisplayBin.set_child(resultDisplay.actor);
|
|
|
|
|
|
|
|
this._providerMeta.push({ actor: providerBox,
|
|
|
|
resultDisplay: resultDisplay,
|
|
|
|
count: count });
|
|
|
|
this.actor.add(providerBox);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_clearDisplay: function() {
|
|
|
|
this._selectedProvider = -1;
|
|
|
|
this._visibleResultsCount = 0;
|
|
|
|
for (let i = 0; i < this._providerMeta.length; i++) {
|
|
|
|
let meta = this._providerMeta[i];
|
|
|
|
meta.resultDisplay.clear();
|
|
|
|
meta.actor.hide();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
reset: function() {
|
|
|
|
this._searchSystem.reset();
|
|
|
|
this._searchingNotice.hide();
|
|
|
|
this._clearDisplay();
|
|
|
|
},
|
|
|
|
|
|
|
|
startingSearch: function() {
|
|
|
|
this.reset();
|
|
|
|
this._searchingNotice.show();
|
|
|
|
},
|
|
|
|
|
|
|
|
_metaForProvider: function(provider) {
|
|
|
|
return this._providerMeta[this._providers.indexOf(provider)];
|
|
|
|
},
|
|
|
|
|
|
|
|
updateSearch: function (searchString) {
|
|
|
|
let results = this._searchSystem.updateSearch(searchString);
|
|
|
|
|
|
|
|
this._searchingNotice.hide();
|
|
|
|
this._clearDisplay();
|
|
|
|
|
|
|
|
let terms = this._searchSystem.getTerms();
|
|
|
|
|
|
|
|
for (let i = 0; i < results.length; i++) {
|
|
|
|
let [provider, providerResults] = results[i];
|
|
|
|
let meta = this._metaForProvider(provider);
|
|
|
|
meta.actor.show();
|
|
|
|
meta.resultDisplay.renderResults(providerResults, terms);
|
|
|
|
meta.count.set_text(""+providerResults.length);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.selectDown();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onHeaderClicked: function(provider) {
|
|
|
|
provider.expandSearch(this._searchSystem.getTerms());
|
|
|
|
},
|
|
|
|
|
|
|
|
_modifyActorSelection: function(resultDisplay, up) {
|
|
|
|
let success;
|
|
|
|
let index = resultDisplay.getSelectionIndex();
|
|
|
|
if (up && index == -1)
|
|
|
|
index = resultDisplay.getVisibleCount() - 1;
|
|
|
|
else if (up)
|
|
|
|
index = index - 1;
|
|
|
|
else
|
|
|
|
index = index + 1;
|
|
|
|
return resultDisplay.selectIndex(index);
|
|
|
|
},
|
|
|
|
|
|
|
|
selectUp: function() {
|
|
|
|
for (let i = this._selectedProvider; i >= 0; i--) {
|
|
|
|
let meta = this._providerMeta[i];
|
|
|
|
if (!meta.actor.visible)
|
|
|
|
continue;
|
|
|
|
let success = this._modifyActorSelection(meta.resultDisplay, true);
|
|
|
|
if (success) {
|
|
|
|
this._selectedProvider = i;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this._providerMeta.length > 0) {
|
|
|
|
this._selectedProvider = this._providerMeta.length - 1;
|
|
|
|
this.selectUp();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
selectDown: function() {
|
|
|
|
let current = this._selectedProvider;
|
|
|
|
if (current == -1)
|
|
|
|
current = 0;
|
|
|
|
for (let i = current; i < this._providerMeta.length; i++) {
|
|
|
|
let meta = this._providerMeta[i];
|
|
|
|
if (!meta.actor.visible)
|
|
|
|
continue;
|
|
|
|
let success = this._modifyActorSelection(meta.resultDisplay, false);
|
|
|
|
if (success) {
|
|
|
|
this._selectedProvider = i;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this._providerMeta.length > 0) {
|
|
|
|
this._selectedProvider = 0;
|
|
|
|
this.selectDown();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
activateSelected: function() {
|
|
|
|
let current = this._selectedProvider;
|
|
|
|
if (current < 0)
|
|
|
|
return;
|
|
|
|
let meta = this._providerMeta[current];
|
|
|
|
let resultDisplay = meta.resultDisplay;
|
|
|
|
let children = resultDisplay.actor.get_children();
|
|
|
|
let targetActor = children[resultDisplay.getSelectionIndex()];
|
|
|
|
targetActor._delegate.activate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
function MoreLink() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
MoreLink.prototype = {
|
|
|
|
_init : function () {
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor = new St.BoxLayout({ style_class: "more-link",
|
|
|
|
reactive: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this.pane = null;
|
|
|
|
|
2009-11-06 18:32:41 -05:00
|
|
|
let expander = new St.Bin({ style_class: "more-link-expander" });
|
|
|
|
this.actor.add(expander, { expand: true, y_fill: false });
|
2009-08-09 19:48:54 -04:00
|
|
|
|
|
|
|
this.actor.connect('button-press-event', Lang.bind(this, function (b, e) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
if (this.pane == null) {
|
|
|
|
// Ensure the pane is created; the activated handler will call setPane
|
|
|
|
this.emit('activated');
|
|
|
|
}
|
|
|
|
this._pane.toggle();
|
|
|
|
return true;
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
setPane: function (pane) {
|
|
|
|
this._pane = pane;
|
|
|
|
this._pane.connect('open-state-changed', Lang.bind(this, function(pane, isOpen) {
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Signals.addSignalMethods(MoreLink.prototype);
|
|
|
|
|
2009-09-01 19:06:20 -04:00
|
|
|
function BackLink() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
BackLink.prototype = {
|
|
|
|
_init : function () {
|
2009-11-10 10:02:02 -05:00
|
|
|
this.actor = new St.Button({ style_class: "section-header-back",
|
|
|
|
reactive: true });
|
|
|
|
this.actor.set_child(new St.Bin({ style_class: "section-header-back-image" }));
|
2009-09-01 19:06:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
function SectionHeader(title, suppressBrowse) {
|
|
|
|
this._init(title, suppressBrowse);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
SectionHeader.prototype = {
|
2009-08-09 19:48:54 -04:00
|
|
|
_init : function (title, suppressBrowse) {
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor = new St.Bin({ style_class: "section-header",
|
|
|
|
x_align: St.Align.START,
|
|
|
|
x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
this._innerBox = new St.BoxLayout({ style_class: "section-header-inner" });
|
|
|
|
this.actor.set_child(this._innerBox);
|
|
|
|
|
2009-11-10 10:02:02 -05:00
|
|
|
this.backLink = new BackLink();
|
|
|
|
this._innerBox.add(this.backLink.actor);
|
|
|
|
this.backLink.actor.hide();
|
|
|
|
this.backLink.actor.connect('clicked', Lang.bind(this, function (actor) {
|
|
|
|
this.emit('back-link-activated');
|
|
|
|
}));
|
|
|
|
|
2009-10-22 13:33:09 -04:00
|
|
|
let textBox = new St.BoxLayout({ style_class: "section-text-content" });
|
|
|
|
this.text = new St.Label({ style_class: "section-title",
|
|
|
|
text: title });
|
|
|
|
textBox.add(this.text, { x_align: St.Align.START });
|
2009-09-01 19:06:20 -04:00
|
|
|
|
2009-10-22 13:33:09 -04:00
|
|
|
this.countText = new St.Label({ style_class: "section-count" });
|
2009-11-10 10:02:02 -05:00
|
|
|
textBox.add(this.countText, { expand: true, x_fill: false, x_align: St.Align.END });
|
2009-09-01 19:06:20 -04:00
|
|
|
this.countText.hide();
|
|
|
|
|
2009-10-22 13:33:09 -04:00
|
|
|
this._innerBox.add(textBox, { expand: true });
|
2009-08-28 13:37:03 -04:00
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
if (!suppressBrowse) {
|
|
|
|
this.moreLink = new MoreLink();
|
2009-10-22 13:33:09 -04:00
|
|
|
this._innerBox.add(this.moreLink.actor, { x_align: St.Align.END });
|
2009-08-09 19:48:54 -04:00
|
|
|
}
|
2009-09-01 19:06:20 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
setTitle : function(title) {
|
|
|
|
this.text.text = title;
|
|
|
|
},
|
|
|
|
|
|
|
|
setBackLinkVisible : function(visible) {
|
|
|
|
if (visible)
|
|
|
|
this.backLink.actor.show();
|
|
|
|
else
|
|
|
|
this.backLink.actor.hide();
|
|
|
|
},
|
|
|
|
|
2009-09-25 14:54:40 -04:00
|
|
|
setMoreLinkVisible : function(visible) {
|
|
|
|
if (visible)
|
|
|
|
this.moreLink.actor.show();
|
|
|
|
else
|
|
|
|
this.moreLink.actor.hide();
|
|
|
|
},
|
|
|
|
|
2009-09-01 19:06:20 -04:00
|
|
|
setCountText : function(countText) {
|
|
|
|
if (countText == "") {
|
|
|
|
this.countText.hide();
|
|
|
|
} else {
|
|
|
|
this.countText.show();
|
|
|
|
this.countText.text = countText;
|
|
|
|
}
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-01 19:06:20 -04:00
|
|
|
Signals.addSignalMethods(SectionHeader.prototype);
|
|
|
|
|
2009-08-26 18:46:58 -04:00
|
|
|
function SearchSectionHeader(title, onClick) {
|
|
|
|
this._init(title, onClick);
|
|
|
|
}
|
|
|
|
|
|
|
|
SearchSectionHeader.prototype = {
|
|
|
|
_init : function(title, onClick) {
|
2009-11-11 14:13:38 -05:00
|
|
|
this.actor = new St.Button({ style_class: "dash-search-section-header",
|
|
|
|
x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
let box = new St.BoxLayout();
|
|
|
|
this.actor.set_child(box);
|
|
|
|
let titleText = new St.Label({ style_class: "dash-search-section-title",
|
|
|
|
text: title });
|
|
|
|
this.countText = new St.Label({ style_class: "dash-search-section-count" });
|
|
|
|
|
|
|
|
box.add(titleText);
|
|
|
|
box.add(this.countText, { expand: true, x_fill: false, x_align: St.Align.END });
|
|
|
|
|
|
|
|
this.actor.connect('clicked', onClick);
|
2009-08-26 18:46:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
function Section(titleString, suppressBrowse) {
|
|
|
|
this._init(titleString, suppressBrowse);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
Section.prototype = {
|
|
|
|
_init: function(titleString, suppressBrowse) {
|
2009-11-06 16:08:07 -05:00
|
|
|
this.actor = new St.BoxLayout({ style_class: 'dash-section',
|
|
|
|
vertical: true });
|
2009-08-09 19:48:54 -04:00
|
|
|
this.header = new SectionHeader(titleString, suppressBrowse);
|
2009-11-06 16:08:07 -05:00
|
|
|
this.actor.add(this.header.actor);
|
|
|
|
this.content = new St.BoxLayout({ style_class: 'dash-section-content',
|
|
|
|
vertical: true });
|
|
|
|
this.actor.add(this.content);
|
2009-08-09 19:48:54 -04:00
|
|
|
}
|
|
|
|
}
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
function Dash() {
|
|
|
|
this._init();
|
|
|
|
}
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
Dash.prototype = {
|
|
|
|
_init : function() {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
// dash and the popup panes need to be reactive so that the clicks in unoccupied places on them
|
|
|
|
// are not passed to the transparent background underneath them. This background is used for the workspaces area when
|
|
|
|
// the additional dash panes are being shown and it handles clicks by closing the additional panes, so that the user
|
|
|
|
// can interact with the workspaces. However, this behavior is not desirable when the click is actually over a pane.
|
|
|
|
//
|
|
|
|
// We have to make the individual panes reactive instead of making the whole dash actor reactive because the width
|
|
|
|
// of the Group actor ends up including the width of its hidden children, so we were getting a reactive object as
|
|
|
|
// wide as the details pane that was blocking the clicks to the workspaces underneath it even when the details pane
|
|
|
|
// was actually hidden.
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor = new St.BoxLayout({ name: "dash",
|
|
|
|
vertical: true,
|
|
|
|
reactive: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-11-29 17:45:30 -05:00
|
|
|
// The searchArea just holds the entry
|
|
|
|
this.searchArea = new St.BoxLayout({ name: "dashSearchArea",
|
|
|
|
vertical: true });
|
2009-11-06 17:32:23 -05:00
|
|
|
this.sectionArea = new St.BoxLayout({ name: "dashSections",
|
|
|
|
vertical: true });
|
2009-08-09 19:48:54 -04:00
|
|
|
|
2009-10-22 13:33:09 -04:00
|
|
|
this.actor.add(this.searchArea);
|
|
|
|
this.actor.add(this.sectionArea);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
|
|
|
// The currently active popup display
|
|
|
|
this._activePane = null;
|
|
|
|
|
|
|
|
/***** Search *****/
|
|
|
|
|
|
|
|
this._searchActive = false;
|
2009-09-24 18:34:43 -04:00
|
|
|
this._searchPending = false;
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this._searchEntry = new SearchEntry();
|
2009-11-29 17:45:30 -05:00
|
|
|
this.searchArea.add(this._searchEntry.actor, { y_fill: false, expand: true });
|
|
|
|
|
|
|
|
this._searchSystem = new Search.SearchSystem();
|
|
|
|
this._searchSystem.registerProvider(new AppDisplay.AppSearchProvider());
|
|
|
|
this._searchSystem.registerProvider(new AppDisplay.PrefsSearchProvider());
|
|
|
|
this._searchSystem.registerProvider(new PlaceDisplay.PlaceSearchProvider());
|
|
|
|
this._searchSystem.registerProvider(new DocDisplay.DocSearchProvider());
|
|
|
|
|
|
|
|
this.searchResults = new SearchResults(this._searchSystem);
|
|
|
|
this.actor.add(this.searchResults.actor);
|
|
|
|
this.searchResults.actor.hide();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-08-12 19:37:47 -04:00
|
|
|
this._searchTimeoutId = 0;
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this._searchEntry.entry.connect('text-changed', Lang.bind(this, function (se, prop) {
|
2009-08-09 19:48:54 -04:00
|
|
|
let text = this._searchEntry.getText();
|
2009-11-29 17:45:30 -05:00
|
|
|
text = text.replace(/^\s+/g, "").replace(/\s+$/g, "");
|
2009-09-24 18:34:43 -04:00
|
|
|
let searchPreviouslyActive = this._searchActive;
|
2009-08-09 19:48:54 -04:00
|
|
|
this._searchActive = text != '';
|
2009-09-24 18:34:43 -04:00
|
|
|
this._searchPending = this._searchActive && !searchPreviouslyActive;
|
2009-11-29 17:45:30 -05:00
|
|
|
if (this._searchPending) {
|
|
|
|
this.searchResults.startingSearch();
|
|
|
|
}
|
|
|
|
if (this._searchActive) {
|
|
|
|
this.searchResults.actor.show();
|
|
|
|
this.sectionArea.hide();
|
|
|
|
} else {
|
|
|
|
this.searchResults.actor.hide();
|
|
|
|
this.sectionArea.show();
|
|
|
|
}
|
2009-08-12 17:07:00 -04:00
|
|
|
if (!this._searchActive) {
|
2009-08-13 13:11:21 -04:00
|
|
|
if (this._searchTimeoutId > 0) {
|
2009-08-12 19:37:47 -04:00
|
|
|
Mainloop.source_remove(this._searchTimeoutId);
|
2009-08-13 13:11:21 -04:00
|
|
|
this._searchTimeoutId = 0;
|
|
|
|
}
|
2009-08-12 17:07:00 -04:00
|
|
|
return;
|
|
|
|
}
|
2009-08-12 19:37:47 -04:00
|
|
|
if (this._searchTimeoutId > 0)
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
return;
|
2009-10-13 14:18:47 -04:00
|
|
|
this._searchTimeoutId = Mainloop.timeout_add(150, Lang.bind(this, this._doSearch));
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}));
|
|
|
|
this._searchEntry.entry.connect('activate', Lang.bind(this, function (se) {
|
2009-10-13 14:18:47 -04:00
|
|
|
if (this._searchTimeoutId > 0) {
|
|
|
|
Mainloop.source_remove(this._searchTimeoutId);
|
|
|
|
this._doSearch();
|
|
|
|
}
|
2009-11-29 17:45:30 -05:00
|
|
|
this.searchResults.activateSelected();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
return true;
|
|
|
|
}));
|
|
|
|
this._searchEntry.entry.connect('key-press-event', Lang.bind(this, function (se, e) {
|
2009-09-08 16:58:57 -04:00
|
|
|
let symbol = e.get_key_symbol();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
if (symbol == Clutter.Escape) {
|
2009-08-26 18:46:58 -04:00
|
|
|
// Escape will keep clearing things back to the desktop.
|
|
|
|
// If we have an active search, we remove it.
|
2009-11-29 17:45:30 -05:00
|
|
|
if (this._searchActive)
|
2009-08-09 19:48:54 -04:00
|
|
|
this._searchEntry.reset();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
// Next, if we're in one of the "more" modes or showing the details pane, close them
|
|
|
|
else if (this._activePane != null)
|
|
|
|
this._activePane.close();
|
2009-08-11 07:46:10 -04:00
|
|
|
// Finally, just close the Overview entirely
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
else
|
2009-08-11 07:46:10 -04:00
|
|
|
Main.overview.hide();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
return true;
|
|
|
|
} else if (symbol == Clutter.Up) {
|
|
|
|
if (!this._searchActive)
|
|
|
|
return true;
|
2009-11-29 17:45:30 -05:00
|
|
|
this.searchResults.selectUp();
|
|
|
|
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
return true;
|
|
|
|
} else if (symbol == Clutter.Down) {
|
|
|
|
if (!this._searchActive)
|
|
|
|
return true;
|
2009-11-29 17:45:30 -05:00
|
|
|
|
|
|
|
this.searchResults.selectDown();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}));
|
|
|
|
|
|
|
|
/***** Applications *****/
|
|
|
|
|
2009-08-21 18:21:35 -04:00
|
|
|
this._appsSection = new Section(_("APPLICATIONS"));
|
2009-08-09 19:48:54 -04:00
|
|
|
let appWell = new AppDisplay.AppWell();
|
2009-11-06 16:08:07 -05:00
|
|
|
this._appsSection.content.add(appWell.actor, { expand: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
|
|
|
this._moreAppsPane = null;
|
2009-08-21 18:21:35 -04:00
|
|
|
this._appsSection.header.moreLink.connect('activated', Lang.bind(this, function (link) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
if (this._moreAppsPane == null) {
|
2009-08-09 19:48:54 -04:00
|
|
|
this._moreAppsPane = new ResultPane(this);
|
2009-11-03 18:36:44 -05:00
|
|
|
this._moreAppsPane.packResults(APPS);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this._addPane(this._moreAppsPane);
|
|
|
|
link.setPane(this._moreAppsPane);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
2009-11-06 17:32:23 -05:00
|
|
|
this.sectionArea.add(this._appsSection.actor);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-08-06 09:06:33 -04:00
|
|
|
/***** Places *****/
|
|
|
|
|
2009-08-17 08:53:59 -04:00
|
|
|
/* Translators: This is in the sense of locations for documents,
|
|
|
|
network locations, etc. */
|
2009-08-21 18:21:35 -04:00
|
|
|
this._placesSection = new Section(_("PLACES"), true);
|
2009-10-31 22:25:28 -04:00
|
|
|
let placesDisplay = new PlaceDisplay.DashPlaceDisplay();
|
2009-11-06 16:08:07 -05:00
|
|
|
this._placesSection.content.add(placesDisplay.actor, { expand: true });
|
2009-11-06 17:32:23 -05:00
|
|
|
this.sectionArea.add(this._placesSection.actor);
|
2009-08-06 09:06:33 -04:00
|
|
|
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
/***** Documents *****/
|
|
|
|
|
2009-08-21 18:21:35 -04:00
|
|
|
this._docsSection = new Section(_("RECENT DOCUMENTS"));
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-09-25 14:54:40 -04:00
|
|
|
this._docDisplay = new DocDisplay.DashDocDisplay();
|
2009-11-06 16:08:07 -05:00
|
|
|
this._docsSection.content.add(this._docDisplay.actor, { expand: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
|
2009-08-09 19:48:54 -04:00
|
|
|
this._moreDocsPane = null;
|
2009-08-21 18:21:35 -04:00
|
|
|
this._docsSection.header.moreLink.connect('activated', Lang.bind(this, function (link) {
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
if (this._moreDocsPane == null) {
|
2009-08-09 19:48:54 -04:00
|
|
|
this._moreDocsPane = new ResultPane(this);
|
2009-11-03 18:36:44 -05:00
|
|
|
this._moreDocsPane.packResults(DOCS);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
this._addPane(this._moreDocsPane);
|
|
|
|
link.setPane(this._moreDocsPane);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
2009-09-25 14:54:40 -04:00
|
|
|
this._docDisplay.connect('changed', Lang.bind(this, function () {
|
|
|
|
this._docsSection.header.setMoreLinkVisible(
|
|
|
|
this._docDisplay.actor.get_children().length > 0);
|
|
|
|
}));
|
|
|
|
this._docDisplay.emit('changed');
|
|
|
|
|
2009-11-06 17:32:23 -05:00
|
|
|
this.sectionArea.add(this._docsSection.actor, { expand: true });
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
},
|
|
|
|
|
2009-10-13 14:18:47 -04:00
|
|
|
_doSearch: function () {
|
|
|
|
this._searchTimeoutId = 0;
|
|
|
|
let text = this._searchEntry.getText();
|
2009-11-29 17:45:30 -05:00
|
|
|
this.searchResults.updateSearch(text);
|
2009-11-03 18:36:44 -05:00
|
|
|
|
2009-10-13 14:18:47 -04:00
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
show: function() {
|
|
|
|
global.stage.set_key_focus(this._searchEntry.entry);
|
|
|
|
},
|
|
|
|
|
|
|
|
hide: function() {
|
2009-08-09 19:48:54 -04:00
|
|
|
this._firstSelectAfterOverlayShow = true;
|
|
|
|
this._searchEntry.reset();
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
if (this._activePane != null)
|
|
|
|
this._activePane.close();
|
|
|
|
},
|
|
|
|
|
|
|
|
closePanes: function () {
|
|
|
|
if (this._activePane != null)
|
|
|
|
this._activePane.close();
|
|
|
|
},
|
|
|
|
|
|
|
|
_addPane: function(pane) {
|
|
|
|
pane.connect('open-state-changed', Lang.bind(this, function (pane, isOpen) {
|
|
|
|
if (isOpen) {
|
|
|
|
if (pane != this._activePane && this._activePane != null) {
|
|
|
|
this._activePane.close();
|
|
|
|
}
|
|
|
|
this._activePane = pane;
|
|
|
|
} else if (pane == this._activePane) {
|
|
|
|
this._activePane = null;
|
|
|
|
}
|
|
|
|
}));
|
2009-08-11 07:46:10 -04:00
|
|
|
Main.overview.addPane(pane);
|
Rewrite Dash, remove hardcoded width/height from GenericDisplay
This patch is a near-total rewrite of the Dash. First, the dash
code moves into a separate file, dash.js.
Inside dash.js, the components are more broken up into separate
classes; in particular there's now a Pane class and a MoreLink
class. Instead of each section of the dash, when activated,
attempting to close all N-1 other sections, instead there
is the concept of a single "active pane", and when e.g. activating
the More link for documents, if we know there's an active pane
which happens to be the apps, close it.
Many redundant containers were removed from the dash, and all
manual width, height and x/y offsets are entirely gone. We move
the visual apperance closer to the design by using the view-more.svg,
etc.
To complete the removal of height/width calculations from the dash,
we also had to do the same for GenericDisplay. Also clean up
the positioning inside overlay.js so calculation of children's
positioning is inside a single function that flows from screen.width
and screen.height, so in the future we can stop passing the width
into the Dash constructor and call this once and work on screen
resizing.
2009-07-31 22:12:01 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
Signals.addSignalMethods(Dash.prototype);
|