/* * * Perforce/JBuilder Opentool * Copyright (C) 2002 Mark Ackerman * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ package com.dafreels.opentools.actions; //JBuilder import java.awt.Cursor; import com.borland.primetime.editor.EditorAction; import com.borland.primetime.editor.EditorPane; import com.borland.primetime.ide.Browser; import com.borland.primetime.ide.BrowserAction; import com.dafreels.opentools.Main; import com.dafreels.opentools.MessageWriter; import com.dafreels.opentools.actions.ui.ChangeListDialog; import com.dafreels.vcs.command.CommandTool; import com.dafreels.vcs.command.MessageFormatter; import com.dafreels.vcs.util.ActionImages; /** * Title: Perforce OpenTool * Description: Action to display the ChangeList Dialog * Copyright: Copyright (c) 2002 * Company: * @author Mark Ackerman * @version 1.0 */ public class ChangeAction extends BrowserAction { private ChangeListDialog _dialog; public ChangeAction() { super("ChangeList"); setLongText("View Pending ChangeLists"); super.setSmallIcon(ActionImages.P4_CHANGELIST); } public void actionPerformed(Browser browser) { Cursor savedEditorCursor = null; EditorPane editor = null; try { editor = EditorAction.getFocusedEditor(); Cursor waitCursor = Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR); if (editor != null) { savedEditorCursor = editor.getCursor(); editor.setCursor(waitCursor); } browser.setCursor(waitCursor); com.dafreels.vcs.command.Command cmd = new com.dafreels.vcs.command.Command( com.dafreels.vcs.command.Command.OPENED); //String cmd = "opened"; //Run the command CommandTool.runCommand(cmd, Main.m_props); //Output the p4 messages MessageWriter.outputErrorMessages(MessageFormatter.getInstance()); if (_dialog == null) { _dialog = new ChangeListDialog(Browser.getActiveBrowser(), false); } _dialog.fillForm(MessageFormatter.getInstance()); _dialog.setVisible(true); } finally { browser.setCursor(Cursor.getDefaultCursor()); if (editor != null && savedEditorCursor != null) { editor.setCursor(savedEditorCursor); } } } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#3 | 4090 | David Freels |
Fixed bug where paths with spaces would not work. Also checked in new code or JBuilderX. |
||
#2 | 3651 | David Freels | Remove file extension limitations. | ||
#1 | 1873 | Mark E. Ackerman | Version 1.0 build. |