📄 tiffexportdialog.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 + -