comparison include/hhsdb.h @ 13:bbd65edf71d4

Implement Hhs DB update dialog.
author pyon@macmini
date Sat, 24 May 2014 10:25:13 +0900
parents
children a2ad87cad48b
comparison
equal deleted inserted replaced
12:52958cd4a073 13:bbd65edf71d4
1 // Filename : hhsdb.h
2 // Last Change: 21-May-2014.
3 //
4
5 #ifndef __HHSDB_H__
6 #define __HHSDB_H__
7
8 #include "common.h"
9
10 class HhsDialog : public wxDialog
11 {
12 DECLARE_EVENT_TABLE()
13 private:
14
15 protected:
16 wxFilePickerCtrl* m_filePicker;
17 wxButton* m_buttonUpdate;
18 wxButton* m_buttonCancel;
19
20 public:
21 HhsDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style );
22 ~HhsDialog();
23 void OnUpdate( wxCommandEvent& WXUNUSED(event) );
24 };
25
26 enum
27 {
28 ID_FPICKR = wxID_HIGHEST + 130,
29 ID_UPDATE,
30 };
31
32 #endif //__HHSDB_H__
33