Skip to main content
summaryrefslogtreecommitdiffstats
blob: 76cc7c0221934ace3f4991e27b81f9e3a087455f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*******************************************************************************
 * Copyright (c) 2004 - 2005 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.bugzilla.ui.actions;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.mylar.bugzilla.ui.BugzillaImages;
import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaQueryCategory;
import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaQueryDialog;
import org.eclipse.mylar.core.MylarPlugin;
import org.eclipse.mylar.tasks.MylarTasksPlugin;
import org.eclipse.mylar.tasks.ui.views.TaskListView;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.actions.WorkspaceModifyOperation;
import org.eclipse.ui.progress.IProgressService;

/**
 * @author Mik Kersten and Ken Sueda
 */
public class CreateBugzillaQueryCategoryAction extends Action implements IViewActionDelegate {
    
	public static final String ID = "org.eclipse.mylar.tasks.actions.create.bug.query";
	
	public CreateBugzillaQueryCategoryAction() {
		setText("Add Bugzilla Query");
        setToolTipText("Add Bugzilla Query");
        setId(ID);
        setImageDescriptor(BugzillaImages.CATEGORY_QUERY_NEW);
    }
    
    @Override
    public void run() {

    	// ask the user for the query string and a name
//        MylarPlugin.getDefault().actionObserved(this);
    	BugzillaQueryDialog sqd = new BugzillaQueryDialog(Display.getCurrent().getActiveShell());
    	if(sqd.open() == Dialog.OK){
        	final BugzillaQueryCategory queryCategory = new BugzillaQueryCategory(sqd.getName(), sqd.getUrl());
        	
            MylarTasksPlugin.getTaskListManager().getTaskList().addCategory(queryCategory);
            WorkspaceModifyOperation op = new WorkspaceModifyOperation() {
            	protected void execute(IProgressMonitor monitor) throws CoreException {
	            	queryCategory.refreshBugs();
            	}
            };
            
            IProgressService service = PlatformUI.getWorkbench().getProgressService();
            try {
            	service.run(true, true, op);
            } catch (Exception e) {
            	MylarPlugin.log(e, "There was a problem executing the query refresh");
            }  
            if(TaskListView.getDefault() != null)
    			TaskListView.getDefault().getViewer().refresh();
    	}
    }

	public void init(IViewPart view) {
		
	}

	public void run(IAction action) {
		run();		
	}

	public void selectionChanged(IAction action, ISelection selection) {
		
	}
}

Back to the top