.. | .. |
---|
28 | 28 | iSendInfo |
---|
29 | 29 | //KeyListener |
---|
30 | 30 | { |
---|
| 31 | + boolean timeline; |
---|
| 32 | + boolean wasFullScreen; |
---|
31 | 33 | |
---|
32 | 34 | // SCRIPT |
---|
33 | 35 | |
---|
.. | .. |
---|
158 | 160 | objEditor.ctrlPanel.remove(slowerButton); |
---|
159 | 161 | objEditor.ctrlPanel.remove(fasterButton); |
---|
160 | 162 | objEditor.ctrlPanel.remove(remarkButton); |
---|
| 163 | + |
---|
| 164 | + Remove(normalpushField); |
---|
161 | 165 | } |
---|
162 | 166 | |
---|
163 | 167 | public ObjEditor GetEditor() |
---|
164 | 168 | { |
---|
165 | 169 | return objEditor; //.GetEditor(); |
---|
166 | 170 | } |
---|
| 171 | + |
---|
| 172 | + // Sometimes myself, sometimes my callee's. |
---|
167 | 173 | ObjEditor objEditor; |
---|
168 | 174 | |
---|
169 | 175 | /* |
---|
.. | .. |
---|
238 | 244 | //if (!isDisplayable()) |
---|
239 | 245 | //setUndecorated(true); |
---|
240 | 246 | |
---|
241 | | - System.out.println("getFullScreenWindow? " + gd.getFullScreenWindow()); |
---|
| 247 | + //System.out.println("getFullScreenWindow? " + gd.getFullScreenWindow()); |
---|
242 | 248 | client = inClient; |
---|
243 | 249 | copy = localCopy; |
---|
244 | 250 | copy.editWindow = this; |
---|
.. | .. |
---|
292 | 298 | //normalLensItem.addActionListener(this); |
---|
293 | 299 | cameraMenu.add(revertCameraItem = new MenuItem("Revert Camera")); |
---|
294 | 300 | revertCameraItem.addActionListener(this); |
---|
295 | | - cameraMenu.add(toggleFullItem = new CheckboxMenuItem("Full Screen")); |
---|
296 | | - toggleFullItem.addItemListener(this); |
---|
297 | | - toggleFullItem.setState(CameraPane.FULLSCREEN); |
---|
| 301 | + cameraMenu.add(toggleTimelineItem = new CheckboxMenuItem("Timeline")); |
---|
| 302 | + toggleTimelineItem.addItemListener(this); |
---|
| 303 | + cameraMenu.add(toggleFullScreenItem = new CheckboxMenuItem("Full Screen")); |
---|
| 304 | + toggleFullScreenItem.addItemListener(this); |
---|
| 305 | + toggleFullScreenItem.setState(CameraPane.FULLSCREEN); |
---|
298 | 306 | cameraMenu.add("-"); |
---|
299 | 307 | cameraMenu.add(toggleTextureItem = new CheckboxMenuItem("Texture")); |
---|
300 | 308 | toggleTextureItem.addItemListener(this); |
---|
.. | .. |
---|
594 | 602 | } |
---|
595 | 603 | } |
---|
596 | 604 | |
---|
| 605 | + void ToggleFullScreen() |
---|
| 606 | + { |
---|
| 607 | + if (CameraPane.FULLSCREEN) |
---|
| 608 | + { |
---|
| 609 | + frame.getContentPane().remove(/*"Center",*/bigThree); |
---|
| 610 | + framePanel.add(bigThree); |
---|
| 611 | + frame.getContentPane().add(/*"Center",*/framePanel); |
---|
| 612 | + } else |
---|
| 613 | + { |
---|
| 614 | + frame.getContentPane().remove(/*"Center",*/framePanel); |
---|
| 615 | + framePanel.remove(bigThree); |
---|
| 616 | + frame.getContentPane().add(/*"Center",*/bigThree); |
---|
| 617 | + } |
---|
| 618 | + cameraView.ToggleFullScreen(); |
---|
| 619 | + } |
---|
| 620 | + |
---|
597 | 621 | private JTextArea createTextPane() |
---|
598 | 622 | { |
---|
599 | 623 | String[] initString = |
---|
.. | .. |
---|
794 | 818 | |
---|
795 | 819 | aConstraints.fill = GridBagConstraints.VERTICAL; |
---|
796 | 820 | jlabel.setHorizontalAlignment(SwingConstants.TRAILING); |
---|
797 | | - aConstraints.gridwidth = 2; |
---|
| 821 | + aConstraints.gridwidth = 1; |
---|
798 | 822 | ctrlPanel.add(jlabel, aConstraints); //, oe.ctrlPanel.getComponentCount()-1); |
---|
799 | 823 | aConstraints.gridx += 1; |
---|
800 | 824 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
.. | .. |
---|
963 | 987 | |
---|
964 | 988 | Return(); |
---|
965 | 989 | |
---|
| 990 | + normalpushField = AddSlider(oe.ctrlPanel, "Push", -10, 10, 0, -1); |
---|
| 991 | + Return(); |
---|
| 992 | + |
---|
966 | 993 | // oe.ctrlPanel.add(stepButton = new cButton("Step"), ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount() - 2); |
---|
967 | 994 | // ObjEditor.aConstraints.gridx += 1; |
---|
968 | 995 | |
---|
.. | .. |
---|
1158 | 1185 | //JPanel worldPanel = |
---|
1159 | 1186 | // new gov.nasa.worldwind.examples.ApplicationTemplate.AppPanel(null, true); |
---|
1160 | 1187 | //worldPanel.setName("World"); |
---|
1161 | | - /*JPanel*/ cameraPanel = |
---|
1162 | | - new JPanel(new BorderLayout()); |
---|
1163 | | - cameraPanel.add(cameraView); |
---|
| 1188 | + centralPanel = new JPanel(new BorderLayout()); |
---|
| 1189 | + timelinePanel = new JPanel(new BorderLayout()); |
---|
| 1190 | + timelineMenubar = new timeflow.app.TimeflowApp().TimeFlowWindow(timelinePanel); |
---|
1164 | 1191 | |
---|
| 1192 | + cameraPanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT, cameraView, timelinePanel); |
---|
| 1193 | + cameraPanel.setContinuousLayout(true); |
---|
| 1194 | + cameraPanel.setOneTouchExpandable(true); |
---|
| 1195 | +// cameraPanel.setDividerLocation(0.9); |
---|
| 1196 | +// cameraPanel.setDividerSize(9); |
---|
| 1197 | + cameraPanel.setResizeWeight(1.0); |
---|
| 1198 | + |
---|
| 1199 | + centralPanel.add(cameraView); |
---|
| 1200 | + //frame.setJMenuBar(timelineMenubar); |
---|
| 1201 | + //centralPanel.add(timelinePanel); |
---|
| 1202 | + |
---|
1165 | 1203 | //topView.camera = ; |
---|
1166 | 1204 | //frontView.camera = new Camera(2); |
---|
1167 | 1205 | //sideView.camera = new Camera(3); |
---|
.. | .. |
---|
1191 | 1229 | gridPanel.add(cameraView); |
---|
1192 | 1230 | gridPanel.add(XYZPanel); |
---|
1193 | 1231 | */ |
---|
1194 | | - gridPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, cameraPanel, XYZPanel); //new BorderLayout()); |
---|
| 1232 | + gridPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, centralPanel, XYZPanel); //new BorderLayout()); |
---|
1195 | 1233 | gridPanel.setContinuousLayout(true); |
---|
1196 | 1234 | gridPanel.setOneTouchExpandable(true); |
---|
1197 | 1235 | gridPanel.setDividerLocation(1.0); |
---|
.. | .. |
---|
1244 | 1282 | scrollpane.setWheelScrollingEnabled(true); |
---|
1245 | 1283 | scrollpane.addMouseWheelListener(this); // Default not fast enough |
---|
1246 | 1284 | |
---|
1247 | | - /*JTabbedPane*/ jtp = new JTabbedPane(); |
---|
1248 | | - jtp.add(scrollpane); |
---|
| 1285 | + /*JTabbedPane*/ scenePanel = new JTabbedPane(); |
---|
| 1286 | + scenePanel.add(scrollpane); |
---|
1249 | 1287 | |
---|
1250 | | - jtp.add(FSPane = new cFileSystemPane(this)); |
---|
| 1288 | + scenePanel.add(FSPane = new cFileSystemPane(this)); |
---|
1251 | 1289 | |
---|
1252 | 1290 | optionsPanel = new JPanel(new GridBagLayout()); |
---|
1253 | 1291 | |
---|
1254 | 1292 | optionsPanel.setName("Options"); |
---|
1255 | | - jtp.add(optionsPanel); |
---|
| 1293 | + scenePanel.add(optionsPanel); |
---|
1256 | 1294 | |
---|
1257 | 1295 | |
---|
1258 | 1296 | /* |
---|
.. | .. |
---|
1275 | 1313 | jtp.add(tree); |
---|
1276 | 1314 | */ |
---|
1277 | 1315 | |
---|
1278 | | - bigPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, jtp, gridPanel); |
---|
| 1316 | + bigPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, scenePanel, gridPanel); |
---|
1279 | 1317 | bigPanel.setContinuousLayout(true); |
---|
1280 | 1318 | bigPanel.setOneTouchExpandable(true); |
---|
1281 | 1319 | bigPanel.setDividerLocation(0.8); |
---|
.. | .. |
---|
1297 | 1335 | aWindowConstraints.fill = GridBagConstraints.VERTICAL; |
---|
1298 | 1336 | aWindowConstraints.weightx = 0; |
---|
1299 | 1337 | aWindowConstraints.weighty = 1; |
---|
1300 | | - bigThree.add(jtp, aWindowConstraints); |
---|
| 1338 | + bigThree.add(scenePanel, aWindowConstraints); |
---|
1301 | 1339 | aWindowConstraints.weightx = 1; |
---|
1302 | 1340 | aWindowConstraints.gridwidth = 3; |
---|
1303 | 1341 | // aConstraints.gridheight = 3; |
---|
1304 | 1342 | aWindowConstraints.gridx = 1; |
---|
1305 | 1343 | aWindowConstraints.fill = GridBagConstraints.BOTH; |
---|
1306 | | - bigThree.add(cameraPanel, aWindowConstraints); |
---|
| 1344 | + bigThree.add(centralPanel, aWindowConstraints); |
---|
1307 | 1345 | aWindowConstraints.weightx = 0; |
---|
1308 | 1346 | aWindowConstraints.gridx = 4; |
---|
1309 | 1347 | aWindowConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1422 | 1460 | aConstraints.gridx += 1; |
---|
1423 | 1461 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1424 | 1462 | //aConstraints.weightx = 0; |
---|
1425 | | - ctrlPanel.add(colorField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1463 | + ctrlPanel.add(colorField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1426 | 1464 | aConstraints.gridx = 0; |
---|
1427 | 1465 | aConstraints.gridy += 1; |
---|
1428 | 1466 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1432 | 1470 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1433 | 1471 | aConstraints.gridx += 1; |
---|
1434 | 1472 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1435 | | - ctrlPanel.add(modulationField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1473 | + ctrlPanel.add(modulationField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1436 | 1474 | aConstraints.gridx = 0; |
---|
1437 | 1475 | aConstraints.gridy += 1; |
---|
1438 | 1476 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1442 | 1480 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1443 | 1481 | aConstraints.gridx += 1; |
---|
1444 | 1482 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1445 | | - ctrlPanel.add(textureField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1483 | + ctrlPanel.add(textureField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1446 | 1484 | aConstraints.gridx = 0; |
---|
1447 | 1485 | aConstraints.gridy += 1; |
---|
1448 | 1486 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1452 | 1490 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1453 | 1491 | aConstraints.gridx += 1; |
---|
1454 | 1492 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1455 | | - ctrlPanel.add(anisoField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1493 | + ctrlPanel.add(anisoField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1456 | 1494 | aConstraints.gridx = 0; |
---|
1457 | 1495 | aConstraints.gridy += 1; |
---|
1458 | 1496 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1462 | 1500 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1463 | 1501 | aConstraints.gridx += 1; |
---|
1464 | 1502 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1465 | | - ctrlPanel.add(anisoVField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1503 | + ctrlPanel.add(anisoVField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1466 | 1504 | aConstraints.gridx = 0; |
---|
1467 | 1505 | aConstraints.gridy += 1; |
---|
1468 | 1506 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1531 | 1569 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1532 | 1570 | aConstraints.gridx += 1; |
---|
1533 | 1571 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1534 | | - ctrlPanel.add(subsurfaceField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1572 | + ctrlPanel.add(subsurfaceField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1535 | 1573 | aConstraints.gridx = 0; |
---|
1536 | 1574 | aConstraints.gridy += 1; |
---|
1537 | 1575 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1600 | 1638 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1601 | 1639 | aConstraints.gridx += 1; |
---|
1602 | 1640 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1603 | | - ctrlPanel.add(metalnessField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1641 | + ctrlPanel.add(metalnessField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1604 | 1642 | aConstraints.gridx = 0; |
---|
1605 | 1643 | aConstraints.gridy += 1; |
---|
1606 | 1644 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
1671 | 1709 | aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
1672 | 1710 | aConstraints.gridx += 1; |
---|
1673 | 1711 | aConstraints.gridwidth = ObjEditor.GRIDWIDTH; |
---|
1674 | | - ctrlPanel.add(opacityField = new NumberSlider(0.001, 1, -0.1), aConstraints); |
---|
| 1712 | + ctrlPanel.add(opacityField = new NumberSlider(0.001, 1, -0.5), aConstraints); |
---|
1675 | 1713 | aConstraints.gridx = 0; |
---|
1676 | 1714 | aConstraints.gridy += 1; |
---|
1677 | 1715 | aConstraints.gridwidth = 1; |
---|
.. | .. |
---|
2194 | 2232 | { |
---|
2195 | 2233 | Mocap sel = (Mocap) copy.selection.get(0); |
---|
2196 | 2234 | |
---|
| 2235 | + sel.SetCurrentBones(sel.frame); |
---|
| 2236 | + |
---|
2197 | 2237 | sel.fullname = fullname; |
---|
2198 | 2238 | |
---|
2199 | 2239 | if (changename) |
---|
.. | .. |
---|
2245 | 2285 | { |
---|
2246 | 2286 | Mocap sel = (Mocap) select; |
---|
2247 | 2287 | |
---|
| 2288 | + sel.SetCurrentBones(sel.frame); |
---|
| 2289 | + |
---|
2248 | 2290 | File file = new File(fullname); |
---|
2249 | 2291 | |
---|
2250 | 2292 | // Mocap mocap = new Mocap("Mocap" + file.getName()); |
---|
.. | .. |
---|
2954 | 2996 | // june 2013 copy.HardTouch(); |
---|
2955 | 2997 | cameraView.repaint(); |
---|
2956 | 2998 | return; |
---|
2957 | | - } else if (event.getSource() == toggleFullItem) |
---|
| 2999 | + } else if (event.getSource() == toggleTimelineItem) |
---|
2958 | 3000 | { |
---|
2959 | | - if (CameraPane.FULLSCREEN) |
---|
| 3001 | + timeline ^= true; |
---|
| 3002 | + |
---|
| 3003 | + if (timeline) |
---|
2960 | 3004 | { |
---|
2961 | | - frame.getContentPane().remove(/*"Center",*/bigThree); |
---|
2962 | | - framePanel.add(bigThree); |
---|
2963 | | - frame.getContentPane().add(/*"Center",*/framePanel); |
---|
2964 | | - } else |
---|
2965 | | - { |
---|
2966 | | - frame.getContentPane().remove(/*"Center",*/framePanel); |
---|
2967 | | - frame.getContentPane().add(/*"Center",*/bigThree); |
---|
| 3005 | + centralPanel.remove(cameraView); |
---|
| 3006 | + cameraPanel.add(cameraView); |
---|
| 3007 | + centralPanel.add(cameraPanel); |
---|
| 3008 | + frame.setJMenuBar(timelineMenubar); |
---|
| 3009 | + wasFullScreen = CameraPane.FULLSCREEN; |
---|
| 3010 | + if (!CameraPane.FULLSCREEN) |
---|
| 3011 | + ToggleFullScreen(); |
---|
| 3012 | + toggleFullScreenItem.setEnabled(false); |
---|
2968 | 3013 | } |
---|
| 3014 | + else |
---|
| 3015 | + { |
---|
| 3016 | + centralPanel.remove(cameraPanel); |
---|
| 3017 | + centralPanel.add(cameraView); |
---|
| 3018 | + frame.setJMenuBar(null); |
---|
| 3019 | + if (!wasFullScreen) |
---|
| 3020 | + ToggleFullScreen(); |
---|
| 3021 | + toggleFullScreenItem.setEnabled(true); |
---|
| 3022 | + } |
---|
| 3023 | + |
---|
2969 | 3024 | frame.validate(); |
---|
2970 | | - cameraView.ToggleFullScreen(); |
---|
| 3025 | + return; |
---|
| 3026 | + } else if (event.getSource() == toggleFullScreenItem) |
---|
| 3027 | + { |
---|
| 3028 | + ToggleFullScreen(); |
---|
| 3029 | + frame.validate(); |
---|
2971 | 3030 | |
---|
2972 | 3031 | return; |
---|
2973 | 3032 | } else if (event.getSource() == toggleRandomItem) |
---|
.. | .. |
---|
3216 | 3275 | cameraView.RevertCamera(); |
---|
3217 | 3276 | cameraView.repaint(); |
---|
3218 | 3277 | return; |
---|
3219 | | - } else if (event.getSource() == textureButton) |
---|
3220 | | - { |
---|
3221 | | - return; // true; |
---|
| 3278 | +// } else if (event.getSource() == textureButton) |
---|
| 3279 | +// { |
---|
| 3280 | +// return; // true; |
---|
3222 | 3281 | } else // combos... |
---|
3223 | 3282 | if (event.getSource() == texresMenu) |
---|
3224 | 3283 | { |
---|
.. | .. |
---|
3505 | 3564 | //System.out.println("PARENT = " + parent); |
---|
3506 | 3565 | //if (parent != null) |
---|
3507 | 3566 | // parent.applySelf(); |
---|
3508 | | - refreshContents(); |
---|
| 3567 | + if (e.getSource() == normalpushField) |
---|
| 3568 | + { |
---|
| 3569 | + objEditor.refreshContents(); |
---|
| 3570 | + //Refresh(); |
---|
| 3571 | + } |
---|
| 3572 | + else |
---|
| 3573 | + refreshContents(); |
---|
3509 | 3574 | // ??? client.refreshEditWindow(); |
---|
3510 | 3575 | } |
---|
3511 | 3576 | //else |
---|
.. | .. |
---|
3517 | 3582 | //group.name = nameField.getText(); |
---|
3518 | 3583 | //objEditor.applySelf(); |
---|
3519 | 3584 | |
---|
3520 | | - assert (objEditor == this); |
---|
| 3585 | + // OCT2018: assert (objEditor == this); |
---|
3521 | 3586 | if (copy.selection == null || copy.selection.size() == 0) |
---|
3522 | 3587 | //super.applySelf() |
---|
3523 | 3588 | ; else |
---|
.. | .. |
---|
3541 | 3606 | objEditor.copy = keep; |
---|
3542 | 3607 | } |
---|
3543 | 3608 | } |
---|
| 3609 | + |
---|
| 3610 | + if (normalpushField != null) |
---|
| 3611 | + copy.NORMALPUSH = (float)normalpushField.getFloat()/1000; |
---|
3544 | 3612 | } |
---|
3545 | 3613 | |
---|
3546 | 3614 | void SnapObject() |
---|
3547 | 3615 | { |
---|
3548 | | - Object3D obj = (Object3D)copy.selection.elementAt(0); |
---|
3549 | | - SnapObject(obj); |
---|
| 3616 | + if (copy.selection.size() > 0) |
---|
| 3617 | + { |
---|
| 3618 | + Object3D obj = (Object3D)copy.selection.elementAt(0); |
---|
| 3619 | + SnapObject(obj); |
---|
| 3620 | + } |
---|
3550 | 3621 | } |
---|
3551 | 3622 | |
---|
3552 | 3623 | void SnapObject(Object3D obj) |
---|
.. | .. |
---|
3660 | 3731 | |
---|
3661 | 3732 | if (obj.parent != null) |
---|
3662 | 3733 | { |
---|
3663 | | - obj.parent.TransformToWorld(interest); |
---|
| 3734 | +// obj.parent.TransformToWorld(interest); |
---|
3664 | 3735 | } |
---|
3665 | 3736 | |
---|
3666 | 3737 | if (!CameraPane.TRACK) |
---|
.. | .. |
---|
4440 | 4511 | MenuItem revertCameraItem; |
---|
4441 | 4512 | CheckboxMenuItem toggleLiveItem; |
---|
4442 | 4513 | MenuItem stepItem; |
---|
4443 | | - CheckboxMenuItem toggleFullItem; |
---|
| 4514 | + CheckboxMenuItem toggleFullScreenItem; |
---|
| 4515 | + CheckboxMenuItem toggleTimelineItem; |
---|
4444 | 4516 | CheckboxMenuItem toggleRenderItem; |
---|
4445 | 4517 | CheckboxMenuItem toggleDebugItem; |
---|
4446 | 4518 | CheckboxMenuItem toggleFrustumItem; |
---|
.. | .. |
---|
4467 | 4539 | JSplitPane gridPanel; |
---|
4468 | 4540 | JSplitPane bigPanel; |
---|
4469 | 4541 | JPanel bigThree; |
---|
4470 | | - JTabbedPane jtp; |
---|
4471 | | - JPanel cameraPanel; |
---|
| 4542 | + JTabbedPane scenePanel; |
---|
| 4543 | + JPanel centralPanel; |
---|
| 4544 | + JSplitPane cameraPanel; |
---|
| 4545 | + JPanel timelinePanel; |
---|
| 4546 | + JMenuBar timelineMenubar; |
---|
4472 | 4547 | JSplitPane framePanel; |
---|
4473 | 4548 | JTextArea/*Field*/ nameField; |
---|
4474 | | - cButton textureButton; |
---|
| 4549 | + //cButton textureButton; |
---|
4475 | 4550 | cButton okButton; |
---|
4476 | 4551 | cButton applyButton; |
---|
4477 | 4552 | cButton cancelButton; |
---|
.. | .. |
---|
4579 | 4654 | NumberSlider opacityPowerField; |
---|
4580 | 4655 | JTree jTree; |
---|
4581 | 4656 | //ObjectUI parent; |
---|
| 4657 | + |
---|
| 4658 | + NumberSlider normalpushField; |
---|
4582 | 4659 | } |
---|