-
-
Notifications
You must be signed in to change notification settings - Fork 766
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for "Save as..." in the designer (#2133)
- Loading branch information
Showing
3 changed files
with
46 additions
and
7 deletions.
There are no files selected for viewing
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
43 changes: 43 additions & 0 deletions
43
...ugin-designer/src/main/java/com/willwinder/ugs/nbp/designer/platform/UgsSaveAsCookie.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,43 @@ | ||
/* | ||
Copyright 2023 Will Winder | ||
This file is part of Universal Gcode Sender (UGS). | ||
UGS is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
UGS 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with UGS. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package com.willwinder.ugs.nbp.designer.platform; | ||
|
||
import com.willwinder.ugs.nbp.core.actions.OpenFileAction; | ||
import com.willwinder.ugs.nbp.designer.io.ugsd.UgsDesignWriter; | ||
import com.willwinder.ugs.nbp.designer.logic.ControllerFactory; | ||
import org.openide.filesystems.FileObject; | ||
import org.openide.loaders.SaveAsCapable; | ||
import org.openide.nodes.Node; | ||
|
||
import java.io.File; | ||
|
||
/** | ||
* Provides support for saving the file as... | ||
* | ||
* @author Joacim Breiler | ||
*/ | ||
public class UgsSaveAsCookie implements SaveAsCapable, Node.Cookie { | ||
@Override | ||
public void saveAs(FileObject folder, String name) { | ||
File file = new File(folder.getPath(), name); | ||
UgsDesignWriter writer = new UgsDesignWriter(); | ||
writer.write(file, ControllerFactory.getController()); | ||
new OpenFileAction(file).actionPerformed(null); | ||
} | ||
} |
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