source: java/main/src/main/java/com/framsticks/gui/FrameJoinable.java @ 101

Last change on this file since 101 was 101, checked in by psniegowski, 11 years ago

HIGHLIGHTS:

  • improve tree side notes
  • improve GUI layout
  • add foldable list of occured events to EventControl?
  • improve automatic type conversion in proxy listeners
  • implement several Access functionalities as algorithms independent of Access type
  • introduce draft base classes for distributed experiments
  • automatically register dependant Java classes to FramsClass? registry
  • add testing prime experiment and configuration
  • simplify and improve task dispatching

CHANGELOG:
Improve task dispatching in RemoteTree?.

GUI no longer hangs on connection problems.

Make all dispatchers joinables.

Refactorize Thread dispatcher.

Remove Task and PeriodicTask?.

Use Java utilities in those situations.

Reworking tasks dispatching.

Fix bug in EventControl? listener dispatching.

Minor improvements.

Add testing configuration for ExternalProcess? in GUI.

More improvement to prime.

Support for USERREADONLY in GUI.

Add that flag to various params in Java classes.

Remove redundant register clauses from several FramsClassAnnotations?.

Automatically gather and register dependant classes.

Add configuration for prime.

Improve Simulator class.

Add prime.xml configuration.

Introduce draft Experiment and Simulator classes.

Add prime experiment tests.

Enclose typical map with listeners into SimpleUniqueList?.

Needfile works in GUI.

Improve needfile handling in Browser.

More improvement with NeedFile?.

Implementing needfile.

Update test.

Rename ChangeEvent? to TestChangeEvent?.

Automatic argument type search in RemoteTree? listeners.

MultiParamLoader? uses AccessProvider?. By default old implementation
enclosed in AccessStash? or Registry.

Minor changes.

Rename SourceInterface? to Source.

Also improve toString of File and ListSource?.

Remove unused SimpleSource? class.

Add clearing in HistoryControl?.

Show entries in table at EventControl?.

Improve EventControl?.

Add listeners registration to EventControl?.

Add foldable table to HistoryControl?.

Add control row to Procedure and Event controls.

Improve layout of controls.

Another minor change to gui layout.

Minor improvement in the SliderControl?.

Minor changes.

Move ReflectionAccess?.Backend to separate file.

It was to cluttered.

Cleanup in ReflectionAccess?.

Move setMin, setMax, setDef to AccessOperations?.

Extract loading operation into AccessOperations?.

Append Framsticks to name of UnsupportedOperationException?.

The java.lang.UnsupportedOperationException? was shadowing this class.

Rename params.Util to params.ParamsUtil?.

Several improvements.

Minor changes.

Implement revert functionality.

Improve local changes management.

Minor improvement.

Remove methods rendered superfluous after SideNoteKey? improvement.

Improve SideNoteKey?.

It is now generic type, so explicit type specification at
call site is no more needed.

Introduce SideNoteKey? interface.

Only Objects implementing that key may be used as side note keys.

Minor improvements.

Use strings instead of ValueControls? in several gui mappings.

File size: 3.3 KB
Line 
1package com.framsticks.gui;
2
3import java.awt.BorderLayout;
4import java.awt.Container;
5import java.awt.event.WindowAdapter;
6import java.awt.event.WindowEvent;
7import java.util.concurrent.atomic.AtomicBoolean;
8
9import javax.swing.JFrame;
10import javax.swing.UIManager;
11
12import org.apache.logging.log4j.Logger;
13import org.apache.logging.log4j.LogManager;
14
15import com.framsticks.util.FramsticksException;
16import com.framsticks.util.dispatching.ExceptionResultHandler;
17import com.framsticks.util.dispatching.RunAt;
18import com.framsticks.util.dispatching.ThrowExceptionHandler;
19
20public abstract class FrameJoinable extends SwingJoinable<JFrame> implements ExceptionResultHandler {
21        private static final Logger log =
22                LogManager.getLogger(FrameJoinable.class);
23
24        protected String title;
25
26        protected final StatusBar statusBar;
27
28
29        /**
30         *
31         */
32        public FrameJoinable() {
33                statusBar = new StatusBar(this);
34        }
35
36        public void setTitle(String title) {
37                this.title = title;
38                if (hasSwing()) {
39                        getSwing().setTitle(title);
40                }
41        }
42
43        /**
44         * @return the statusBar
45         */
46        public StatusBar getStatusBar() {
47                return statusBar;
48        }
49
50        @Override
51        public String getName() {
52                return title;
53        }
54
55        private final static AtomicBoolean sentGuiInitialization = new AtomicBoolean(false);
56
57
58        @Override
59        protected void joinableStart() {
60
61                if (sentGuiInitialization.compareAndSet(false, true)) {
62                        dispatch(new RunAt<FrameJoinable>(ThrowExceptionHandler.getInstance()) {
63                                @Override
64                                protected void runAt() {
65                                        try {
66                                                boolean found = false;
67                                                // for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
68                                                //      log.info("look and feel available: {}", info.getName());
69                                                //      if ("Nimbus".equals(info.getName())) {
70                                                //              UIManager.setLookAndFeel(info.getClassName());
71                                                //              found = true;
72                                                //              break;
73                                                //      }
74                                                // }
75                                                if (!found) {
76                                                        UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");
77                                                }
78                                                JFrame.setDefaultLookAndFeelDecorated(true);
79                                        } catch (Exception e) {
80                                                throw new FramsticksException().msg("failed to initialize Look&Feel").cause(e);
81                                        }
82                                }
83                        });
84                }
85
86                super.joinableStart();
87                dispatch(new RunAt<FrameJoinable>(ThrowExceptionHandler.getInstance()) {
88                        @Override
89                        protected void runAt() {
90                                getSwing().setVisible(true);
91                        }
92                });
93
94        }
95
96        @Override
97        protected void joinableInterrupt() {
98                super.joinableInterrupt();
99
100                dispatch(new RunAt<Frame>(ThrowExceptionHandler.getInstance()) {
101                        @Override
102                        protected void runAt() {
103                                finishJoinable();
104                        }
105                });
106
107        }
108
109        @Override
110        protected void joinableFinish() {
111                super.joinableFinish();
112                log.debug("disposing frame {}", this);
113                getSwing().dispose();
114        }
115
116        @Override
117        protected void joinableJoin() throws InterruptedException {
118                super.joinableJoin();
119
120        }
121
122        @Override
123        protected void initializeGui() {
124                setSwing(new JFrame(title));
125                statusBar.initializeGui();
126
127                Container contentPane = getSwing().getContentPane();
128                contentPane.setLayout(new BorderLayout());
129                contentPane.add(statusBar.getSwing(), BorderLayout.SOUTH);
130
131                getSwing().setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
132
133                getSwing().addWindowListener(new WindowAdapter() {
134                        @Override
135                        public void windowClosing(WindowEvent e) {
136                                log.info("received closing");
137                                interruptJoinable();
138                        }
139                });
140
141
142        }
143
144        @Override
145        public void handle(FramsticksException exception) {
146                statusBar.handle(exception);
147        }
148
149}
Note: See TracBrowser for help on using the repository browser.