-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
171 lines (142 loc) · 6.48 KB
/
Main.java
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
/*
* BSD 3-Clause License
*
* Copyright (c) 2020, Carsten Zerbst
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package de.cadoculus.javafx.minidockfx.demo;
import ch.qos.logback.classic.LoggerContext;
import ch.qos.logback.classic.joran.JoranConfigurator;
import ch.qos.logback.core.joran.spi.JoranException;
import de.cadoculus.javafx.minidockfx.MiniDockFXPane;
import de.cadoculus.javafx.minidockfx.MiniDockViewPosition;
import fr.brouillard.oss.cssfx.CSSFX;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Menu;
import javafx.scene.control.MenuBar;
import javafx.scene.control.MenuItem;
import javafx.scene.layout.BorderPane;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.URL;
import java.time.LocalTime;
import java.util.Random;
public class Main extends Application {
private static final Logger LOG = LoggerFactory.getLogger(MiniDockFXPane.class);
// Simply the 200 line down on https://material.io/resources/color
public static final String[] MATERIAL_DESIGN_COLORS = new String[]{
"#ef9a9a", "#f48fb1", "#ce93d8", "#b39ddb", "#9fa8da",
"#90caf9", "#81d4fa", "#80deea", "#80cbc4", "#a5d6a7",
"#c5e1a5", "#e6ee9c", "#fff59d", "#ffe082", "#ffcc80",
"#ffab91", "#bcaaa4", "#eeeeee", "#b0bec5"
};
private final Random random = new Random(42L);
@Override
public void start(Stage primaryStage) {
BorderPane root = new BorderPane();
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
MenuBar menubar = new MenuBar();
root.setTop(menubar);
final MiniDockFXPane mdf = new MiniDockFXPane();
root.setCenter(mdf);
// try {
// FXMLLoader loader = new FXMLLoader(MiniDockFXPane.class.getResource("DefaultDock.fxml"));
// AnchorPane ap = loader.load();
// mdf = (MiniDockFXPane) loader.getController();
//
// root.setCenter(ap);
// } catch (Exception exp) {
// LOG.error("failed to load fxml", exp);
// throw new IllegalStateException("failed to load MiniDockFXPane");
// }
Menu menu = new Menu("Tabs");
menubar.getMenus().add(menu);
for (MiniDockViewPosition pos : MiniDockViewPosition.values()) {
MenuItem mi = new MenuItem("add to " + pos);
menu.getItems().add(mi);
mi.setOnAction(actionEvent -> {
ExampleTabview1 etv = new ExampleTabview1("Tab " + pos + " " + LocalTime.now(), pos.name(), nextColor());
mdf.add(etv, pos);
});
}
Scene scene = new Scene(root, 600, 500);
scene.getStylesheets().add(MiniDockFXPane.class.getResource("minidockfx.css").toExternalForm());
CSSFX.start();
primaryStage.setTitle("MiniDockFX Demo");
primaryStage.setScene(scene);
primaryStage.show();
final ExampleTabview1 left = new ExampleTabview1("left", "left", nextColor());
final ExampleTabview1 left2 = new ExampleTabview1("left2", "left2", nextColor());
final ExampleTabview1 center = new ExampleTabview1("center", "center", nextColor());
// final ExampleTabview1 right = new ExampleTabview1("right");
final ExampleTabview1 bottom = new ExampleTabview1("bottom", "center", nextColor());
//
mdf.add(left, MiniDockViewPosition.LEFT);
mdf.add(left2, MiniDockViewPosition.LEFT);
mdf.add(center, MiniDockViewPosition.CENTER);
// mdf.add(right, MiniDockTabPosition.RIGHT);
mdf.add(bottom, MiniDockViewPosition.BOTTOM);
}
private Color nextColor() {
String color = MATERIAL_DESIGN_COLORS[random.nextInt(MATERIAL_DESIGN_COLORS.length - 1)];
return Color.web(color);
}
public static void main(String[] args) {
// assume SLF4J is bound to logback in the current environment
LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
try {
JoranConfigurator configurator = new JoranConfigurator();
configurator.setContext(context);
// Call context.reset() to clear any previous configuration, e.g. default
// configuration. For multi-step configuration, omit calling context.reset().
context.reset();
URL url = Main.class.getClassLoader().getResource("logback.xml");
System.out.println("url " + url);
configurator.doConfigure(url);
LOG.error("test error");
LOG.warn("test warn");
LOG.info("test info");
} catch (JoranException je) {
// StatusPrinter will handle this
}
launch(args);
}
}