Mercurial > mercurial > hgweb_golang.cgi
comparison src/kaigo/horori/alloc/alloc.h @ 65:0369656be06c default tip
many changes.
author | pyon@macmini |
---|---|
date | Fri, 20 May 2022 06:30:34 +0900 |
parents | 20b42e2deae1 |
children |
comparison
equal
deleted
inserted
replaced
64:ad5c30ee5cf1 | 65:0369656be06c |
---|---|
1 // Filename : alloc.h | 1 // Filename : alloc.h |
2 // Last Change: 2020-04-16 –Ø 12:22:39. | 2 // Last Change: 2021-05-07 ‹à 17:09:06. |
3 // | 3 // |
4 #pragma once | 4 #pragma once |
5 | 5 |
6 #include <wx/artprov.h> | 6 #include <wx/artprov.h> |
7 #include <wx/xrc/xmlres.h> | 7 #include <wx/xrc/xmlres.h> |
10 #include <wx/gdicmn.h> | 10 #include <wx/gdicmn.h> |
11 #include <wx/font.h> | 11 #include <wx/font.h> |
12 #include <wx/colour.h> | 12 #include <wx/colour.h> |
13 #include <wx/settings.h> | 13 #include <wx/settings.h> |
14 #include <wx/filepicker.h> | 14 #include <wx/filepicker.h> |
15 #include <wx/checkbox.h> | |
15 #include <wx/bitmap.h> | 16 #include <wx/bitmap.h> |
16 #include <wx/image.h> | 17 #include <wx/image.h> |
17 #include <wx/icon.h> | 18 #include <wx/icon.h> |
18 #include <wx/button.h> | 19 #include <wx/button.h> |
19 #include <wx/sizer.h> | 20 #include <wx/sizer.h> |
26 | 27 |
27 protected: | 28 protected: |
28 wxStaticText* m_staticTextPdf; | 29 wxStaticText* m_staticTextPdf; |
29 wxFilePickerCtrl* m_filePickerPdf1; | 30 wxFilePickerCtrl* m_filePickerPdf1; |
30 wxFilePickerCtrl* m_filePickerPdf2; | 31 wxFilePickerCtrl* m_filePickerPdf2; |
32 wxCheckBox* m_checkBoxSkipPdf; | |
31 wxStaticText* m_staticTextTif; | 33 wxStaticText* m_staticTextTif; |
32 wxDirPickerCtrl* m_dirPickerTif; | 34 wxDirPickerCtrl* m_dirPickerTif; |
35 wxCheckBox* m_checkBoxJ2T; | |
33 wxStaticText* m_staticTextWork; | 36 wxStaticText* m_staticTextWork; |
34 wxDirPickerCtrl* m_dirPickerWork; | 37 wxDirPickerCtrl* m_dirPickerWork; |
35 wxButton* m_buttonAlloc; | 38 wxButton* m_buttonAlloc; |
36 | 39 |
37 virtual void OnAlloc(wxCommandEvent& event); | 40 virtual void OnAlloc(wxCommandEvent& event); |
38 void CreateControls(); | 41 void CreateControls(); |
39 void InitializeControlsValue(); | 42 void InitializeControlsValue(); |
40 void Pdf2Tif(); | 43 void Pdf2Jpg(); |
41 void AllocateTif(); | 44 bool AllocateTif(); |
42 | 45 |
43 public: | 46 public: |
44 AllocFrame(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(244,157), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL); | 47 AllocFrame(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(244,157), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL); |
45 ~AllocFrame(); | 48 ~AllocFrame(); |
46 }; | 49 }; |