-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPotPlayerConsts.java
68 lines (45 loc) · 2.07 KB
/
PotPlayerConsts.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
package potplayer;
public class PotPlayerConsts {
static final int PLAY_BUTTON_W = 42;
static final int PLAY_BUTTON_H = 42;
static final int STOP_BUTTON_W = 42;
static final int STOP_BUTTON_H = 42;
static final int PREV_BUTTON_W = 42;
static final int PREV_BUTTON_H = 42;
static final int NEXT_BUTTON_W = 42;
static final int NEXT_BUTTON_H = 42;
static final int OPEN_BUTTON_W = 42;
static final int OPEN_BUTTON_H = 42;
static final int FIND_BUTTON_W = 42;
static final int FIND_BUTTON_H = 42;
static final int ABOUT_BUTTN_W = 42;
static final int ABOUT_BUTTN_H = 42;
static final int LIST_BUTTON_W = 42;
static final int LIST_BUTTON_H = 42;
static final int TIME_LABEL_W = 1920;
static final int TIME_LABEL_H = 42;
static final int TITLE_LABEL_W = 90;
static final int TITLE_LABEL_H = 32;
static final int FNAME_LABEL_W = 1920;
static final int FNAME_LABEL_H = 32;
static final int TOP_BUTTON_W = 32;
static final int TOP_BUTTON_H = 32;
static final int MIN_BUTTON_W = 32;
static final int MIN_BUTTON_H = 32;
static final int MAX_BUTTON_W = 32;
static final int MAX_BUTTON_H = 32;
static final int CLOSE_BUTTON_W = 32;
static final int CLOSE_BUTTON_H = 32;
static final int TIME_SLIDER_W = 1920;
static final int TIME_SLIDER_H = 22;
static final int VOLUME_SLISER_W = 1920;
static final int VOLUME_SLISER_H = 22;
static final int TOTAL_MODULE_HIGH = (PLAY_BUTTON_H + TIME_SLIDER_H + TITLE_LABEL_H) + 1;
static final int PLAYER_DEFAULT_W = (966 - 510);
static final int PLAYER_DEFAULT_H = (636 - 236);
static final int PLAYER_MIN_W = 328;
static final int PLAYER_MIN_H = 168;
static final int MUSIC_MODE_WIDTH = 426;
static final int MUSIC_MODE_HIGHT = 242;
static final int ADSORPTION_RANGE = 20;
}