Mercurial > mercurial > hgweb_rsearcher.cgi
comparison include/mngdb.h @ 16:b651aa41b9d4 default tip
hhsinfo method (server)
author | pyon@macmini |
---|---|
date | Mon, 15 Jul 2019 07:03:05 +0900 |
parents | c1dc1fcee7fe |
children |
comparison
equal
deleted
inserted
replaced
15:c262e17de9b1 | 16:b651aa41b9d4 |
---|---|
1 // Filename : mngdb.h | 1 // Filename : mngdb.h |
2 // Last Change: 2018-11-21 08:27:58. | 2 // Last Change: 2019-07-15 Mon 06:54:37. |
3 // | 3 // |
4 | 4 |
5 #ifndef __MNGDB_H__ | 5 #pragma once |
6 #define __MNGDB_H__ | |
7 | 6 |
8 #include <wx/gdicmn.h> | 7 #include <wx/gdicmn.h> |
9 #include <wx/font.h> | 8 #include <wx/font.h> |
10 #include <wx/colour.h> | 9 #include <wx/colour.h> |
11 #include <wx/settings.h> | 10 #include <wx/settings.h> |
44 void OnBuild( wxCommandEvent& event ); | 43 void OnBuild( wxCommandEvent& event ); |
45 void OnUpload( wxCommandEvent& event ); | 44 void OnUpload( wxCommandEvent& event ); |
46 void OnIndex( wxCommandEvent& event ); | 45 void OnIndex( wxCommandEvent& event ); |
47 void OnExit( wxCommandEvent& event ); | 46 void OnExit( wxCommandEvent& event ); |
48 | 47 |
48 void CreateControls( void ); | |
49 void SetDBdir( wxString dir ); | 49 void SetDBdir( wxString dir ); |
50 void SetServer( wxString server ) { m_server = server; }; | 50 void SetServer( wxString server ) { m_server = server; }; |
51 void Upload( wxString file ); | 51 void Upload( wxString file ); |
52 }; | 52 }; |
53 | 53 |
54 #endif //__MNGDB_H__ | |
55 |