comparison include/id.h @ 14:c1dc1fcee7fe

print zoom.
author pyon@macmini
date Sun, 09 Dec 2018 14:38:15 +0900
parents f5ffc34f045a
children c262e17de9b1
comparison
equal deleted inserted replaced
13:f5ffc34f045a 14:c1dc1fcee7fe
1 // Filename : id.h 1 // Filename : id.h
2 // Last Change: 2018-11-14 13:54:49. 2 // Last Change: 2018-11-21 08:25:58.
3 // 3 //
4 4
5 #ifndef __ID_H__ 5 #ifndef __ID_H__
6 #define __ID_H__ 6 #define __ID_H__
7 7
8 #include <wx/wx.h> 8 #include <wx/wx.h>
9 9
10 #define RSVER "1.6a" 10 #define RSVER "1.6b"
11 #define RSRELEASE "2018.11.19" 11 #define RSRELEASE "2018.11.30"
12 12
13 enum { 13 enum {
14 /* for mainframe */ 14 /* for mainframe */
15 ID_MAIN = wxID_HIGHEST + 1, 15 ID_MAIN = wxID_HIGHEST + 1,
16 ID_SEARCH, 16 ID_SEARCH,
37 ID_PW, 37 ID_PW,
38 38
39 /* for mange db */ 39 /* for mange db */
40 ID_MNGBLD, 40 ID_MNGBLD,
41 ID_MNGUPLD, 41 ID_MNGUPLD,
42 ID_MNGIDX,
42 ID_MNGEXIT, 43 ID_MNGEXIT,
44
45 /* for index */
46 ID_DPBGN,
47 ID_DPEND,
43 }; 48 };
44 49
45 #endif // __ID_H__ 50 #endif // __ID_H__
46 51