-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefines.java
More file actions
executable file
·30 lines (27 loc) · 966 Bytes
/
Defines.java
File metadata and controls
executable file
·30 lines (27 loc) · 966 Bytes
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
/*
* Projet : Trustopics
* Version : 0.2.1
* Fichier : Defines.java
*/
import java.awt.Color;
public class Defines {
static final Color UIcolForeGDrawing = new Color(107,28,115);
static final Color UIcolBackGDrawing = new Color(0,0,0);
static final Color UIcolForeGText = new Color(255,203,0);
static final Color UIcolForeGDrawingCDE1 = new Color(147,118,230);
static final Color UIcolForeGDrawingCDE2 = new Color(49,73,82);
static final int MaxPage = 2;
static final int MaxTopic = 8;
static final int Timer = 1;
static final int WebWaitDialog = 20;
static final int WebWaitClose = 30;
static RoundProgress roundProgress;
static double elpasedTime;
static int filesDownload;
static TrustButton trustButton;
static boolean roundProgressIsVisible = false;
static boolean topicsUpdateIsInProgress = false;
static boolean eventMouseIsActivated = false;
static boolean selectTopicIsInProgress = false;
static boolean connectionIsOk = false;
}