Mercurial > mercurial > hgweb_lesearcher.cgi
annotate include/index.h @ 0:615a15029602 default tip
first commit.
author | pyon@macmini |
---|---|
date | Sun, 10 Nov 2019 08:39:41 +0900 |
parents | |
children |
rev | line source |
---|---|
0 | 1 /* Filename : index.h |
2 Last Change: 2019-11-08 金 14:16:06. | |
3 by Takayuki Mutoh | |
4 */ | |
5 #pragma once | |
6 | |
7 #include <wx/frame.h> | |
8 #include <wx/dataview.h> | |
9 #include <wx/button.h> | |
10 class IndexFrame : public wxFrame | |
11 { | |
12 private: | |
13 | |
14 protected: | |
15 | |
16 public: | |
17 IndexFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("インデックス"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,300 ), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL ); | |
18 ~IndexFrame(); | |
19 }; | |
20 | |
21 |