Mercurial > mercurial > hgweb_rsearcher.cgi
comparison include/id.h @ 9:ae89ce4793d8
add satellite-view.
author | pyon@macmini |
---|---|
date | Wed, 31 Oct 2018 20:10:29 +0900 |
parents | 82f9af6aa7e4 |
children | 36811fd22bd2 |
comparison
equal
deleted
inserted
replaced
8:82f9af6aa7e4 | 9:ae89ce4793d8 |
---|---|
1 // Filename : id.h | 1 // Filename : id.h |
2 // Last Change: 2018-10-30 11:07:41. | 2 // Last Change: 2018-10-31 16:40:38. |
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.2" | 10 #define RSVER "1.3" |
11 #define RSRELEASE "2018.10.30" | 11 #define RSRELEASE "2018.10.31" |
12 | 12 |
13 enum { | 13 enum { |
14 /* for mainframe */ | |
14 ID_MAIN = wxID_HIGHEST + 1, | 15 ID_MAIN = wxID_HIGHEST + 1, |
15 ID_SEARCH, | 16 ID_SEARCH, |
16 ID_PSEARCH, | 17 ID_PSEARCH, |
17 ID_LIST, | 18 ID_LIST, |
18 ID_NBOOK, | 19 ID_NBOOK, |
20 // invisible for shortcut-key | 21 // invisible for shortcut-key |
21 ID_SLDR, | 22 ID_SLDR, |
22 ID_FOCUS, | 23 ID_FOCUS, |
23 ID_PZOOM, | 24 ID_PZOOM, |
24 ID_MZOOM, | 25 ID_MZOOM, |
26 ID_SWIN, | |
25 ID_DARK, | 27 ID_DARK, |
26 ID_TIMER, | 28 ID_TIMER, |
27 ID_LOGOUT, | 29 ID_LOGOUT, |
30 | |
31 /* for auth */ | |
32 ID_UID, | |
33 ID_PW, | |
28 }; | 34 }; |
29 | 35 |
30 #endif // __ID_H__ | 36 #endif // __ID_H__ |
31 | 37 |