summaryrefslogtreecommitdiff
path: root/java/ImageProcessing/framework/BaseButton.java
blob: 0694d8fbf51e07eaeabcefda8fec9f6a62dd491a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package imaging.framework;

import java.awt.*;
import imaging.filters.*;

public class BaseButton extends Panel
{
  public BaseButton (String title, String description, ImageApp parent)
  {
    this.setLayout (new BorderLayout ());
    this.button_ = new Button (title);
    this.add ("Center", this.button_);
    this.resize (100, 100);
    this.description_ = description;
    this.parent_ = parent;
  }

  public boolean mouseEnter(Event evt, int x, int y)
  {
    this.parent_.displayStatus (this.description_);
    return true;
  }

  public boolean mouseExit(Event evt, int x, int y)
  {
    this.parent_.displayStatus ("");
    return true;
  }

  protected ImageApp parent_;
  private String description_;
  private Button button_;
}

class URLDialogButton extends BaseButton
{
  public URLDialogButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
    this.openURLFrame_ = new URLFrame ("Open URL", this.parent_, true);
  }

  public boolean action (Event e, Object arg)
  {
    this.openURLFrame_.show ();
    return true;
  }
  private URLFrame openURLFrame_;
}

class SaveButton extends BaseButton
{
  public SaveButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
    this.openURLFrame_ = new URLFrame ("Save Image", this.parent_, false);
  }

  public boolean action (Event e, Object arg)
  {
    this.openURLFrame_.show ();
    return true;
  }
  private URLFrame openURLFrame_;
}

class ReloadButton extends BaseButton
{
  public ReloadButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    this.parent_.reloadFilters ();
    return true;
  }
}

class ApplyButton extends BaseButton
{
  public ApplyButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    this.parent_.apply ();
    return true;
  }
}

class ResetButton extends BaseButton
{
  public ResetButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    this.parent_.resetImage ();
    return true;
  }
}

class ZoomInButton extends BaseButton
{
  public ZoomInButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    this.parent_.zoomFactor (1.6);
    return true;
  }
}

class ZoomOutButton extends BaseButton
{
  public ZoomOutButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    this.parent_.zoomFactor (0.625);
    return true;
  }
}


class AboutButton extends BaseButton
{
  public AboutButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    DialogManager.popDialog (DialogType.ABOUT, null);
    return true;
  }
}

class HelpButton extends BaseButton
{
  public HelpButton (String title, String desc, ImageApp parent)
  {
    super (title, desc, parent);
  }

  public boolean action (Event e, Object arg)
  {
    DialogManager.popDialog (DialogType.HELP, null);
    return true;
  }
}

class ChoicePanel extends Panel
{
  public ChoicePanel (String desc, ImageApp parent)
  {
    this.description_ = desc;
    this.parent_ = parent;

    this.loadFilters ();
    // Set the layout of the Choice Panel. Note that the Choice Panel
    // holds the choice button of filters.
    this.setLayout (new FlowLayout ());
    this.resize (150, 100);
  }

  public void choice (Choice choice)
  {
    this.choice_ = choice;
  }

  public Choice choice ()
  {
    return this.choice_;
  }

  public void loadFilters ()
  {
    // First remove all components of the panel including the
    // choices of filters
    this.removeAll ();

    // Now create new choices
    this.choice_ = this.parent_.getFilters ();

    // Add the choices to our choice panel
    this.add (this.choice_);
  }

  public boolean mouseEnter(Event evt, int x, int y)
  {
    MedFilter filter = null;
    String displayString = null;
    String filterName = this.choice_.getSelectedItem ();

    if (filterName.compareTo ("Filters:") == 0)
      displayString = "No filter selected";
    else
      {
	filter = (MedFilter) this.parent_.getFilter (filterName);
	displayString = filter.info ();
      }
    this.parent_.displayStatus (displayString);
    //    this.parent_.displayStatus (this.description_);
    return true;
  }

  public boolean mouseExit(Event evt, int x, int y)
  {
    this.parent_.displayStatus ("");
    return true;
  }
  
  private Choice choice_;
  private ImageApp parent_;
  String description_;
}