Commit 7486e4f5e634193befca006704bfba1827f311b7

Authored by Mickael Boiziot
1 parent 808353e9
Exists in master

Increase size of panels and window.

src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java
... ... @@ -66,7 +66,7 @@ public class EpnTapMainApp {
66 66 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
67 67 frame.setContentPane(guiCtrl.getView());
68 68 frame.setVisible(true);
69   - frame.setSize(800, 600);
  69 + frame.setSize(1000, 700);
70 70 frame.setLocationRelativeTo(null);
71 71  
72 72 }
... ...
src/main/java/eu/omp/irap/vespa/epntapclient/gui/mainpanel/GUIDim.java
... ... @@ -30,7 +30,7 @@ public class GUIDim {
30 30 public static final int BOTTOM_PANEL_MIN_HEIGHT = 150;
31 31  
32 32 /** The minimum width of the left panel (services view). */
33   - public static final int LEFT_PANEL_MIN_WIDTH = 300;
  33 + public static final int LEFT_PANEL_MIN_WIDTH = 500;
34 34  
35 35 /** The width of the left panel (services view). */
36 36 public static final int LEFT_PANEL_WIDTH = 550;
... ... @@ -39,13 +39,13 @@ public class GUIDim {
39 39 public static final int RIGHT_PANEL_MIN_WIDTH = 220;
40 40  
41 41 /** The width of the right panel (request view). */
42   - public static final int RIGHT_PANEL_WIDTH = 450;
  42 + public static final int RIGHT_PANEL_WIDTH = 230;
43 43  
44 44 /** The height of the top panel (request view and services view). */
45 45 public static final int TOP_PANEL_HEIGHT = 300;
46 46  
47 47 /** The minimum height of the top panel (request view and services view). */
48   - public static final int TOP_PANEL_MIN_HEIGHT = 150;
  48 + public static final int TOP_PANEL_MIN_HEIGHT = 220;
49 49  
50 50  
51 51 /** Private constructor to hide the implicit public one. */
... ...