.. | .. |
---|
176 | 176 | copyItem.addActionListener(this); |
---|
177 | 177 | pasteItem = menu.add(new MenuItem("Paste")); |
---|
178 | 178 | pasteItem.addActionListener(this); |
---|
179 | | - menu.add("-"); |
---|
180 | 179 | |
---|
181 | 180 | menu.add("-"); |
---|
182 | 181 | pasteIntoItem = menu.add(new MenuItem("Paste into")); |
---|
.. | .. |
---|
246 | 245 | |
---|
247 | 246 | cameraMenu.add(toggleDebugItem = new CheckboxMenuItem("Debug")); |
---|
248 | 247 | toggleDebugItem.addItemListener(this); |
---|
249 | | - toggleDebugItem.setState(CameraPane.DEBUG); |
---|
| 248 | + toggleDebugItem.setState(Globals.DEBUG); |
---|
250 | 249 | |
---|
251 | 250 | cameraMenu.add(toggleFrustumItem = new CheckboxMenuItem("Frustum")); |
---|
252 | 251 | toggleFrustumItem.addItemListener(this); |
---|
.. | .. |
---|
369 | 368 | billboardItem.addActionListener(this); |
---|
370 | 369 | csgItem = menu.add(new MenuItem("CSG")); |
---|
371 | 370 | csgItem.addActionListener(this); |
---|
372 | | - shadowXItem = menu.add(new MenuItem("Shadow X")); |
---|
| 371 | + shadowXItem = menu.add(new MenuItem("Shadow Red")); |
---|
373 | 372 | shadowXItem.addActionListener(this); |
---|
374 | | - shadowYItem = menu.add(new MenuItem("Shadow Y")); |
---|
| 373 | + shadowYItem = menu.add(new MenuItem("Shadow Green")); |
---|
375 | 374 | shadowYItem.addActionListener(this); |
---|
376 | | - shadowZItem = menu.add(new MenuItem("Shadow Z")); |
---|
| 375 | + shadowZItem = menu.add(new MenuItem("Shadow Blue")); |
---|
377 | 376 | shadowZItem.addActionListener(this); |
---|
378 | 377 | if (Globals.ADVANCED) |
---|
379 | 378 | { |
---|
.. | .. |
---|
470 | 469 | markleavesItem.addActionListener(this); |
---|
471 | 470 | unmarkleavesItem = menu.add(new MenuItem("Unmark Leaves")); |
---|
472 | 471 | unmarkleavesItem.addActionListener(this); |
---|
| 472 | + rewindleavesItem = menu.add(new MenuItem("Rewind Leaves")); |
---|
| 473 | + rewindleavesItem.addActionListener(this); |
---|
| 474 | + unrewindleavesItem = menu.add(new MenuItem("Unrewind Leaves")); |
---|
| 475 | + unrewindleavesItem.addActionListener(this); |
---|
| 476 | + randomleavesItem = menu.add(new MenuItem("Random Leaves")); |
---|
| 477 | + randomleavesItem.addActionListener(this); |
---|
| 478 | + unrandomleavesItem = menu.add(new MenuItem("Unrandom Leaves")); |
---|
| 479 | + unrandomleavesItem.addActionListener(this); |
---|
473 | 480 | menu.add("-"); |
---|
474 | 481 | flipVItem = menu.add(new MenuItem("Flip V")); |
---|
475 | 482 | flipVItem.addActionListener(this); |
---|
.. | .. |
---|
527 | 534 | |
---|
528 | 535 | void SetupUI2(ObjEditor oe) |
---|
529 | 536 | { |
---|
| 537 | + // June 2019 |
---|
| 538 | + if (oe == null) |
---|
| 539 | + { |
---|
| 540 | + //super.SetupUI2(this); |
---|
| 541 | + //return; |
---|
| 542 | + } |
---|
| 543 | + |
---|
| 544 | + if (copy != group) |
---|
| 545 | + { |
---|
| 546 | + //super.SetupUI2(this); |
---|
| 547 | + } |
---|
| 548 | + |
---|
530 | 549 | //new Exception().printStackTrace(); |
---|
531 | 550 | |
---|
532 | 551 | oe.radioPanel = new JPanel(new GridBagLayout()); |
---|
.. | .. |
---|
557 | 576 | */ |
---|
558 | 577 | //this.AddOptions(oe.toolbarPanel, oe.aConstraints); |
---|
559 | 578 | |
---|
560 | | - oe.toolbarPanel.add(undoButton = new cButton("Undo", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 579 | + //oe.toolbarPanel.add(minButton = new cButton("Min", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 580 | + //minButton.setToolTipText("Minimize window"); |
---|
| 581 | + //minButton.addActionListener(this); |
---|
| 582 | + |
---|
| 583 | + oe.toolbarPanel.add(maxButton = new cButton("\u271A", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 584 | + maxButton.setToolTipText("Maximize window"); |
---|
| 585 | + maxButton.addActionListener(this); |
---|
| 586 | + |
---|
| 587 | + oe.toolbarPanel.add(fullButton = new cButton("\u2b1c", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 588 | + fullButton.setToolTipText("Full-screen window"); |
---|
| 589 | + fullButton.addActionListener(this); |
---|
| 590 | + |
---|
| 591 | + oe.toolbarPanel.add(undoButton = new cButton("\u21a9", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
561 | 592 | undoButton.setToolTipText("Undo changes"); |
---|
562 | 593 | undoButton.addActionListener(this); |
---|
563 | 594 | |
---|
564 | | - oe.toolbarPanel.add(redoButton = new cButton("Redo", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 595 | + oe.toolbarPanel.add(redoButton = new cButton("\u21aa", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
565 | 596 | redoButton.setToolTipText("Redo changes"); |
---|
566 | 597 | redoButton.addActionListener(this); |
---|
567 | 598 | |
---|
568 | | - oe.toolbarPanel.add(saveButton = new cButton("Save", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 599 | + oe.toolbarPanel.add(saveButton = new cButton("\u21e3", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
569 | 600 | saveButton.setToolTipText("Save changes"); |
---|
570 | 601 | saveButton.addActionListener(this); |
---|
571 | 602 | |
---|
.. | .. |
---|
573 | 604 | liveCB.setToolTipText("Enable animation"); |
---|
574 | 605 | liveCB.addItemListener(this); |
---|
575 | 606 | |
---|
576 | | - oe.toolbarPanel.add(oneStepButton = new cButton("Step", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 607 | + oe.toolbarPanel.add(oneStepButton = new cButton("\u29f4", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
577 | 608 | oneStepButton.setToolTipText("Animate one step forward"); |
---|
578 | 609 | oneStepButton.addActionListener(this); |
---|
579 | 610 | |
---|
.. | .. |
---|
581 | 612 | fastCB.setToolTipText("Fast mode"); |
---|
582 | 613 | fastCB.addItemListener(this); |
---|
583 | 614 | |
---|
584 | | - oe.toolbarPanel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints); |
---|
| 615 | + oe.toolbarPanel.add(trackCB = new cCheckBox(":", CameraPane.TRACK)); //, oe.aConstraints); |
---|
585 | 616 | trackCB.setToolTipText("Enable tracking"); |
---|
586 | 617 | trackCB.addItemListener(this); |
---|
587 | 618 | |
---|
.. | .. |
---|
605 | 636 | |
---|
606 | 637 | oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL)); |
---|
607 | 638 | |
---|
608 | | - oe.toolbarPanel.add(twoButton = new cButton("|+|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 639 | + oe.toolbarPanel.add(twoButton = new cButton("|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
609 | 640 | twoButton.setToolTipText("Show center view only"); |
---|
610 | 641 | twoButton.addActionListener(this); |
---|
611 | | - oe.toolbarPanel.add(fourButton = new cButton("+||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 642 | + oe.toolbarPanel.add(fourButton = new cButton("-||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
612 | 643 | fourButton.addActionListener(this); |
---|
613 | 644 | fourButton.setToolTipText("Show left panel only"); |
---|
614 | | - oe.toolbarPanel.add(sixButton = new cButton("+|+|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 645 | + oe.toolbarPanel.add(sixButton = new cButton("-|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
615 | 646 | sixButton.setToolTipText("2-column layout left"); |
---|
616 | 647 | sixButton.addActionListener(this); |
---|
617 | | - oe.toolbarPanel.add(threeButton = new cButton("|+|+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 648 | + oe.toolbarPanel.add(threeButton = new cButton("|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
618 | 649 | threeButton.setToolTipText("2-column layout right"); |
---|
619 | 650 | threeButton.addActionListener(this); |
---|
620 | | - oe.toolbarPanel.add(sevenButton = new cButton("+|+|+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 651 | + oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
621 | 652 | sevenButton.setToolTipText("3-column layout"); |
---|
622 | 653 | sevenButton.addActionListener(this); |
---|
623 | 654 | // |
---|
.. | .. |
---|
632 | 663 | //oe.treePanel.add(clearButton = new cButton("X"), oe.aConstraints); |
---|
633 | 664 | //clearButton.addActionListener(this); |
---|
634 | 665 | |
---|
635 | | - cGridBag commandsPanel = new cGridBag(); |
---|
636 | | - |
---|
637 | | - commandsPanel.add(editButton = new cButton("+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 666 | + editCommandsPanel.add(editButton = new cButton("+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
638 | 667 | editButton.setToolTipText("Edit selection"); |
---|
639 | 668 | editButton.addActionListener(this); |
---|
640 | 669 | |
---|
641 | | - commandsPanel.add(uneditButton = new cButton("-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 670 | + editCommandsPanel.add(uneditButton = new cButton("-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
642 | 671 | uneditButton.setToolTipText("Unedit selection"); |
---|
643 | 672 | uneditButton.addActionListener(this); |
---|
644 | 673 | |
---|
645 | | - commandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints); |
---|
| 674 | + editCommandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints); |
---|
646 | 675 | allParamsButton.setToolTipText("Edit all params"); |
---|
647 | 676 | allParamsButton.addActionListener(this); |
---|
648 | 677 | |
---|
649 | | - commandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 678 | + editCommandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
650 | 679 | clearPanelButton.setToolTipText("Clear edit panel"); |
---|
651 | 680 | clearPanelButton.addActionListener(this); |
---|
652 | 681 | |
---|
653 | | - commandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 682 | + editCommandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
654 | 683 | unselectButton.setToolTipText("Unselect"); |
---|
655 | 684 | unselectButton.addActionListener(this); |
---|
656 | 685 | |
---|
657 | | - commandsPanel.preferredHeight = 1; |
---|
| 686 | + editCommandsPanel.preferredHeight = 1; |
---|
658 | 687 | |
---|
659 | | - oe.treePanel.add(commandsPanel); |
---|
660 | | - oe.treePanel.Return(); |
---|
| 688 | +// oe.treePanel.add(commandsPanel); |
---|
| 689 | +// oe.treePanel.Return(); |
---|
661 | 690 | |
---|
662 | 691 | // oe.aConstraints.gridx += 1; |
---|
663 | 692 | // oe.aConstraints.weighty = 0; |
---|
.. | .. |
---|
809 | 838 | |
---|
810 | 839 | void SetupViews(ObjEditor oe) |
---|
811 | 840 | { |
---|
| 841 | + theFrame = this; |
---|
| 842 | + |
---|
812 | 843 | oe.SetupViews(); |
---|
813 | 844 | |
---|
814 | 845 | System.out.println("SetupViews"); |
---|
.. | .. |
---|
1420 | 1451 | shadow.material = new cMaterial(obj.material); |
---|
1421 | 1452 | shadow.material.diffuse = 0.0001f; |
---|
1422 | 1453 | shadow.material.specular = 0.0001f; |
---|
| 1454 | + //shadow.projectedVertices[1].x = 300; |
---|
1423 | 1455 | |
---|
1424 | 1456 | makeSomething(shadow); |
---|
1425 | 1457 | } |
---|
.. | .. |
---|
1969 | 2001 | if (source == dumpItem) |
---|
1970 | 2002 | { |
---|
1971 | 2003 | DumpObject(); |
---|
| 2004 | + } else |
---|
| 2005 | + if (source == minButton) |
---|
| 2006 | + { |
---|
| 2007 | + Minimize(); |
---|
| 2008 | + } else |
---|
| 2009 | + if (source == maxButton) |
---|
| 2010 | + { |
---|
| 2011 | + Maximize(); |
---|
| 2012 | + } else |
---|
| 2013 | + if (source == fullButton) |
---|
| 2014 | + { |
---|
| 2015 | + ToggleFullScreen(); |
---|
1972 | 2016 | } else |
---|
1973 | 2017 | if (source == undoButton) |
---|
1974 | 2018 | { |
---|
.. | .. |
---|
2609 | 2653 | { |
---|
2610 | 2654 | MarkLeaves(false); |
---|
2611 | 2655 | } else |
---|
| 2656 | + if (source == rewindleavesItem) |
---|
| 2657 | + { |
---|
| 2658 | + RewindLeaves(true); |
---|
| 2659 | + } else |
---|
| 2660 | + if (source == unrewindleavesItem) |
---|
| 2661 | + { |
---|
| 2662 | + RewindLeaves(false); |
---|
| 2663 | + } else |
---|
| 2664 | + if (source == randomleavesItem) |
---|
| 2665 | + { |
---|
| 2666 | + RandomLeaves(true); |
---|
| 2667 | + } else |
---|
| 2668 | + if (source == unrandomleavesItem) |
---|
| 2669 | + { |
---|
| 2670 | + RandomLeaves(false); |
---|
| 2671 | + } else |
---|
2612 | 2672 | if (source == flipVItem) |
---|
2613 | 2673 | { |
---|
2614 | 2674 | FlipV(true); |
---|
.. | .. |
---|
2875 | 2935 | bigThree.ClearUI(); |
---|
2876 | 2936 | bigThree.add(centralPanel); |
---|
2877 | 2937 | bigThree.FlushUI(); |
---|
| 2938 | + |
---|
| 2939 | + cameraView.requestFocusInWindow(); |
---|
| 2940 | + |
---|
| 2941 | +// refreshContents(true); |
---|
| 2942 | +// |
---|
| 2943 | +// try |
---|
| 2944 | +// { |
---|
| 2945 | +// java.awt.Robot bot = new java.awt.Robot(); |
---|
| 2946 | +// int mask = InputEvent.BUTTON1_MASK; |
---|
| 2947 | +// bot.mouseMove(100, 100); |
---|
| 2948 | +// bot.mousePress(mask); |
---|
| 2949 | +// bot.mouseRelease(mask); |
---|
| 2950 | +// } |
---|
| 2951 | +// catch (Exception e) |
---|
| 2952 | +// { |
---|
| 2953 | +// |
---|
| 2954 | +// } |
---|
| 2955 | + |
---|
2878 | 2956 | } else |
---|
2879 | 2957 | if (source == threeButton) |
---|
2880 | 2958 | { |
---|
.. | .. |
---|
2911 | 2989 | bigThree.add(centralPanel); |
---|
2912 | 2990 | bigThree.add(XYZPanel); |
---|
2913 | 2991 | bigThree.FlushUI(); |
---|
| 2992 | + |
---|
| 2993 | + cameraView.requestFocusInWindow(); |
---|
2914 | 2994 | } else |
---|
2915 | 2995 | if (source == fourButton) |
---|
2916 | 2996 | { |
---|
.. | .. |
---|
2946 | 3026 | bigThree.ClearUI(); |
---|
2947 | 3027 | bigThree.add(scenePanel); |
---|
2948 | 3028 | bigThree.FlushUI(); |
---|
| 3029 | + |
---|
| 3030 | + cameraView.requestFocusInWindow(); |
---|
2949 | 3031 | } else |
---|
2950 | 3032 | if (source == sixButton) |
---|
2951 | 3033 | { |
---|
.. | .. |
---|
2982 | 3064 | bigThree.add(scenePanel); |
---|
2983 | 3065 | bigThree.add(centralPanel); |
---|
2984 | 3066 | bigThree.FlushUI(); |
---|
| 3067 | + |
---|
| 3068 | + cameraView.requestFocusInWindow(); |
---|
2985 | 3069 | } else |
---|
2986 | 3070 | if (source == sevenButton) |
---|
2987 | 3071 | { |
---|
.. | .. |
---|
3019 | 3103 | bigThree.add(centralPanel); |
---|
3020 | 3104 | bigThree.add(XYZPanel); |
---|
3021 | 3105 | bigThree.FlushUI(); |
---|
| 3106 | + |
---|
| 3107 | + cameraView.requestFocusInWindow(); |
---|
3022 | 3108 | } else |
---|
3023 | 3109 | if (source == rootButton) |
---|
3024 | 3110 | { |
---|
.. | .. |
---|
3030 | 3116 | EditObject(obj); |
---|
3031 | 3117 | } |
---|
3032 | 3118 | |
---|
| 3119 | + cameraView.requestFocusInWindow(); |
---|
3033 | 3120 | refreshContents(true); |
---|
3034 | 3121 | } else |
---|
3035 | 3122 | if (source == closeButton) |
---|
.. | .. |
---|
3051 | 3138 | break; |
---|
3052 | 3139 | } |
---|
3053 | 3140 | } |
---|
| 3141 | + |
---|
| 3142 | + cameraView.requestFocusInWindow(); |
---|
3054 | 3143 | refreshContents(true); |
---|
3055 | 3144 | } else |
---|
3056 | 3145 | if (source == editItem || source == editButton) |
---|
.. | .. |
---|
3155 | 3244 | } |
---|
3156 | 3245 | |
---|
3157 | 3246 | // fix "+" issue |
---|
3158 | | - group.editWindow = this; |
---|
| 3247 | + //group.editWindow = this; |
---|
3159 | 3248 | |
---|
3160 | 3249 | /* |
---|
3161 | 3250 | currentLayout = radio.layout; |
---|
.. | .. |
---|
3168 | 3257 | //group.parent = null; // ROOT |
---|
3169 | 3258 | //group.attributes = -1; |
---|
3170 | 3259 | ResetModel(); |
---|
| 3260 | + |
---|
| 3261 | + cameraView.requestFocusInWindow(); |
---|
3171 | 3262 | refreshContents(true); |
---|
3172 | 3263 | } else if (event.getSource() == editCameraItem) |
---|
3173 | 3264 | { |
---|
.. | .. |
---|
3191 | 3282 | } |
---|
3192 | 3283 | |
---|
3193 | 3284 | boolean useclient = false; |
---|
3194 | | - cRadio radio; |
---|
3195 | 3285 | |
---|
3196 | 3286 | void ToggleRoot() |
---|
3197 | 3287 | { |
---|
.. | .. |
---|
4146 | 4236 | refreshContents(); |
---|
4147 | 4237 | } |
---|
4148 | 4238 | |
---|
| 4239 | + void RewindLeaves(boolean hide) |
---|
| 4240 | + { |
---|
| 4241 | + group.selection.RewindLeaves(hide); |
---|
| 4242 | + refreshContents(); |
---|
| 4243 | + } |
---|
| 4244 | + |
---|
| 4245 | + void RandomLeaves(boolean hide) |
---|
| 4246 | + { |
---|
| 4247 | + group.selection.RandomLeaves(hide); |
---|
| 4248 | + refreshContents(); |
---|
| 4249 | + } |
---|
| 4250 | + |
---|
4149 | 4251 | void SetTexRes(int tr) |
---|
4150 | 4252 | { |
---|
4151 | 4253 | group.selection.SetTexRes(tr); |
---|
.. | .. |
---|
4329 | 4431 | |
---|
4330 | 4432 | //if (child.parent != null) |
---|
4331 | 4433 | //child.parent.addSelectee(child); |
---|
| 4434 | + objEditor.SetMaterial(child); |
---|
4332 | 4435 | group.addSelectee(child); |
---|
4333 | 4436 | } |
---|
4334 | 4437 | } |
---|
.. | .. |
---|
4369 | 4472 | { |
---|
4370 | 4473 | objEditor.ClearInfo(); // .GetMaterial()); |
---|
4371 | 4474 | |
---|
4372 | | - for (int i=0; i < group.selection.size(); i++) |
---|
| 4475 | + for (int i=0; i < group.selection.Size(); i++) |
---|
4373 | 4476 | { |
---|
4374 | | - Object3D child = (Object3D) group.selection.reserve(i); |
---|
| 4477 | + Object3D child = (Object3D) group.selection.get(i); |
---|
4375 | 4478 | |
---|
4376 | | - objEditor.SetMaterial(child); |
---|
4377 | 4479 | objEditor.AddInfo(child, this, true); |
---|
4378 | 4480 | System.err.println("info : " + child.GetPath()); |
---|
4379 | | - |
---|
4380 | | - group.selection.release(i); |
---|
4381 | 4481 | } |
---|
4382 | 4482 | |
---|
4383 | 4483 | objEditor.SetText(); // jan 2014 |
---|
.. | .. |
---|
5185 | 5285 | cButton clearpanelButton; |
---|
5186 | 5286 | cButton unselectButton; |
---|
5187 | 5287 | |
---|
5188 | | - cButton saveButton; |
---|
| 5288 | + cButton minButton; |
---|
| 5289 | + cButton maxButton; |
---|
| 5290 | + cButton fullButton; |
---|
5189 | 5291 | cButton undoButton; |
---|
5190 | 5292 | cButton redoButton; |
---|
| 5293 | + cButton saveButton; |
---|
5191 | 5294 | cButton oneStepButton; |
---|
5192 | 5295 | |
---|
5193 | 5296 | cButton screenfitButton; |
---|
.. | .. |
---|
5200 | 5303 | cButton closeButton; |
---|
5201 | 5304 | |
---|
5202 | 5305 | cButton setsupportButton; |
---|
5203 | | - |
---|
5204 | | - cButton twoButton; |
---|
5205 | | - cButton sixButton; |
---|
5206 | | - cButton threeButton; |
---|
5207 | | - cButton sevenButton; |
---|
5208 | | - cButton fourButton; // full panel |
---|
5209 | | - cButton oneButton; // full XYZ |
---|
5210 | | - //cButton currentLayout; |
---|
5211 | 5306 | |
---|
5212 | 5307 | // |
---|
5213 | 5308 | //Composite |
---|
.. | .. |
---|
5285 | 5380 | private MenuItem showleavesItem; |
---|
5286 | 5381 | private MenuItem markleavesItem; |
---|
5287 | 5382 | private MenuItem unmarkleavesItem; |
---|
| 5383 | + private MenuItem rewindleavesItem; |
---|
| 5384 | + private MenuItem unrewindleavesItem; |
---|
| 5385 | + private MenuItem randomleavesItem; |
---|
| 5386 | + private MenuItem unrandomleavesItem; |
---|
5288 | 5387 | |
---|
5289 | 5388 | private MenuItem flipVItem; |
---|
5290 | 5389 | private MenuItem unflipVItem; |
---|