1
1
package sample ;
2
2
3
3
import com .jfoenix .controls .JFXButton ;
4
+ import com .jfoenix .controls .JFXListView ;
5
+ import com .jfoenix .controls .JFXScrollPane ;
4
6
import com .jfoenix .controls .JFXTextArea ;
5
7
import javafx .animation .FadeTransition ;
6
8
import javafx .animation .TranslateTransition ;
9
+ import javafx .beans .value .ChangeListener ;
10
+ import javafx .beans .value .ObservableValue ;
7
11
import javafx .event .ActionEvent ;
8
12
import javafx .event .Event ;
9
13
import javafx .fxml .FXML ;
10
14
import javafx .fxml .FXMLLoader ;
11
15
import javafx .fxml .Initializable ;
16
+ import javafx .geometry .Orientation ;
17
+ import javafx .geometry .Rectangle2D ;
12
18
import javafx .scene .Node ;
13
19
import javafx .scene .Scene ;
14
20
import javafx .scene .image .Image ;
15
21
import javafx .scene .input .MouseEvent ;
16
22
import javafx .scene .layout .BorderPane ;
17
23
import javafx .scene .layout .FlowPane ;
18
24
import javafx .scene .layout .Pane ;
25
+ import javafx .scene .layout .VBox ;
26
+ import javafx .stage .Screen ;
19
27
import javafx .stage .Stage ;
20
28
import javafx .stage .WindowEvent ;
21
29
import javafx .util .Duration ;
25
33
26
34
public class NoteController implements Initializable {
27
35
28
- @ FXML private JFXTextArea noteArea ;
29
- @ FXML private BorderPane addButton , ellipseButton , deleteButton , progressBar ;
30
36
@ FXML private JFXButton color1 , color2 , color3 , color4 , color5 , color6 , color7 ;
37
+ @ FXML private BorderPane addButton , ellipseButton , deleteButton , progressBar ;
38
+ @ FXML private JFXTextArea noteArea ;
39
+ @ FXML private VBox scrollBox ;
40
+ @ FXML
41
+ private JFXListView <Pane > imageView ;
31
42
32
43
@ FXML private FlowPane leftPane , rightPane ;
33
44
@ FXML private Pane midPane , separator ;
@@ -136,8 +147,16 @@ public void initialize(URL location, ResourceBundle resources) {
136
147
}
137
148
});
138
149
150
+ imageView .getSelectionModel ().selectedItemProperty ().addListener (new ChangeListener <Pane >() {
151
+ @ Override
152
+ public void changed (ObservableValue <? extends Pane > observable , Pane oldValue , Pane newValue ) {
153
+
154
+ System .out .println (imageView .getSelectionModel ().getSelectedIndex ());
155
+ }
156
+ });
157
+
139
158
initialColor = Constants .randomColor ;
140
- fillTitleBarColor (Constants .hexColor [initialColor ]);
159
+ fillTitleBarColor (Constants .HEXCOLOR [initialColor ]);
141
160
142
161
cardDetail = Constants .card ;
143
162
Constants .card = null ;
@@ -154,7 +173,7 @@ public void colorHandler(ActionEvent event) {
154
173
155
174
for (int i = 0 ; i < Constants .LENGTH ; i ++) {
156
175
if (event .getSource () == arrColor [i ]) {
157
- fillTitleBarColor (Constants .hexColor [i ]);
176
+ fillTitleBarColor (Constants .HEXCOLOR [i ]);
158
177
}
159
178
}
160
179
}
@@ -175,7 +194,7 @@ private void disappearColors(FadeTransition[] fadeArray, int index) {
175
194
fadeArray [index ].setFromValue (1 );
176
195
fadeArray [index ].setToValue (0 );
177
196
fadeArray [index ].play ();
178
- fadeArray [index ].setOnFinished (event -> disappearColors (fadeArray , index + 1 ));
197
+ fadeArray [index ].setOnFinished (event -> disappearColors (fadeArray , index + 1 ));
179
198
}
180
199
181
200
public void setNoteArea (String text ) {
@@ -186,14 +205,16 @@ public void setNoteArea(String text) {
186
205
Stage stage = (Stage ) ((Node )event .getSource ()).getScene ().getWindow ();
187
206
stage .setY (event .getScreenY () - note_y );
188
207
stage .setX (event .getScreenX () - note_x );
189
-
190
208
}
191
209
192
210
@ FXML public void mousePressed (MouseEvent event ) {
193
211
note_x = event .getSceneX ();
194
212
note_y = event .getSceneY ();
195
213
}
196
214
215
+ private void resizeImageView (int size ) {
216
+ scrollBox .setPrefHeight (size ); imageView .setPrefHeight (size -1 );
217
+ }
197
218
private void deleteNote (MouseEvent event )
198
219
{
199
220
if (cardDetail != null )
0 commit comments