⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tiffexportdialog.java

📁 完全基于java开发的svg矢量绘图工具
💻 JAVA
字号:
package fr.itris.glips.svgeditor.svgfile.export;import javax.swing.*;import fr.itris.glips.svgeditor.*;/** * the class of the dialog used to choose the parameters of the tiff export action *  * @author Jordi SUC */public class TIFFExportDialog extends ExportDialog{        /**     * the constructor of the class     * @param editor the editor     * @param parentContainer the parent container     */    public TIFFExportDialog(SVGEditor editor, JFrame parentContainer) {        super(editor, parentContainer);               if(bundle!=null){                        try{                exportDialogTitle=bundle.getString("labeltiffexport");            }catch (Exception ex){}        }              //setting the title of the dialog       setTitle(exportDialogTitle);              //creating the size chooser panel       JPanel sizechooser=getSizeChooserPanel();       //handling the parameters panel       parametersPanel.setLayout(new BoxLayout(parametersPanel, BoxLayout.Y_AXIS));       parametersPanel.add(sizechooser);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -