107
|
1 package junotu;
|
|
2
|
|
3 import java.util.Vector;
|
|
4
|
|
5 import java.awt.Component;
|
|
6 import javax.swing.JPanel;
|
|
7 import javax.swing.Box;
|
|
8 import javax.swing.JScrollPane;
|
|
9 import javax.swing.JButton;
|
|
10
|
|
11 import java.awt.BorderLayout;
|
|
12 import java.awt.FlowLayout;
|
|
13 import javax.swing.BoxLayout;
|
|
14
|
|
15 import java.awt.event.ActionEvent;
|
|
16 import java.awt.event.ActionListener;
|
|
17
|
111
|
18 import junotu.Main;
|
107
|
19 import junotu.Window.TabInterface;
|
|
20 import junotu.OptionTree;
|
111
|
21 import junotu.Card;
|
107
|
22
|
|
23 public class TabOptions extends JPanel implements ActionListener, TabInterface {
|
|
24
|
|
25 private static final String ACTION_PATH_BUTTON = "path_button";
|
|
26
|
|
27 private static class Option extends JPanel implements ActionListener {
|
|
28 TabOptions events;
|
|
29
|
|
30 @Override
|
|
31 public void actionPerformed( ActionEvent e )
|
|
32 {
|
|
33 if( events != null ) {
|
|
34 events.actionPerformed( new ActionEvent( this, e.getID(), e.getActionCommand(), e.getWhen(), e.getModifiers() ) );
|
|
35 }
|
|
36 }
|
|
37 }
|
|
38
|
|
39 private static class OptionFolder extends Option {
|
|
40
|
|
41 OptionTree.OptionFolder folder;
|
|
42
|
|
43 public OptionFolder( TabOptions events_, OptionTree.OptionFolder folder_ )
|
|
44 {
|
|
45 setLayout( new BoxLayout( this, BoxLayout.X_AXIS ) );
|
|
46 events = events_;
|
|
47 folder = folder_;
|
111
|
48
|
107
|
49 JButton button = new JButton( folder.brief );
|
111
|
50
|
107
|
51 this.add(button);
|
111
|
52
|
107
|
53 if( folder.hint.length() > 0 ) {
|
|
54 button.setToolTipText( folder.hint );
|
|
55 }
|
111
|
56
|
107
|
57 button.addActionListener(this);
|
|
58 }
|
|
59 }
|
|
60 private static class OptionCategory extends Option {}
|
|
61 private static class OptionCheckbox extends Option {}
|
|
62 private static class OptionSlider extends Option {}
|
|
63 private static class OptionNumberCounter extends Option {}
|
|
64 private static class OptionString extends Option {}
|
|
65 private static class OptionAction extends Option {}
|
|
66
|
|
67 static public final OptionTree OPTION_TREE;
|
|
68 static {
|
|
69 OPTION_TREE = new OptionTree();
|
111
|
70 OPTION_TREE.root = new OptionTree.OptionFolder( Main.PROGRAM_NAME, Main.PROGRAM_NAME+" options." );
|
|
71
|
107
|
72 OptionTree.OptionFolder f1 = OPTION_TREE.add( new OptionTree.OptionFolder( "1", "Folder one." ) );
|
|
73 OptionTree.OptionFolder f2 = OPTION_TREE.add( new OptionTree.OptionFolder( "2", "Folder two." ) );
|
|
74 OptionTree.OptionFolder f3 = OPTION_TREE.add( new OptionTree.OptionFolder( "3", "Folder three." ) );
|
111
|
75 OptionTree.OptionFolder developer = OPTION_TREE.add( new OptionTree.OptionFolder(
|
|
76 "Development / Internal",
|
|
77 "Development-related options. Be careful, those options were not designed with safety or intutiveness in mind. "+
|
|
78 "Misusing them could corrupt your card database."
|
|
79 ) );
|
|
80
|
107
|
81 f1.add( new OptionTree.OptionFolder( "1.1", "Folder one one." ) );
|
|
82 f1.add( new OptionTree.OptionFolder( "1.2", "Folder one two." ) );
|
|
83 f1.add( new OptionTree.OptionFolder( "1.3", "Folder one three." ) );
|
|
84
|
|
85 f2.add( new OptionTree.OptionFolder( "2.1", "Folder two one." ) );
|
|
86 f2.add( new OptionTree.OptionFolder( "2.2", "Folder two two." ) );
|
|
87 f2.add( new OptionTree.OptionFolder( "2.3", "Folder two three." ) );
|
|
88
|
|
89 f3.add( new OptionTree.OptionFolder( "3.1", "Folder three one." ) );
|
|
90 f3.add( new OptionTree.OptionFolder( "3.2", "Folder three two." ) );
|
|
91 f3.add( new OptionTree.OptionFolder( "3.3", "Folder three three." ) );
|
111
|
92
|
|
93 developer.add( new OptionTree.OptionCheckbox(
|
|
94 Card.TAG_OPTION_PREFIX+"show_internal_tags",
|
|
95 "Show 'internal' tags.",
|
|
96 "Show tags prefixed with '_', which are normally hidden.",
|
|
97 false
|
|
98 ) );
|
|
99
|
|
100 developer.add( new OptionTree.OptionCategory( "Actions", "" ) );
|
|
101
|
|
102 developer.add( new OptionTree.OptionAction(
|
|
103 "Resave all cards",
|
|
104 "Go over the whole card database, load each card and save each card. "+
|
|
105 "Does not update user edit timestamp, meaning card ordering should not change on the search page. "+
|
|
106 "This might be a useful thing to run after changing "+Main.PROGRAM_NAME+" version (updating or downgrading)."
|
|
107 ) );
|
|
108
|
107
|
109 }
|
|
110
|
|
111 public Card card;
|
|
112 public Vector<OptionTree.OptionFolder> path = new Vector<OptionTree.OptionFolder>();
|
|
113
|
|
114 JPanel pathBox;
|
|
115 Box optionList;
|
|
116
|
|
117 public TabOptions()
|
|
118 {
|
|
119 setLayout( new BorderLayout() );
|
|
120 pathBox = new JPanel();
|
|
121 optionList = Box.createVerticalBox();
|
|
122 JScrollPane scroll = new JScrollPane(optionList);
|
|
123 JButton apply = new JButton("Apply");
|
111
|
124
|
107
|
125 pathBox.setLayout( new FlowLayout( FlowLayout.LEFT ) );
|
111
|
126
|
107
|
127 add( pathBox, BorderLayout.NORTH );
|
|
128 add( scroll, BorderLayout.CENTER );
|
|
129 add( apply, BorderLayout.SOUTH );
|
111
|
130
|
107
|
131 path.add( OPTION_TREE.root );
|
111
|
132
|
107
|
133 scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
|
|
134
|
|
135 }
|
|
136
|
|
137 @Override
|
|
138 public void onSwitchedTo()
|
|
139 {
|
|
140 generate();
|
|
141 }
|
|
142
|
|
143 public void generate()
|
|
144 {
|
|
145 optionList.removeAll();
|
|
146 pathBox.removeAll();
|
|
147 OptionTree.OptionFolder page = path.get( path.size()-1 );
|
|
148 for( int i = 0; i < page.options.size(); i++ ) {
|
|
149 OptionTree.Option<?> option = page.options.get(i);
|
|
150 if( option instanceof OptionTree.OptionFolder ) {
|
|
151 optionList.add( new OptionFolder( this, (OptionTree.OptionFolder)option ) );
|
|
152 } else {
|
|
153 System.out.print( "TabOptions, generate: Unknown option type '"+option.getClass().getName()+"', cannot create interface.\n" );
|
|
154 }
|
|
155 }
|
|
156 optionList.add( Box.createVerticalGlue() );
|
|
157 for( int i = 0; i < path.size(); i++ ) {
|
|
158 JButton button = new JButton( path.get(i).brief );
|
|
159 pathBox.add( button );
|
|
160 button.setActionCommand( ACTION_PATH_BUTTON );
|
|
161 button.addActionListener(this);
|
111
|
162 if( path.get(i).hint.length() > 0 ) {
|
|
163 button.setToolTipText( path.get(i).hint );
|
|
164 }
|
107
|
165 }
|
|
166 pathBox.add( Box.createHorizontalGlue() );
|
|
167
|
|
168 revalidate();
|
|
169 repaint();
|
|
170 }
|
|
171
|
|
172 public void actionPerformed( ActionEvent e )
|
|
173 {
|
|
174 Object source = e.getSource();
|
|
175 String command = e.getActionCommand();
|
|
176
|
|
177 switch( command ) {
|
|
178 case ACTION_PATH_BUTTON: {
|
|
179 Component[] buttons = pathBox.getComponents();
|
|
180 for( int i = 0; i < buttons.length; i++ ) {
|
|
181 if( buttons[i] == source ) {
|
|
182 path.setSize( i+1 );
|
|
183 generate();
|
|
184 return;
|
|
185 }
|
|
186 }
|
|
187 }
|
|
188 }
|
|
189
|
|
190 if( source instanceof OptionFolder ) {
|
|
191 OptionFolder clicked = (OptionFolder)source;
|
|
192 path.add( clicked.folder );
|
|
193 generate();
|
|
194 }
|
|
195 }
|
|
196
|
|
197 }
|