Mercurial > mercurial > hgweb_madnm.cgi
comparison src/custom.cpp @ 1:f40a65687079
small fix.
| author | pyon@macmini |
|---|---|
| date | Mon, 10 Jun 2019 05:56:36 +0900 |
| parents | 2f5584f0d127 |
| children | 45d4fd954c31 |
comparison
equal
deleted
inserted
replaced
| 0:2f5584f0d127 | 1:f40a65687079 |
|---|---|
| 1 // Filename : custom.cpp | 1 // Filename : custom.cpp |
| 2 // Last Change: 2019-06-07 金 17:36:31. | 2 // Last Change: 2019-06-09 Sun 16:57:44. |
| 3 // | 3 // |
| 4 | 4 |
| 5 #include "id.h" | 5 #include "id.h" |
| 6 #include "appconf.h" | 6 #include "appconf.h" |
| 7 #include "custom.h" | 7 #include "custom.h" |
| 221 { | 221 { |
| 222 m_spnx = spnx; m_spny = spny; | 222 m_spnx = spnx; m_spny = spny; |
| 223 m_spnw = spnw; m_spnh = spnh; | 223 m_spnw = spnw; m_spnh = spnh; |
| 224 } | 224 } |
| 225 | 225 |
| 226 /*** ListThumbnail Class ***/ | |
| 227 ListThumbnail::ListThumbnail( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) | |
| 228 : wxListView( parent, id, pos, size, style ) | |
| 229 { | |
| 230 FileList m_filelist; | |
| 231 // array imagelist | |
| 232 // array imagelist ( selected : blue ) | |
| 233 // array selected | |
| 234 } | |
| 235 | |
| 236 ListThumbnail::~ListThumbnail() | |
| 237 { | |
| 238 } | |
| 239 | |
| 240 // Event Table | |
| 241 BEGIN_EVENT_TABLE( ListThumbnail, wxListView ) | |
| 242 END_EVENT_TABLE() | |
| 243 | |
| 244 /* Event Handlers & Functions */ | |
| 245 // Event Handlers | |
| 246 // Functions | |
| 247 int ListThumbnail::Reload( void ) | |
| 248 { | |
| 249 return 1000; | |
| 250 } | |
| 251 |
