Mercurial > mercurial > hgweb_searcher2.cgi
comparison src/preview.cpp @ 7:c6099901f666
fix makefile ( for MinGW ).
author | pyon@macmini |
---|---|
date | Mon, 18 Apr 2011 18:59:41 +0900 |
parents | 0f566397974e |
children | db7bd315e52c |
comparison
equal
deleted
inserted
replaced
6:3e756069f215 | 7:c6099901f666 |
---|---|
1 // Filename : preview.cpp | 1 // Filename : preview.cpp |
2 // Last Change: 13-Apr-2011. | 2 // Last Change: 16-Apr-2011. |
3 // | 3 // |
4 | 4 |
5 #include "preview.h" | 5 #include "preview.h" |
6 | 6 |
7 // for all others, include the necessary headers (this file is usually all you | 7 // for all others, include the necessary headers (this file is usually all you |
13 | 13 |
14 | 14 |
15 // constructor | 15 // constructor |
16 FramePreview::FramePreview( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style ) | 16 FramePreview::FramePreview( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style ) |
17 { | 17 { |
18 this->SetSize( 1400, 1000 ); | 18 this->SetSize( 1200, 1000 ); |
19 this->SetBackgroundColour( wxColour(wxT("WHEAT")) ); | 19 this->SetBackgroundColour( wxColour(wxT("WHEAT")) ); |
20 | 20 |
21 wxBoxSizer* bSizer; | 21 wxBoxSizer* bSizer; |
22 bSizer = new wxBoxSizer( wxHORIZONTAL ); | 22 bSizer = new wxBoxSizer( wxHORIZONTAL ); |
23 | 23 |
132 } | 132 } |
133 | 133 |
134 return; | 134 return; |
135 } | 135 } |
136 | 136 |
137 |