tiffexportdialog.java
来自「完全基于java开发的svg矢量绘图工具」· Java 代码 · 共 39 行
JAVA
39 行
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 + =
减小字号Ctrl + -
显示快捷键?