Mercurial > mercurial > hgweb_rsearcher.cgi
annotate include/id.h @ 7:29829e98d510
add net.cpp
author | pyon@macmini |
---|---|
date | Fri, 26 Oct 2018 21:05:11 +0900 |
parents | 9a8b581c1993 |
children | 82f9af6aa7e4 |
rev | line source |
---|---|
4 | 1 // Filename : id.h |
7 | 2 // Last Change: 2018-10-26 ‹à 10:43:22. |
4 | 3 // |
4 | |
5 #ifndef __ID_H__ | |
6 #define __ID_H__ | |
7 | |
8 #include <wx/wx.h> | |
9 | |
7 | 10 #define RSVER "1.1" |
11 #define RSRELEASE "2018.10.29" | |
5 | 12 |
4 | 13 enum { |
14 ID_MAIN = wxID_HIGHEST + 1, | |
15 ID_SEARCH, | |
5 | 16 ID_PSEARCH, |
4 | 17 ID_LIST, |
18 ID_NBOOK, | |
7 | 19 |
20 // invisible for shortcut-key | |
4 | 21 ID_SLDR, |
7 | 22 ID_FOCUS, |
6 | 23 ID_PZOOM, |
24 ID_MZOOM, | |
25 ID_DARK, | |
4 | 26 ID_TIMER, |
27 ID_LOGOUT, | |
28 }; | |
29 | |
30 #endif // __ID_H__ | |
31 |