2010-11-18 04:23:44 -05:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
function SearchResult(provider, metaInfo, terms) {
|
|
|
|
this._init(provider, metaInfo, terms);
|
|
|
|
}
|
|
|
|
|
|
|
|
SearchResult.prototype = {
|
|
|
|
_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;
|
|
|
|
|
|
|
|
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,
|
|
|
|
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-03-08 13:33:57 -05:00
|
|
|
this.actor.label_actor = icon.label;
|
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-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-03-29 07:32:53 -04:00
|
|
|
return this.metaInfo['createIcon'](Main.overview.dash.iconSize);
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
|
|
|
|
function GridSearchResults(provider) {
|
2010-11-18 04:23:44 -05:00
|
|
|
this._init(provider);
|
|
|
|
}
|
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
GridSearchResults.prototype = {
|
2010-11-18 04:23:44 -05:00
|
|
|
__proto__: Search.SearchResultDisplay.prototype,
|
|
|
|
|
|
|
|
_init: function(provider) {
|
|
|
|
Search.SearchResultDisplay.prototype._init.call(this, provider);
|
2010-10-14 08:27:28 -04:00
|
|
|
this._grid = new IconGrid.IconGrid({ rowLimit: MAX_SEARCH_RESULTS_ROWS,
|
|
|
|
xAlign: St.Align.START });
|
|
|
|
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);
|
|
|
|
this.selectionIndex = -1;
|
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() {
|
|
|
|
this._tryAddResults();
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
this._notDisplayedResult = [];
|
|
|
|
this._terms = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
_tryAddResults: function() {
|
|
|
|
let canDisplay = this._grid.childrenInRow(this._width) * MAX_SEARCH_RESULTS_ROWS
|
|
|
|
- this._grid.visibleItemsCount();
|
|
|
|
|
|
|
|
for (let i = Math.min(this._notDisplayedResult.length, canDisplay); i > 0; i--) {
|
|
|
|
let result = this._notDisplayedResult.shift();
|
|
|
|
let meta = this.provider.getResultMeta(result);
|
|
|
|
let display = new SearchResult(this.provider, meta, this._terms);
|
|
|
|
this._grid.addItem(display.actor);
|
|
|
|
}
|
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
|
|
|
},
|
|
|
|
|
|
|
|
renderResults: function(results, terms) {
|
2011-03-21 18:53:07 -04:00
|
|
|
// copy the lists
|
|
|
|
this._notDisplayedResult = results.slice(0);
|
|
|
|
this._terms = terms.slice(0);
|
|
|
|
this._tryAddResults();
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
clear: function () {
|
2011-03-21 18:53:07 -04:00
|
|
|
this._terms = [];
|
|
|
|
this._notDisplayedResult = [];
|
2010-10-14 08:27:28 -04:00
|
|
|
this._grid.removeAll();
|
|
|
|
this.selectionIndex = -1;
|
|
|
|
},
|
|
|
|
|
|
|
|
selectIndex: function (index) {
|
|
|
|
let nVisible = this.getVisibleResultCount();
|
2010-11-18 04:23:44 -05:00
|
|
|
if (this.selectionIndex >= 0) {
|
2010-10-14 08:27:28 -04:00
|
|
|
let prevActor = this._grid.getItemAtIndex(this.selectionIndex);
|
2010-11-18 04:23:44 -05:00
|
|
|
prevActor._delegate.setSelected(false);
|
|
|
|
}
|
|
|
|
this.selectionIndex = -1;
|
|
|
|
if (index >= nVisible)
|
|
|
|
return false;
|
|
|
|
else if (index < 0)
|
|
|
|
return false;
|
2010-10-14 08:27:28 -04:00
|
|
|
let targetActor = this._grid.getItemAtIndex(index);
|
2010-11-18 04:23:44 -05:00
|
|
|
targetActor._delegate.setSelected(true);
|
|
|
|
this.selectionIndex = index;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
activateSelected: function() {
|
2010-10-14 08:27:28 -04:00
|
|
|
if (this.selectionIndex < 0)
|
|
|
|
return;
|
|
|
|
let targetActor = this._grid.getItemAtIndex(this.selectionIndex);
|
2010-11-18 04:23:44 -05:00
|
|
|
targetActor._delegate.activate();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-10-14 08:27:28 -04:00
|
|
|
|
2011-01-17 16:38:47 -05:00
|
|
|
function SearchResults(searchSystem, openSearchSystem) {
|
|
|
|
this._init(searchSystem, openSearchSystem);
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
SearchResults.prototype = {
|
2011-01-17 16:38:47 -05:00
|
|
|
_init: function(searchSystem, openSearchSystem) {
|
2010-11-18 04:23:44 -05:00
|
|
|
this._searchSystem = searchSystem;
|
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._selectedProvider = -1;
|
|
|
|
this._providers = this._searchSystem.getProviders();
|
|
|
|
this._providerMeta = [];
|
|
|
|
for (let i = 0; i < this._providers.length; i++)
|
|
|
|
this.createProviderMeta(this._providers[i]);
|
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();
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateOpenSearchProviderButtons: function() {
|
|
|
|
this._selectedOpenSearchButton = -1;
|
|
|
|
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]);
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateOpenSearchButtonState: function() {
|
|
|
|
for (let i = 0; i < this._openSearchProviders.length; i++) {
|
|
|
|
if (i == this._selectedOpenSearchButton)
|
|
|
|
this._openSearchProviders[i].actor.add_style_pseudo_class('selected');
|
|
|
|
else
|
|
|
|
this._openSearchProviders[i].actor.remove_style_pseudo_class('selected');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_createOpenSearchProviderButton: function(provider) {
|
2011-01-25 16:22:00 -05:00
|
|
|
let button = new St.Button({ style_class: 'dash-search-button',
|
|
|
|
reactive: true,
|
|
|
|
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-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);
|
|
|
|
|
|
|
|
this._providerMeta.push({ actor: providerBox,
|
2011-03-01 18:19:18 -05:00
|
|
|
resultDisplay: resultDisplay });
|
2010-10-14 08:27:28 -04:00
|
|
|
this._content.add(providerBox);
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_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._statusText.hide();
|
|
|
|
this._clearDisplay();
|
2011-01-17 16:38:47 -05:00
|
|
|
this._selectedOpenSearchButton = -1;
|
|
|
|
this._updateOpenSearchButtonState();
|
2010-11-18 04:23:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
startingSearch: function() {
|
|
|
|
this.reset();
|
|
|
|
this._statusText.set_text(_("Searching..."));
|
|
|
|
this._statusText.show();
|
|
|
|
},
|
|
|
|
|
|
|
|
_metaForProvider: function(provider) {
|
|
|
|
return this._providerMeta[this._providers.indexOf(provider)];
|
|
|
|
},
|
|
|
|
|
|
|
|
updateSearch: function (searchString) {
|
|
|
|
let results = this._searchSystem.updateSearch(searchString);
|
|
|
|
|
|
|
|
this._clearDisplay();
|
|
|
|
|
|
|
|
if (results.length == 0) {
|
|
|
|
this._statusText.set_text(_("No matching results."));
|
|
|
|
this._statusText.show();
|
|
|
|
} else {
|
2011-01-24 18:38:16 -05:00
|
|
|
this._selectedOpenSearchButton = -1;
|
|
|
|
this._updateOpenSearchButtonState();
|
2010-11-18 04:23:44 -05:00
|
|
|
this._statusText.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
let terms = this._searchSystem.getTerms();
|
2011-01-17 16:38:47 -05:00
|
|
|
this._openSearchSystem.setSearchTerms(terms);
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2011-04-08 10:48:33 -04:00
|
|
|
// To avoid CSS transitions causing flickering
|
|
|
|
// of the selection when the first search result
|
|
|
|
// stays the same, we hide the content while
|
|
|
|
// filling in the results and setting the initial
|
|
|
|
// selection.
|
|
|
|
this._content.hide();
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2011-01-17 16:38:47 -05:00
|
|
|
if (this._selectedOpenSearchButton == -1)
|
|
|
|
this.selectDown(false);
|
2010-11-18 04:23:44 -05:00
|
|
|
|
2011-04-08 10:48:33 -04:00
|
|
|
this._content.show();
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_modifyActorSelection: function(resultDisplay, up) {
|
|
|
|
let success;
|
|
|
|
let index = resultDisplay.getSelectionIndex();
|
|
|
|
if (up && index == -1)
|
|
|
|
index = resultDisplay.getVisibleResultCount() - 1;
|
|
|
|
else if (up)
|
|
|
|
index = index - 1;
|
|
|
|
else
|
|
|
|
index = index + 1;
|
|
|
|
return resultDisplay.selectIndex(index);
|
|
|
|
},
|
|
|
|
|
|
|
|
selectUp: function(recursing) {
|
2011-01-17 16:38:47 -05:00
|
|
|
if (this._selectedOpenSearchButton == -1) {
|
|
|
|
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;
|
|
|
|
}
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
|
|
|
}
|
2011-01-17 16:38:47 -05:00
|
|
|
|
|
|
|
if (this._selectedOpenSearchButton == -1)
|
|
|
|
this._selectedOpenSearchButton = this._openSearchProviders.length;
|
|
|
|
this._selectedOpenSearchButton--;
|
|
|
|
this._updateOpenSearchButtonState();
|
|
|
|
if (this._selectedOpenSearchButton >= 0)
|
|
|
|
return;
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
if (this._providerMeta.length > 0 && !recursing) {
|
|
|
|
this._selectedProvider = this._providerMeta.length - 1;
|
|
|
|
this.selectUp(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
selectDown: function(recursing) {
|
|
|
|
let current = this._selectedProvider;
|
2011-01-17 16:38:47 -05:00
|
|
|
if (this._selectedOpenSearchButton == -1) {
|
|
|
|
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;
|
|
|
|
}
|
2010-11-18 04:23:44 -05:00
|
|
|
}
|
|
|
|
}
|
2011-01-17 16:38:47 -05:00
|
|
|
this._selectedOpenSearchButton++;
|
|
|
|
|
|
|
|
if (this._selectedOpenSearchButton < this._openSearchProviders.length) {
|
|
|
|
this._updateOpenSearchButtonState();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._selectedOpenSearchButton = -1;
|
|
|
|
this._updateOpenSearchButtonState();
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
if (this._providerMeta.length > 0 && !recursing) {
|
|
|
|
this._selectedProvider = 0;
|
|
|
|
this.selectDown(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
activateSelected: function() {
|
2011-01-17 16:38:47 -05:00
|
|
|
if (this._selectedOpenSearchButton != -1) {
|
|
|
|
let provider = this._openSearchProviders[this._selectedOpenSearchButton];
|
|
|
|
this._openSearchSystem.activateResult(provider.id);
|
|
|
|
Main.overview.hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-18 04:23:44 -05:00
|
|
|
let current = this._selectedProvider;
|
|
|
|
if (current < 0)
|
|
|
|
return;
|
|
|
|
let meta = this._providerMeta[current];
|
|
|
|
let resultDisplay = meta.resultDisplay;
|
|
|
|
resultDisplay.activateSelected();
|
|
|
|
Main.overview.hide();
|
|
|
|
}
|
|
|
|
};
|