import net.sourceforge.phpdt.ui.actions.PHPdtActionConstants;
import net.sourceforge.phpeclipse.PHPeclipsePlugin;
+import org.eclipse.core.resources.IFile;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.swt.SWT;
import org.eclipse.ui.IActionBars;
+import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorPart;
+import org.eclipse.ui.IFileEditorInput;
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.actions.ActionGroup;
import org.eclipse.ui.actions.RetargetAction;
// fTogglePresentation = new PresentationAction();
fParserAction = PHPParserAction.getInstance();
-
+
if (SWT.getPlatform().equals("win32")) {
fShowExternalPreviewAction = ShowExternalPreviewAction.getInstance();
}
// fTogglePresentation.setEditor(editor);
// fTogglePresentation.update();
- PHPeclipsePlugin.getDefault().setTextEditor(textEditor);
- fParserAction.setEditor(textEditor);
- fParserAction.update();
- if (SWT.getPlatform().equals("win32") &&
- textEditor instanceof AbstractTextEditor) {
- fShowExternalPreviewAction.setEditor(textEditor);
- fShowExternalPreviewAction.update();
- IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
- if (store.getBoolean(PHPeclipsePlugin.SHOW_EXTERNAL_PREVIEW_PREF)) {
- IAction a = ShowExternalPreviewAction.getInstance();
- if (a != null)
- a.run();
+ if (textEditor != null) {
+
+ IFile file = null;
+ IEditorInput editorInput = textEditor.getEditorInput();
+
+ if (editorInput instanceof IFileEditorInput) {
+ file = ((IFileEditorInput) editorInput).getFile();
+ }
+
+ PHPeclipsePlugin.getDefault().setLastEditorFile(file);
+ fParserAction.setEditor(textEditor);
+ fParserAction.update();
+ if (SWT.getPlatform().equals("win32") && textEditor instanceof AbstractTextEditor) {
+ fShowExternalPreviewAction.setEditor(textEditor);
+ fShowExternalPreviewAction.update();
+ IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
+ if (store.getBoolean(PHPeclipsePlugin.SHOW_EXTERNAL_PREVIEW_PREF)) {
+ IAction a = ShowExternalPreviewAction.getInstance();
+ if (a != null)
+ a.run();
+ }
}
}
+
}
/*