Ignore:
Timestamp:
2018-06-30T07:16:02+02:00 (6 years ago)
Author:
nzara
Message:

Simple Gui

Location:
applications/editors/josm/plugins/pdfimport/src/pdfimport
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java

    r34211 r34369  
    172172        this.addListeners();
    173173        this.removeLayer();
     174        if (PdfImportPlugin.Preferences.guiMode == PdfImportPlugin.GuiMode.Simple) this.loadFilePressed();;
    174175    }
    175176
     
    443444        c.gridx = 2; c.gridy = 8; c.gridwidth = 1;
    444445        configPanel.add(this.splitOnOrthogonalCheck, c);
    445 
     446        if (PdfImportPlugin.Preferences.guiMode == PdfImportPlugin.GuiMode.Simple) configPanel.setVisible(false);
    446447
    447448        projectionPanel = new JPanel(new GridBagLayout());
     
    516517        this.setSize(450, 550);
    517518        this.setContentPane(panel);
     519        if (PdfImportPlugin.Preferences.guiMode == PdfImportPlugin.GuiMode.Simple) {
     520                loadFileButton.setVisible(false);
     521                configPanel.setVisible(false);
     522                saveButton.setVisible(false);
     523                showButton.setVisible(false);
     524        }
    518525    }
    519526
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/PdfImportPlugin.java

    r34211 r34369  
    5555                        case 1:
    5656                                Preferences.guiMode = GuiMode.Expert;
     57                                break;
    5758                        case 2:
    5859                                Preferences.guiMode = GuiMode.Simple;
     60                                break;
    5961                        default:
    6062                                Preferences.guiMode = GuiMode.Expert;
Note: See TracChangeset for help on using the changeset viewer.