2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2010-11-18 04:23:44 -05:00
|
|
|
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
const Lang = imports.lang;
|
2010-10-14 08:27:28 -04:00
|
|
|
const Gtk = imports.gi.Gtk;
|
2011-03-21 18:53:07 -04:00
|
|
|
const Meta = imports.gi.Meta;
|
2010-10-14 08:27:28 -04:00
|
|
|
const St = imports.gi.St;
|
2010-11-18 04:23:44 -05:00
|
|
|
|
|
|
|
const DND = imports.ui.dnd;
|
2010-10-14 08:27:28 -04:00
|
|
|
const IconGrid = imports.ui.iconGrid;
|
2010-11-18 04:23:44 -05:00
|
|
|
const Main = imports.ui.main;
|
2011-01-21 17:49:03 -05:00
|
|
|
const Overview = imports.ui.overview;
|
2010-11-18 04:23:44 -05:00
|
|
|
const Search = imports.ui.search;
|
|
|
|
|
2011-02-25 16:53:53 -05:00
|
|
|
const MAX_SEARCH_RESULTS_ROWS = 1;
|
2010-11-18 04:23:44 -05:00
|
|
|
|
|
|
|
|
2011-11-20 12:56:27 -05:00
|
|
|
const SearchResult = new Lang.Class({
|
|
|
|
Name: 'SearchResult',
|
2010-11-18 04:23:44 -05:00
|
|
|
|
|
|
|
_init: function(provider, metaInfo, terms) {
|
|
|
|
this.provider = provider;
|
|
|
|
this.metaInfo = metaInfo;
|
2011-01-25 16:22:00 -05:00
|
|
|
this.actor = new St.Button({ style_class: 'search-result',
|
|
|
|
reactive: true,
|
|
|
|
x_align: St.Align.START,
|
|
|
|
y_fill: true });
|
2010-11-18 04:23:44 -05:00
|
|
|
this.actor._delegate = this;
|
2011-05-20 07:57:38 -04:00
|
|
|
this._dragActorSource = null;
|
2010-11-18 04:23:44 -05:00
|
|
|
|
|
|
|
let content = provider.createResultActor(metaInfo, terms);
|
|
|
|
if (content == null) {
|
2010-10-14 08:27:28 -04:00
|
|
|
content = new St.Bin({ style_class: 'search-result-content',
|
|
|
|
reactive: true,
|
2011-11-11 23:40:56 -05:00
|
|
|
can_focus: true,
|
2010-10-14 08:27:28 -04:00
|
|
|
track_hover: true });
|
|
|
|
let icon = new IconGrid.BaseIcon(this.metaInfo['name'],
|
2011-02-28 14:36:52 -05:00
|
|
|
{ createIcon: this.metaInfo['createIcon'] });
|
2010-10-14 08:27:28 -04:00
|
|
|
content.set_child(icon.actor);
|
2011-05-20 07:57:38 -04:00
|
|
|
this._dragActorSource = icon.icon;
|
2011-03-08 13:33:57 -05:00
|
|
|
this.actor.label_actor = icon.label;
|
2011-05-20 07:57:38 -04:00
|
|
|
} else {
|
|
|
|
if (content._delegate && content._delegate.getDragActorSource)
|
|
|
|
this._dragActorSource = content._delegate.getDragActorSource();
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
|
|
|
this._content = content;
|
|
|
|
this.actor.set_child(content);
|
|
|
|
|
|
|
|
this.actor.connect('clicked', Lang.bind(this, this._onResultClicked));
|
|
|
|
|
|
|
|
let draggable = DND.makeDraggable(this.actor);
|
|
|
|
draggable.connect('drag-begin',
|
|
|
|
Lang.bind(this, function() {
|
|
|
|
Main.overview.beginItemDrag(this);
|
|
|
|
}));
|
2011-03-09 10:40:48 -05:00
|
|
|
draggable.connect('drag-cancelled',
|
|
|
|
Lang.bind(this, function() {
|
|
|
|
Main.overview.cancelledItemDrag(this);
|
|
|
|
}));
|
2010-11-18 04:23:44 -05:00
|
|
|
draggable.connect('drag-end',
|
|
|
|
Lang.bind(this, function() {
|
|
|
|
Main.overview.endItemDrag(this);
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
setSelected: function(selected) {
|
|
|
|
if (selected)
|
|
|
|
this._content.add_style_pseudo_class('selected');
|
|
|
|
else
|
|
|
|
this._content.remove_style_pseudo_class('selected');
|
|
|
|
},
|
|
|
|
|
|
|
|
activate: function() {
|
|
|
|
this.provider.activateResult(this.metaInfo.id);
|
|
|
|
Main.overview.toggle();
|
|
|
|
},
|
|
|
|
|
2011-01-25 16:22:00 -05:00
|
|
|
_onResultClicked: function(actor) {
|
2010-11-18 04:23:44 -05:00
|
|
|
this.activate();
|
|
|
|
},
|
|
|
|
|
|
|
|
getDragActorSource: function() {
|
2011-05-20 07:57:38 -04:00
|
|
|
if (this._dragActorSource)
|
|
|
|
return this._dragActorSource;
|
2011-03-29 07:32:53 -04:00
|
|
|
// not exactly right, but alignment problems are hard to notice
|
|
|
|
return this._content;
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
getDragActor: function(stageX, stageY) {
|
2011-08-28 09:35:13 -04:00
|
|
|
return this.metaInfo['createIcon'](Main.overview.dashIconSize);
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
2011-01-30 16:09:58 -05:00
|
|
|
shellWorkspaceLaunch: function(params) {
|
2010-11-18 04:23:44 -05:00
|
|
|
if (this.provider.dragActivateResult)
|
2011-01-30 16:09:58 -05:00
|
|
|
this.provider.dragActivateResult(this.metaInfo.id, params);
|
2010-11-18 04:23:44 -05:00
|
|
|
else
|
2011-01-30 16:09:58 -05:00
|
|
|
this.provider.activateResult(this.metaInfo.id, params);
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
2011-11-20 12:56:27 -05:00
|
|
|
});
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
|
2011-11-20 11:07:14 -05:00
|
|
|
const GridSearchResults = new Lang.Class({
|
|
|
|
Name: 'GridSearchResults',
|
|
|
|
Extends: Search.SearchResultDisplay,
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2011-08-28 16:14:15 -04:00
|
|
|
_init: function(provider, grid) {
|
2011-11-20 11:07:14 -05:00
|
|
|
this.parent(provider);
|
|
|
|
|
2011-08-28 16:14:15 -04:00
|
|
|
this._grid = grid || new IconGrid.IconGrid({ rowLimit: MAX_SEARCH_RESULTS_ROWS,
|
|
|
|
xAlign: St.Align.START });
|
2010-10-14 08:27:28 -04:00
|
|
|
this.actor = new St.Bin({ x_align: St.Align.START });
|
2011-03-21 18:53:07 -04:00
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
this.actor.set_child(this._grid.actor);
|
2011-03-21 18:53:07 -04:00
|
|
|
this._width = 0;
|
|
|
|
this.actor.connect('notify::width', Lang.bind(this, function() {
|
|
|
|
this._width = this.actor.width;
|
|
|
|
Meta.later_add(Meta.LaterType.BEFORE_REDRAW, Lang.bind(this, function() {
|
2012-02-17 13:39:25 -05:00
|
|
|
let results = this.getResultsForDisplay();
|
|
|
|
if (results.length == 0)
|
|
|
|
return;
|
|
|
|
|
2012-02-21 13:53:25 -05:00
|
|
|
if (provider.async) {
|
|
|
|
provider.getResultMetasAsync(results,
|
|
|
|
Lang.bind(this, this.renderResults));
|
|
|
|
} else {
|
|
|
|
let metas = provider.getResultMetas(results);
|
|
|
|
this.renderResults(metas);
|
|
|
|
}
|
2011-03-21 18:53:07 -04:00
|
|
|
}));
|
|
|
|
}));
|
|
|
|
this._notDisplayedResult = [];
|
|
|
|
this._terms = [];
|
2012-02-21 13:53:25 -05:00
|
|
|
this._pendingClear = false;
|
2011-03-21 18:53:07 -04:00
|
|
|
},
|
|
|
|
|
2012-02-17 13:39:25 -05:00
|
|
|
getResultsForDisplay: function() {
|
2012-02-21 13:53:25 -05:00
|
|
|
let alreadyVisible = this._pendingClear ? 0 : this._grid.visibleItemsCount();
|
2011-03-21 18:53:07 -04:00
|
|
|
let canDisplay = this._grid.childrenInRow(this._width) * MAX_SEARCH_RESULTS_ROWS
|
2012-02-21 13:53:25 -05:00
|
|
|
- alreadyVisible;
|
2011-03-21 18:53:07 -04:00
|
|
|
|
2012-02-17 10:39:27 -05:00
|
|
|
let numResults = Math.min(this._notDisplayedResult.length, canDisplay);
|
2012-02-17 13:39:25 -05:00
|
|
|
|
|
|
|
return this._notDisplayedResult.splice(0, numResults);
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
getVisibleResultCount: function() {
|
2010-10-14 08:27:28 -04:00
|
|
|
return this._grid.visibleItemsCount();
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
2012-02-17 13:39:25 -05:00
|
|
|
setResults: function(results, terms) {
|
2011-03-21 18:53:07 -04:00
|
|
|
// copy the lists
|
|
|
|
this._notDisplayedResult = results.slice(0);
|
|
|
|
this._terms = terms.slice(0);
|
2012-02-21 13:53:25 -05:00
|
|
|
this._pendingClear = true;
|
2012-02-17 13:39:25 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
renderResults: function(metas) {
|
|
|
|
for (let i = 0; i < metas.length; i++) {
|
|
|
|
let display = new SearchResult(this.provider, metas[i], this._terms);
|
|
|
|
this._grid.addItem(display.actor);
|
|
|
|
}
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
clear: function () {
|
|
|
|
this._grid.removeAll();
|
2012-02-21 13:53:25 -05:00
|
|
|
this._pendingClear = false;
|
2010-10-14 08:27:28 -04:00
|
|
|
},
|
|
|
|
|
2011-11-13 22:13:26 -05:00
|
|
|
getFirstResult: function() {
|
|
|
|
if (this.getVisibleResultCount() > 0)
|
|
|
|
return this._grid.getItemAtIndex(0)._delegate;
|
|
|
|
else
|
|
|
|
return null;
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
2011-11-20 11:07:14 -05:00
|
|
|
});
|
2010-10-14 08:27:28 -04:00
|
|
|
|
2011-11-20 12:56:27 -05:00
|
|
|
const SearchResults = new Lang.Class({
|
|
|
|
Name: 'SearchResults',
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2011-01-17 16:38:47 -05:00
|
|
|
_init: function(searchSystem, openSearchSystem) {
|
2010-11-18 04:23:44 -05:00
|
|
|
this._searchSystem = searchSystem;
|
2011-07-24 06:29:36 -04:00
|
|
|
this._searchSystem.connect('search-updated', Lang.bind(this, this._updateCurrentResults));
|
|
|
|
this._searchSystem.connect('search-completed', Lang.bind(this, this._updateResults));
|
2011-01-17 16:38:47 -05:00
|
|
|
this._openSearchSystem = openSearchSystem;
|
|
|
|
|
|
|
|
this.actor = new St.BoxLayout({ name: 'searchResults',
|
|
|
|
vertical: true });
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
this._content = new St.BoxLayout({ name: 'searchResultsContent',
|
|
|
|
vertical: true });
|
|
|
|
|
|
|
|
let scrollView = new St.ScrollView({ x_fill: true,
|
|
|
|
y_fill: false,
|
2011-06-03 17:44:57 -04:00
|
|
|
style_class: 'vfade' });
|
2010-10-14 08:27:28 -04:00
|
|
|
scrollView.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
|
|
|
|
scrollView.add_actor(this._content);
|
|
|
|
|
2011-01-17 16:38:47 -05:00
|
|
|
this.actor.add(scrollView, { x_fill: true,
|
|
|
|
y_fill: false,
|
|
|
|
expand: true,
|
|
|
|
x_align: St.Align.START,
|
|
|
|
y_align: St.Align.START });
|
2011-01-21 17:49:03 -05:00
|
|
|
this.actor.connect('notify::mapped', Lang.bind(this,
|
|
|
|
function() {
|
|
|
|
if (!this.actor.mapped)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let adjustment = scrollView.vscroll.adjustment;
|
|
|
|
let direction = Overview.SwipeScrollDirection.VERTICAL;
|
|
|
|
Main.overview.setScrollAdjustment(adjustment, direction);
|
|
|
|
}));
|
2010-10-14 08:27:28 -04:00
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
this._statusText = new St.Label({ style_class: 'search-statustext' });
|
2010-10-14 08:27:28 -04:00
|
|
|
this._content.add(this._statusText);
|
2010-11-18 04:23:44 -05:00
|
|
|
this._providers = this._searchSystem.getProviders();
|
|
|
|
this._providerMeta = [];
|
2011-07-24 06:29:36 -04:00
|
|
|
this._providerMetaResults = {};
|
|
|
|
for (let i = 0; i < this._providers.length; i++) {
|
2010-11-18 04:23:44 -05:00
|
|
|
this.createProviderMeta(this._providers[i]);
|
2011-07-24 06:29:36 -04:00
|
|
|
this._providerMetaResults[this.providers[i].title] = [];
|
|
|
|
}
|
2011-01-17 16:38:47 -05:00
|
|
|
this._searchProvidersBox = new St.BoxLayout({ style_class: 'search-providers-box' });
|
|
|
|
this.actor.add(this._searchProvidersBox);
|
|
|
|
|
|
|
|
this._openSearchProviders = [];
|
|
|
|
this._openSearchSystem.connect('changed', Lang.bind(this, this._updateOpenSearchProviderButtons));
|
|
|
|
this._updateOpenSearchProviderButtons();
|
2011-11-13 22:13:26 -05:00
|
|
|
|
|
|
|
this._highlightDefault = false;
|
|
|
|
this._defaultResult = null;
|
2011-01-17 16:38:47 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateOpenSearchProviderButtons: function() {
|
|
|
|
for (let i = 0; i < this._openSearchProviders.length; i++)
|
|
|
|
this._openSearchProviders[i].actor.destroy();
|
|
|
|
this._openSearchProviders = this._openSearchSystem.getProviders();
|
|
|
|
for (let i = 0; i < this._openSearchProviders.length; i++)
|
|
|
|
this._createOpenSearchProviderButton(this._openSearchProviders[i]);
|
|
|
|
},
|
|
|
|
|
|
|
|
_createOpenSearchProviderButton: function(provider) {
|
2011-01-25 16:22:00 -05:00
|
|
|
let button = new St.Button({ style_class: 'dash-search-button',
|
|
|
|
reactive: true,
|
2011-11-11 23:40:56 -05:00
|
|
|
can_focus: true,
|
2011-01-25 16:22:00 -05:00
|
|
|
x_fill: true,
|
|
|
|
y_align: St.Align.MIDDLE });
|
2011-01-17 16:38:47 -05:00
|
|
|
let bin = new St.Bin({ x_fill: false,
|
|
|
|
x_align:St.Align.MIDDLE });
|
2011-01-25 16:22:00 -05:00
|
|
|
button.connect('clicked', Lang.bind(this, function() {
|
2011-01-17 16:38:47 -05:00
|
|
|
this._openSearchSystem.activateResult(provider.id);
|
|
|
|
}));
|
|
|
|
let title = new St.Label({ text: provider.name,
|
|
|
|
style_class: 'dash-search-button-label' });
|
|
|
|
|
2011-03-08 13:33:57 -05:00
|
|
|
button.label_actor = title;
|
2011-01-17 16:38:47 -05:00
|
|
|
bin.set_child(title);
|
2011-01-25 16:22:00 -05:00
|
|
|
button.set_child(bin);
|
|
|
|
provider.actor = button;
|
2011-01-17 16:38:47 -05:00
|
|
|
|
2011-11-13 22:13:26 -05:00
|
|
|
button.setSelected = function(selected) {
|
|
|
|
if (selected)
|
|
|
|
button.add_style_pseudo_class('selected');
|
|
|
|
else
|
|
|
|
button.remove_style_pseudo_class('selected');
|
|
|
|
};
|
|
|
|
button.activate = Lang.bind(this, function() {
|
|
|
|
this._openSearchSystem.activateResult(provider.id);
|
|
|
|
});
|
|
|
|
|
2011-01-25 16:22:00 -05:00
|
|
|
this._searchProvidersBox.add(button);
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
createProviderMeta: function(provider) {
|
|
|
|
let providerBox = new St.BoxLayout({ style_class: 'search-section',
|
|
|
|
vertical: true });
|
2011-03-01 18:15:17 -05:00
|
|
|
let title = new St.Label({ style_class: 'search-section-header',
|
|
|
|
text: provider.title });
|
|
|
|
providerBox.add(title);
|
2010-11-18 04:23:44 -05:00
|
|
|
|
|
|
|
let resultDisplayBin = new St.Bin({ style_class: 'search-section-results',
|
|
|
|
x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
providerBox.add(resultDisplayBin, { expand: true });
|
|
|
|
let resultDisplay = provider.createResultContainerActor();
|
|
|
|
if (resultDisplay == null) {
|
2010-10-14 08:27:28 -04:00
|
|
|
resultDisplay = new GridSearchResults(provider);
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
|
|
|
resultDisplayBin.set_child(resultDisplay.actor);
|
|
|
|
|
2011-08-28 07:20:37 -04:00
|
|
|
this._providerMeta.push({ provider: provider,
|
|
|
|
actor: providerBox,
|
2012-02-21 13:53:25 -05:00
|
|
|
resultDisplay: resultDisplay,
|
|
|
|
hasPendingResults: false });
|
2010-10-14 08:27:28 -04:00
|
|
|
this._content.add(providerBox);
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
2011-08-28 07:20:37 -04:00
|
|
|
destroyProviderMeta: function(provider) {
|
|
|
|
for (let i=0; i < this._providerMeta.length; i++) {
|
|
|
|
let meta = this._providerMeta[i];
|
|
|
|
if (meta.provider == provider) {
|
|
|
|
meta.actor.destroy();
|
|
|
|
this._providerMeta.splice(i, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
_clearDisplay: function() {
|
|
|
|
this._visibleResultsCount = 0;
|
|
|
|
for (let i = 0; i < this._providerMeta.length; i++) {
|
|
|
|
let meta = this._providerMeta[i];
|
|
|
|
meta.resultDisplay.clear();
|
|
|
|
meta.actor.hide();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-02-21 13:53:25 -05:00
|
|
|
_clearDisplayForProvider: function(provider) {
|
|
|
|
let meta = this._metaForProvider(provider);
|
2011-07-24 06:29:36 -04:00
|
|
|
meta.resultDisplay.clear();
|
|
|
|
meta.actor.hide();
|
|
|
|
},
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
reset: function() {
|
|
|
|
this._searchSystem.reset();
|
|
|
|
this._statusText.hide();
|
|
|
|
this._clearDisplay();
|
|
|
|
},
|
|
|
|
|
|
|
|
startingSearch: function() {
|
|
|
|
this.reset();
|
|
|
|
this._statusText.set_text(_("Searching..."));
|
|
|
|
this._statusText.show();
|
|
|
|
},
|
|
|
|
|
2011-07-24 06:29:36 -04:00
|
|
|
doSearch: function (searchString) {
|
|
|
|
this._searchSystem.updateSearch(searchString);
|
|
|
|
},
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
_metaForProvider: function(provider) {
|
|
|
|
return this._providerMeta[this._providers.indexOf(provider)];
|
|
|
|
},
|
|
|
|
|
2012-02-21 13:53:25 -05:00
|
|
|
_maybeSetInitialSelection: function() {
|
2011-11-13 22:13:26 -05:00
|
|
|
let newDefaultResult = null;
|
|
|
|
|
2012-02-21 13:53:25 -05:00
|
|
|
for (let i = 0; i < this._providerMeta.length; i++) {
|
|
|
|
let meta = this._providerMeta[i];
|
|
|
|
if (meta.hasPendingResults)
|
|
|
|
return;
|
|
|
|
|
2011-11-13 22:13:26 -05:00
|
|
|
let firstResult = meta.resultDisplay.getFirstResult();
|
|
|
|
if (firstResult && firstResult.actor.visible) {
|
|
|
|
newDefaultResult = firstResult;
|
2012-02-21 13:53:25 -05:00
|
|
|
break; // select this one!
|
2011-11-13 22:13:26 -05:00
|
|
|
}
|
2012-02-21 13:53:25 -05:00
|
|
|
}
|
|
|
|
|
2011-11-13 22:13:26 -05:00
|
|
|
if (!newDefaultResult)
|
|
|
|
newDefaultResult = this._searchProvidersBox.get_first_child();
|
|
|
|
|
|
|
|
if (newDefaultResult != this._defaultResult) {
|
|
|
|
if (this._defaultResult)
|
|
|
|
this._defaultResult.setSelected(false);
|
|
|
|
if (newDefaultResult)
|
|
|
|
newDefaultResult.setSelected(this._highlightDefault);
|
|
|
|
|
|
|
|
this._defaultResult = newDefaultResult;
|
|
|
|
}
|
2012-02-21 13:53:25 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateCurrentResults: function(searchSystem, results) {
|
2011-07-24 06:29:36 -04:00
|
|
|
let terms = searchSystem.getTerms();
|
2012-02-21 13:53:25 -05:00
|
|
|
let [provider, providerResults] = results;
|
2011-07-24 06:29:36 -04:00
|
|
|
let meta = this._metaForProvider(provider);
|
2012-02-21 13:53:25 -05:00
|
|
|
meta.hasPendingResults = false;
|
|
|
|
this._updateProviderResults(provider, providerResults, terms);
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateProviderResults: function(provider, providerResults, terms) {
|
|
|
|
let meta = this._metaForProvider(provider);
|
|
|
|
if (providerResults.length == 0) {
|
|
|
|
this._clearDisplayForProvider(provider);
|
|
|
|
meta.resultDisplay.setResults([], []);
|
|
|
|
} else {
|
|
|
|
this._providerMetaResults[provider.title] = providerResults;
|
|
|
|
meta.resultDisplay.setResults(providerResults, terms);
|
|
|
|
let results = meta.resultDisplay.getResultsForDisplay();
|
|
|
|
|
|
|
|
if (provider.async) {
|
|
|
|
provider.getResultMetasAsync(results, Lang.bind(this,
|
|
|
|
function(metas) {
|
|
|
|
this._clearDisplayForProvider(provider);
|
|
|
|
meta.actor.show();
|
|
|
|
this._content.hide();
|
|
|
|
meta.resultDisplay.renderResults(metas);
|
|
|
|
this._maybeSetInitialSelection();
|
|
|
|
this._content.show();
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
let metas = provider.getResultMetas(results);
|
|
|
|
this._clearDisplayForProvider(provider);
|
|
|
|
meta.actor.show();
|
|
|
|
meta.resultDisplay.renderResults(metas);
|
|
|
|
}
|
|
|
|
}
|
2011-07-24 06:29:36 -04:00
|
|
|
},
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2011-07-24 06:29:36 -04:00
|
|
|
_updateResults: function(searchSystem, results) {
|
2010-11-18 04:23:44 -05:00
|
|
|
if (results.length == 0) {
|
|
|
|
this._statusText.set_text(_("No matching results."));
|
|
|
|
this._statusText.show();
|
|
|
|
} else {
|
|
|
|
this._statusText.hide();
|
|
|
|
}
|
|
|
|
|
2011-07-24 06:29:36 -04:00
|
|
|
let terms = searchSystem.getTerms();
|
2011-01-17 16:38:47 -05:00
|
|
|
this._openSearchSystem.setSearchTerms(terms);
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2011-11-13 22:13:26 -05:00
|
|
|
// To avoid CSS transitions causing flickering when the first search
|
|
|
|
// result stays the same, we hide the content while filling in the
|
|
|
|
// results.
|
2011-04-08 10:48:33 -04:00
|
|
|
this._content.hide();
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
for (let i = 0; i < results.length; i++) {
|
|
|
|
let [provider, providerResults] = results[i];
|
2012-02-21 13:53:25 -05:00
|
|
|
let meta = this._metaForProvider(provider);
|
|
|
|
meta.hasPendingResults = provider.async;
|
|
|
|
if (!meta.hasPendingResults)
|
|
|
|
this._updateProviderResults(provider, providerResults, terms);
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
|
|
|
|
2012-02-21 13:53:25 -05:00
|
|
|
this._maybeSetInitialSelection();
|
2011-04-08 10:48:33 -04:00
|
|
|
this._content.show();
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2011-11-13 22:13:26 -05:00
|
|
|
activateDefault: function() {
|
|
|
|
if (this._defaultResult && this._defaultResult.actor.visible)
|
|
|
|
this._defaultResult.activate();
|
|
|
|
},
|
|
|
|
|
|
|
|
highlightDefault: function(highlight) {
|
|
|
|
this._highlightDefault = highlight;
|
|
|
|
if (this._defaultResult)
|
|
|
|
this._defaultResult.setSelected(highlight);
|
|
|
|
},
|
|
|
|
|
|
|
|
navigateFocus: function(direction) {
|
|
|
|
if (direction == Gtk.DirectionType.TAB_FORWARD && this._defaultResult) {
|
|
|
|
// The default result appears focused, so navigate directly to the
|
|
|
|
// next result.
|
|
|
|
this.actor.navigate_focus(null, direction, false);
|
|
|
|
this.actor.navigate_focus(global.stage.key_focus, direction, false);
|
|
|
|
} else {
|
|
|
|
this.actor.navigate_focus(null, direction, false);
|
|
|
|
}
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
2011-11-20 12:56:27 -05:00
|
|
|
});
|