-
Notifications
You must be signed in to change notification settings - Fork 874
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NETBEANS-59] - New clean commit for adding actions for split documen…
…ts. And Changed line endings.
- Loading branch information
Showing
4 changed files
with
195 additions
and
8 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
platform/core.multiview/src/org/netbeans/core/multiview/ClearSplitAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.netbeans.core.multiview; | ||
|
||
import java.awt.event.ActionEvent; | ||
import javax.swing.AbstractAction; | ||
import javax.swing.Action; | ||
import org.openide.awt.ActionID; | ||
import org.openide.awt.ActionReference; | ||
import org.openide.awt.ActionRegistration; | ||
import org.openide.util.NbBundle; | ||
import org.openide.windows.TopComponent; | ||
import org.openide.windows.WindowManager; | ||
|
||
/** | ||
* | ||
* @author Christian Lenz (Chrizzly) | ||
*/ | ||
@ActionID( | ||
category = "Window", | ||
id = "org.netbeans.core.multiview.ClearSplitAction" | ||
) | ||
@ActionRegistration( | ||
displayName = "#LBL_ClearSplitAction" | ||
) | ||
@ActionReference(path = "Shortcuts", name = "DOS-C") | ||
@NbBundle.Messages({ | ||
"LBL_ClearSplitAction=&Clear", | ||
"LBL_ValueClearSplit=clearSplit" | ||
}) | ||
public final class ClearSplitAction extends AbstractAction { | ||
|
||
public ClearSplitAction() { | ||
putValue(Action.NAME, Bundle.LBL_ClearSplitAction()); | ||
//hack to insert extra actions into JDev's popup menu | ||
putValue("_nb_action_id_", Bundle.LBL_ValueClearSplit()); //NOI18N | ||
} | ||
|
||
@Override | ||
public void actionPerformed(ActionEvent evt) { | ||
final TopComponent tc = WindowManager.getDefault().getRegistry().getActivated(); | ||
|
||
SplitAction.clearSplit(tc, -1); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
platform/core.multiview/src/org/netbeans/core/multiview/SplitDocumentHorizontallyAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.netbeans.core.multiview; | ||
|
||
import java.awt.event.ActionEvent; | ||
import javax.swing.AbstractAction; | ||
import javax.swing.Action; | ||
import javax.swing.JSplitPane; | ||
import org.openide.awt.ActionID; | ||
import org.openide.awt.ActionReference; | ||
import org.openide.awt.ActionRegistration; | ||
import org.openide.util.NbBundle; | ||
import org.openide.windows.TopComponent; | ||
import org.openide.windows.WindowManager; | ||
|
||
/** | ||
* | ||
* @author Christian Lenz (Chrizzly) | ||
*/ | ||
@ActionID( | ||
category = "Window", | ||
id = "org.netbeans.core.multiview.SplitDocumentHorizontallyAction" | ||
) | ||
@ActionRegistration( | ||
displayName = "#LBL_ValueSplitHorizontal" | ||
) | ||
@ActionReference(path = "Shortcuts", name = "DOS-H") | ||
@NbBundle.Messages({ | ||
"LBL_SplitDocumentActionHorizontal=&Horizontally", | ||
"LBL_ValueSplitHorizontal=Split horizontally" | ||
}) | ||
public final class SplitDocumentHorizontallyAction extends AbstractAction { | ||
|
||
public SplitDocumentHorizontallyAction() { | ||
putValue(Action.NAME, Bundle.LBL_SplitDocumentActionHorizontal()); | ||
//hack to insert extra actions into JDev's popup menu | ||
putValue("_nb_action_id_", Bundle.LBL_ValueSplitHorizontal()); //NOI18N | ||
} | ||
|
||
@Override | ||
public final void actionPerformed(ActionEvent evt) { | ||
final TopComponent tc = WindowManager.getDefault().getRegistry().getActivated(); | ||
|
||
if (tc != null) { | ||
SplitAction.splitWindow(tc, JSplitPane.HORIZONTAL_SPLIT, -1); | ||
} | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
platform/core.multiview/src/org/netbeans/core/multiview/SplitDocumentVerticallyAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.netbeans.core.multiview; | ||
|
||
import java.awt.event.ActionEvent; | ||
import javax.swing.AbstractAction; | ||
import javax.swing.Action; | ||
import javax.swing.JSplitPane; | ||
import org.openide.awt.ActionID; | ||
import org.openide.awt.ActionReference; | ||
import org.openide.awt.ActionRegistration; | ||
import org.openide.util.NbBundle; | ||
import org.openide.windows.TopComponent; | ||
import org.openide.windows.WindowManager; | ||
|
||
/** | ||
* | ||
* @author Christian Lenz (Chrizzly) | ||
*/ | ||
@ActionID( | ||
category = "Window", | ||
id = "org.netbeans.core.multiview.SplitDocumentVerticallyAction" | ||
) | ||
@ActionRegistration( | ||
displayName = "#LBL_ValueSplitVertical" | ||
) | ||
@ActionReference(path = "Shortcuts", name = "DOS-V") | ||
@NbBundle.Messages({ | ||
"LBL_SplitDocumentActionVertical=&Vertically", | ||
"LBL_ValueSplitVertical=Split vertically" | ||
}) | ||
public final class SplitDocumentVerticallyAction extends AbstractAction { | ||
|
||
public SplitDocumentVerticallyAction() { | ||
putValue(Action.NAME, Bundle.LBL_SplitDocumentActionVertical()); | ||
//hack to insert extra actions into JDev's popup menu | ||
putValue("_nb_action_id_", Bundle.LBL_ValueSplitVertical()); //NOI18N | ||
} | ||
|
||
@Override | ||
public final void actionPerformed(ActionEvent evt) { | ||
final TopComponent tc = WindowManager.getDefault().getRegistry().getActivated(); | ||
|
||
if (tc != null) { | ||
SplitAction.splitWindow(tc, JSplitPane.VERTICAL_SPLIT, -1); | ||
} | ||
} | ||
} |