Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchResultView.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchResultView.java251
1 files changed, 0 insertions, 251 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchResultView.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchResultView.java
deleted file mode 100644
index 05bf3d411..000000000
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchResultView.java
+++ /dev/null
@@ -1,251 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003 - 2006 University Of British Columbia and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * University Of British Columbia - initial API and implementation
- *******************************************************************************/
-package org.eclipse.mylar.internal.bugzilla.ui.search;
-
-import org.eclipse.core.resources.IMarker;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IAdaptable;
-import org.eclipse.jface.action.IMenuManager;
-import org.eclipse.jface.action.MenuManager;
-import org.eclipse.jface.util.IPropertyChangeListener;
-import org.eclipse.jface.util.PropertyChangeEvent;
-import org.eclipse.jface.viewers.DecoratingLabelProvider;
-import org.eclipse.jface.viewers.StructuredViewer;
-import org.eclipse.jface.viewers.TableViewer;
-import org.eclipse.jface.viewers.TreeViewer;
-import org.eclipse.mylar.internal.bugzilla.core.BugzillaPlugin;
-import org.eclipse.mylar.internal.bugzilla.core.IBugzillaConstants;
-import org.eclipse.mylar.internal.bugzilla.core.search.BugzillaContentProvider;
-import org.eclipse.mylar.internal.bugzilla.core.search.BugzillaIdSearchSorter;
-import org.eclipse.mylar.internal.bugzilla.core.search.BugzillaLabelProvider;
-import org.eclipse.mylar.internal.bugzilla.core.search.BugzillaPrioritySearchSorter;
-import org.eclipse.mylar.internal.bugzilla.core.search.BugzillaSeveritySearchSorter;
-import org.eclipse.mylar.internal.bugzilla.core.search.BugzillaStateSearchSorter;
-import org.eclipse.mylar.internal.bugzilla.ui.BugzillaTableContentProvider;
-import org.eclipse.mylar.internal.bugzilla.ui.BugzillaUITools;
-import org.eclipse.mylar.internal.bugzilla.ui.actions.BugzillaSortAction;
-import org.eclipse.mylar.internal.bugzilla.ui.actions.OpenBugsAction;
-import org.eclipse.search.internal.ui.SearchMessages;
-import org.eclipse.search.internal.ui.SearchPlugin;
-import org.eclipse.search.internal.ui.SearchPreferencePage;
-import org.eclipse.search.internal.ui.util.ExceptionHandler;
-import org.eclipse.search.ui.IContextMenuConstants;
-import org.eclipse.search.ui.text.AbstractTextSearchViewPage;
-import org.eclipse.search.ui.text.Match;
-import org.eclipse.ui.IPageLayout;
-import org.eclipse.ui.PartInitException;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.part.IShowInTargetList;
-
-/**
- * Displays the results of a Bugzilla search.
- *
- * @see org.eclipse.search.ui.text.AbstractTextSearchViewPage
- */
-public class BugzillaSearchResultView extends AbstractTextSearchViewPage implements IAdaptable {
-
- // The categories to sort bug results by
- public static final int ORDER_ID = 1;
-
- public static final int ORDER_SEVERITY = 2;
-
- public static final int ORDER_PRIORITY = 3;
-
- public static final int ORDER_STATUS = 4;
-
- public static final int ORDER_DEFAULT = ORDER_ID;
-
- private static final String KEY_SORTING = IBugzillaConstants.PLUGIN_ID + ".search.resultpage.sorting"; //$NON-NLS-1$
-
- private BugzillaContentProvider bugContentProvider;
-
- private int bugCurrentSortOrder;
-
- private BugzillaSortAction bugSortByIDAction;
-
- private BugzillaSortAction bugSortBySeverityAction;
-
- private BugzillaSortAction bugSortByPriorityAction;
-
- private BugzillaSortAction bugSortByStatusAction;
-
-// private AddFavoriteAction addToFavoritesAction;
-
- private OpenBugsAction openInEditorAction;
-
- private static final String[] SHOW_IN_TARGETS = new String[] { IPageLayout.ID_RES_NAV };
-
- private static final IShowInTargetList SHOW_IN_TARGET_LIST = new IShowInTargetList() {
- public String[] getShowInTargetIds() {
- return SHOW_IN_TARGETS;
- }
- };
-
- private IPropertyChangeListener bugPropertyChangeListener;
-
- /**
- * Constructor
- */
- public BugzillaSearchResultView() {
- // Only use the table layout.
- super(FLAG_LAYOUT_FLAT);
-
- bugSortByIDAction = new BugzillaSortAction("Bug ID", this, ORDER_ID);
- bugSortBySeverityAction = new BugzillaSortAction("Bug severity", this, ORDER_SEVERITY);
- bugSortByPriorityAction = new BugzillaSortAction("Bug priority", this, ORDER_PRIORITY);
- bugSortByStatusAction = new BugzillaSortAction("Bug status", this, ORDER_STATUS);
- bugCurrentSortOrder = ORDER_DEFAULT;
-
-// addToFavoritesAction = new AddFavoriteAction("Mark Result as Favorite", this);
- openInEditorAction = new OpenBugsAction("Open Bug in Editor", this);
-
- bugPropertyChangeListener = new IPropertyChangeListener() {
- public void propertyChange(PropertyChangeEvent event) {
- if (SearchPreferencePage.LIMIT_TABLE.equals(event.getProperty())
- || SearchPreferencePage.LIMIT_TABLE_TO.equals(event.getProperty()))
- if (getViewer() instanceof TableViewer) {
- getViewPart().updateLabel();
- getViewer().refresh();
- }
- }
- };
- SearchPlugin.getDefault().getPreferenceStore().addPropertyChangeListener(bugPropertyChangeListener);
- }
-
- @Override
- protected void elementsChanged(Object[] objects) {
- if (bugContentProvider != null) {
- bugContentProvider.elementsChanged(objects);
- }
- }
-
- @Override
- protected void clear() {
- if (bugContentProvider != null) {
- bugContentProvider.clear();
- }
- }
-
- // Allows the inherited method "getViewer" to be accessed publicly.
- @Override
- public StructuredViewer getViewer() {
- return super.getViewer();
- }
-
- @Override
- protected void configureTreeViewer(TreeViewer viewer) {
- // The tree layout is not used, so this function does not need to do
- // anything.
- }
-
- @Override
- protected void configureTableViewer(TableViewer viewer) {
- viewer.setUseHashlookup(true);
- viewer.setLabelProvider(new DecoratingLabelProvider(new BugzillaLabelProvider(), PlatformUI.getWorkbench()
- .getDecoratorManager().getLabelDecorator()));
- viewer.setContentProvider(new BugzillaTableContentProvider(this));
-
- // Set the order when the search view is loading so that the items are
- // sorted right away
- setSortOrder(bugCurrentSortOrder);
-
- bugContentProvider = (BugzillaContentProvider) viewer.getContentProvider();
- }
-
- /**
- * Sets the new sorting category, and reorders all of the bug reports.
- *
- * @param sortOrder
- * The new category to sort bug reports by
- */
- public void setSortOrder(int sortOrder) {
- bugCurrentSortOrder = sortOrder;
- StructuredViewer viewer = getViewer();
-
- switch (sortOrder) {
- case ORDER_ID:
- viewer.setSorter(new BugzillaIdSearchSorter());
- break;
- case ORDER_PRIORITY:
- viewer.setSorter(new BugzillaPrioritySearchSorter());
- break;
- case ORDER_SEVERITY:
- viewer.setSorter(new BugzillaSeveritySearchSorter());
- break;
- case ORDER_STATUS:
- viewer.setSorter(new BugzillaStateSearchSorter());
- break;
- default:
- // If the setting is not one of the four valid ones,
- // use the default order setting.
- sortOrder = ORDER_DEFAULT;
- viewer.setSorter(new BugzillaIdSearchSorter());
- break;
- }
-
- getSettings().put(KEY_SORTING, bugCurrentSortOrder);
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
- */
- public Object getAdapter(Class adapter) {
- if (IShowInTargetList.class.equals(adapter)) {
- return SHOW_IN_TARGET_LIST;
- }
- return null;
- }
-
- @Override
- protected void showMatch(Match match, int currentOffset, int currentLength, boolean activate)
- throws PartInitException {
- try {
- Object element = getCurrentMatch().getElement();
- if (element instanceof IMarker) {
-
- String repositoryUrl = (String) ((IMarker) element)
- .getAttribute(IBugzillaConstants.HIT_MARKER_ATTR_REPOSITORY);
- Integer id = (Integer) ((IMarker) element).getAttribute(IBugzillaConstants.HIT_MARKER_ATTR_ID);
- BugzillaUITools.show(repositoryUrl, id.intValue());
- }
- } catch (CoreException e) {
- // if an error occurs, handle and log it
- ExceptionHandler.handle(e, SearchMessages.Search_Error_search_title,
- SearchMessages.Search_Error_search_message); //$NON-NLS-2$ //$NON-NLS-1$
- BugzillaPlugin.log(e.getStatus());
- }
- }
-
- @Override
- protected void fillContextMenu(IMenuManager mgr) {
- super.fillContextMenu(mgr);
-
- // Create the submenu for sorting
- MenuManager sortMenu = new MenuManager(SearchMessages.SortDropDownAction_label); //$NON-NLS-1$
- sortMenu.add(bugSortByIDAction);
- sortMenu.add(bugSortByPriorityAction);
- sortMenu.add(bugSortBySeverityAction);
- sortMenu.add(bugSortByStatusAction);
-
- // Check the right sort option
- bugSortByIDAction.setChecked(bugCurrentSortOrder == bugSortByIDAction.getSortOrder());
- bugSortByPriorityAction.setChecked(bugCurrentSortOrder == bugSortByPriorityAction.getSortOrder());
- bugSortBySeverityAction.setChecked(bugCurrentSortOrder == bugSortBySeverityAction.getSortOrder());
- bugSortByStatusAction.setChecked(bugCurrentSortOrder == bugSortByStatusAction.getSortOrder());
-
- // Add the new context menu items
- mgr.appendToGroup(IContextMenuConstants.GROUP_VIEWER_SETUP, sortMenu);
-// mgr.appendToGroup(IContextMenuConstants.GROUP_ADDITIONS, addToFavoritesAction);
- mgr.appendToGroup(IContextMenuConstants.GROUP_OPEN, openInEditorAction);
- }
-}

Back to the top