~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/FirstPage.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**********************************************************************
 
2
 * Copyright (c) 2011, 2012 Ericsson
 
3
 * 
 
4
 * All rights reserved. This program and the accompanying materials are
 
5
 * made available under the terms of the Eclipse Public License v1.0 which
 
6
 * accompanies this distribution, and is available at
 
7
 * http://www.eclipse.org/legal/epl-v10.html
 
8
 * 
 
9
 * Contributors: 
 
10
 *   Bernd Hufmann - Initial API and implementation
 
11
 **********************************************************************/
 
12
package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
 
13
 
 
14
import org.eclipse.jface.action.Action;
 
15
import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
 
16
import org.eclipse.linuxtools.internal.tmf.ui.Activator;
 
17
import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
 
18
import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
 
19
 
 
20
/**
 
21
 * Action class implementation to move the focus to the first page of the whole sequence diagram.
 
22
 * 
 
23
 * @version 1.0
 
24
 * @author Bernd Hufmann
 
25
 */
 
26
public class FirstPage extends Action {
 
27
 
 
28
    // ------------------------------------------------------------------------
 
29
    // Constants
 
30
    // ------------------------------------------------------------------------
 
31
    /**
 
32
     * The action ID.
 
33
     */
 
34
    public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.firstpage"; //$NON-NLS-1$
 
35
 
 
36
    // ------------------------------------------------------------------------
 
37
    // Attributes
 
38
    // ------------------------------------------------------------------------
 
39
    /**
 
40
     * The sequence diagram view reference
 
41
     */
 
42
    protected SDView fView = null;
 
43
    
 
44
    // ------------------------------------------------------------------------
 
45
    // Constructors
 
46
    // ------------------------------------------------------------------------
 
47
    /**
 
48
     * Default constructor 
 
49
     * 
 
50
     * @param view the view reference
 
51
     */
 
52
    public FirstPage(SDView view) {
 
53
        super();
 
54
        fView = view;
 
55
        setText(SDMessages._139);
 
56
        setToolTipText(SDMessages._140);
 
57
        setId(ID);
 
58
        setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_FIRST_PAGE));
 
59
    }
 
60
 
 
61
    // ------------------------------------------------------------------------
 
62
    // Methods
 
63
    // ------------------------------------------------------------------------
 
64
    /*
 
65
     * (non-Javadoc)
 
66
     * @see org.eclipse.jface.action.Action#run()
 
67
     */
 
68
    @Override
 
69
    public void run() {
 
70
        if ((fView == null) || (fView.getSDWidget()) == null) {
 
71
            return;
 
72
        }
 
73
        if (fView.getSDPagingProvider() != null) {
 
74
            fView.getSDPagingProvider().firstPage();
 
75
        }
 
76
        fView.updateCoolBar();
 
77
        fView.getSDWidget().redraw();
 
78
    }
 
79
}