Package com.sourcestream.plugin.idea.restclient

Source Code of com.sourcestream.plugin.idea.restclient.ToolsMenuAction

/**
* The MIT License
*
* Copyright (c) 2011 by Dustin R. Callaway
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.sourcestream.plugin.idea.restclient;

import com.intellij.openapi.actionSystem.DataKeys;
import org.wiztools.restclient.server.TraceServer;
import org.wiztools.restclient.ui.IdeaPlugin;

import javax.swing.*;
import java.awt.event.ActionEvent;

/**
* Handles the tools menu action by displaying a popup menu of edit choices and processing the user's selection.
*/
public class ToolsMenuAction extends BaseMenuAction
{
    private static final int VERTICAL_LOCATION = 50;

    /**
     * Constructs a new ToolsMenuAction object.
     */
    public ToolsMenuAction()
    {
        popup = new JPopupMenu();

        JMenuItem item = new JMenuItem("Password Encoder/Decoder");
        item.setActionCommand(IdeaPlugin.ACTION_PASSWORD_ENCODER_DECODER);
        item.addActionListener(this);
        popup.add(item);

        popup.addSeparator();

        String port = System.getProperty(TraceServer.SYS_PROPERTY_PORT);
        if (port == null)
        {
            port = String.valueOf(TraceServer.PORT);
        }

        item = new JMenuItem("Start Trace Server @ port " + port);
        item.setActionCommand(IdeaPlugin.ACTION_START_TRACE_SERVER);
        item.addActionListener(this);
        popup.add(item);

        item = new JMenuItem("Stop Trace Server");
        item.setActionCommand(IdeaPlugin.ACTION_STOP_TRACE_SERVER);
        item.addActionListener(this);
        popup.add(item);

        item = new JMenuItem("Insert Trace Server URL");
        item.setActionCommand(IdeaPlugin.ACTION_INSERT_TRACE_URL);
        item.addActionListener(this);
        popup.add(item);

        popup.addSeparator();

        item = new JMenuItem("Options");
        item.setActionCommand(IdeaPlugin.METHOD_OPTIONS);
        item.addActionListener(this);
        popup.add(item);
    }

    /**
     * Invoked when the user clicks on a popup menu item.
     *
     * @param event Popup menu click event
     */
    public void actionPerformed(ActionEvent event)
    {
        IdeaPlugin plugin = IdeaPlugin.getInstance(ideaEvent.getData(DataKeys.PROJECT));

        if (event.getActionCommand().equals(IdeaPlugin.ACTION_PASSWORD_ENCODER_DECODER))
        {
            plugin.passwordEncodeDecode();
        }
        else if (event.getActionCommand().equals(IdeaPlugin.ACTION_START_TRACE_SERVER))
        {
            plugin.startTraceServer();
        }
        else if (event.getActionCommand().equals(IdeaPlugin.ACTION_STOP_TRACE_SERVER))
        {
            plugin.stopTraceServer();
        }
        else if (event.getActionCommand().equals(IdeaPlugin.ACTION_INSERT_TRACE_URL))
        {
            plugin.insertTraceServerUrl();
        }
        else if (event.getActionCommand().equals(IdeaPlugin.METHOD_OPTIONS))
        {
            plugin.options(event);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected int getVerticalLocation()
    {
        return VERTICAL_LOCATION;
    }
}
TOP

Related Classes of com.sourcestream.plugin.idea.restclient.ToolsMenuAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.