Skip to content

Commit

Permalink
Add support for "Save as..." in the designer (#2133)
Browse files Browse the repository at this point in the history
  • Loading branch information
breiler authored Jan 20, 2023
1 parent 517b08b commit 0c2a691
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2020-2021 Will Winder
Copyright 2020-2023 Will Winder
This file is part of Universal Gcode Sender (UGS).
Expand Down Expand Up @@ -50,6 +50,7 @@ public UgsDataObject(FileObject pf, MultiFileLoader loader) throws IOException {
CookieSet cookies = getCookieSet();
cookies.add(new UgsCloseCookie(this));
cookies.add(new UgsOpenSupport(getPrimaryEntry()));
cookies.add(new UgsSaveAsCookie());
}

@Override
Expand Down
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);
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2022 Will Winder
Copyright 2023 Will Winder
This file is part of Universal Gcode Sender (UGS).
Expand All @@ -18,13 +18,8 @@ This file is part of Universal Gcode Sender (UGS).
*/
package com.willwinder.ugs.nbp.designer.platform;

import com.google.common.io.Files;
import com.willwinder.ugs.nbp.designer.io.DesignWriter;
import com.willwinder.ugs.nbp.designer.io.gcode.GcodeDesignWriter;
import com.willwinder.ugs.nbp.designer.io.ugsd.UgsDesignWriter;
import com.willwinder.ugs.nbp.designer.logic.ControllerFactory;
import com.willwinder.ugs.nbp.lib.lookup.CentralLookup;
import com.willwinder.universalgcodesender.model.BackendAPI;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.openide.cookies.SaveCookie;
Expand Down

0 comments on commit 0c2a691

Please sign in to comment.