-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainFrame.cpp
More file actions
40 lines (30 loc) · 1.28 KB
/
MainFrame.cpp
File metadata and controls
40 lines (30 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version Jun 5 2014)
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#include "JxqyStc.h"
#include "MainFrame.h"
#include "wx/msgdlg.h"
///////////////////////////////////////////////////////////////////////////
MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style )
{
this->SetSizeHints( wxDefaultSize, wxDefaultSize );
wxBoxSizer* bSizer1;
bSizer1 = new wxBoxSizer( wxVERTICAL );
m_scintilla1 = new JxqyStc( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, wxEmptyString );
m_scintilla1->SetUseTabs( true );
m_scintilla1->SetTabWidth( 4 );
m_scintilla1->SetIndent( 4 );
m_scintilla1->SetTabIndents( false );
m_scintilla1->SetBackSpaceUnIndents( false );
m_scintilla1->SetFunctionKeywordFromFile(wxT("E:\\temp\\ProgramingTemp\\cusstc\\jxqy2.txt"));
bSizer1->Add( m_scintilla1, 1, wxEXPAND | wxALL, 5 );
this->SetSizer( bSizer1 );
this->Layout();
this->Centre( wxBOTH );
}
MainFrame::~MainFrame()
{
}