Changeset 36 in tmcsimulator for trunk/src/tmcsim/cadsimulator/viewer/CADSimulatorViewer.java
- Timestamp:
- 05/02/2016 03:26:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tmcsim/cadsimulator/viewer/CADSimulatorViewer.java
r24 r36 41 41 */ 42 42 private MediaStatusPanel mediaPanel; 43 43 /** 44 * Panel to display configuration files. 45 */ 46 private ConfigStatusPanel configPanel; 44 47 /** 45 48 * Constructor. 46 49 */ 50 47 51 public CADSimulatorViewer() 48 52 { … … 165 169 simulationPanel = new SimulationStatusPanel(); 166 170 mediaPanel = new MediaStatusPanel(); 171 configPanel = new ConfigStatusPanel(); 167 172 168 173 cadSimTabbedPane = new JTabbedPane(); 169 174 cadSimTabbedPane.addTab("Status", simulationPanel); 170 175 cadSimTabbedPane.addTab("Media", mediaPanel); 176 cadSimTabbedPane.addTab("Config", configPanel); 171 177 172 178 add(cadSimTabbedPane); … … 201 207 setPreferredSize(new Dimension(500, 575)); 202 208 pack(); 203 setResizable( false);209 setResizable(true); 204 210 } 205 211 private JTabbedPane cadSimTabbedPane;
Note: See TracChangeset
for help on using the changeset viewer.
