0
|
1 /* Filename : update.h
|
|
2 Last Change: 2019-11-08 金 14:19:19.
|
|
3 by Takayuki Mutoh
|
|
4 */
|
|
5 #pragma once
|
|
6
|
|
7 #include <wx/frame.h>
|
|
8 #include <wx/stattext.h>
|
|
9 #include <wx/filepicker.h>
|
|
10 #include <wx/button.h>
|
|
11
|
|
12 class UpdateDBFrame : public wxFrame
|
|
13 {
|
|
14 private:
|
|
15
|
|
16 protected:
|
|
17 enum
|
|
18 {
|
|
19 ID_UPDB = 1000
|
|
20 };
|
|
21
|
|
22 wxStaticText* m_staticTextHhs;
|
|
23 wxFilePickerCtrl* m_filePickerHhs;
|
|
24 wxStaticText* m_staticText5;
|
|
25 wxFilePickerCtrl* m_filePickerCM;
|
|
26 wxButton* m_buttonUpdate;
|
|
27
|
|
28 // Virtual event handlers, overide them in your derived class
|
|
29 virtual void OnUpdate( wxCommandEvent& event ) { event.Skip(); }
|
|
30
|
|
31 public:
|
|
32 UpdateDBFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("DB更新"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 430,130 ), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL );
|
|
33 ~UpdateDBFrame();
|
|
34 };
|
|
35
|