comparison include/id.h @ 0:2f5584f0d127

first commit.
author pyon@macmini
date Sat, 08 Jun 2019 16:21:40 +0900
parents
children f40a65687079
comparison
equal deleted inserted replaced
-1:000000000000 0:2f5584f0d127
1 // Filename : id.h
2 // Last Change: 2019-06-07 Fri 22:31:04.
3 //
4 #pragma once
5
6 #include <wx/wx.h>
7
8 /* Mask */
9 // Pixel
10 #define SPL_W 4900
11 #define SPL_H 300
12 #define OPN1_W SPL_W
13 #define OPN1_H 300
14 #define OPN2_W SPL_W
15 #define OPN2_H 1800
16
17 // Device Context
18 #define SPL_DCW 800
19 #define SPL_DCH 50
20 #define OPN1_DCW SPL_DCW
21 #define OPN1_DCH 50
22 #define OPN2_DCW SPL_DCW
23 #define OPN2_DCH 300
24
25 /* Guess */
26 // Pixel
27 #define MNAME_W 288
28 #define MNAME_H 86
29 #define MHNO_W 288
30 #define MHNO_H 49
31
32 /* Thumbnail */
33 #define THUMB_W 60
34 #define THUMB_H 80
35
36 /* Identifier */
37 enum
38 {
39 ID_SPNX1 = wxID_HIGHEST + 1,
40 ID_SPNY1,
41 ID_SPNW1,
42 ID_SPNH1,
43 ID_SPNX2,
44 ID_SPNY2,
45 ID_SPNW2,
46 ID_SPNH2,
47 ID_SPNX3,
48 ID_SPNY3,
49 ID_SPNW3,
50 ID_SPNH3,
51 ID_SPNX4,
52 ID_SPNY4,
53 ID_SPNW4,
54 ID_SPNH4,
55 ID_RST1,
56 ID_RST2,
57 ID_RST3,
58 ID_RST4,
59 ID_MERGE,
60 ID_PRINT,
61
62 ID_MKDIR,
63 ID_FMOVE,
64
65 ID_MOVE,
66
67 ID_WORK,
68 ID_SCAN,
69
70 ID_SLDR,
71 ID_SELALL,
72 ID_SELDEL,
73 ID_UPDT,
74 };
75