2002-04-07 10:50:00 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wxedit.cpp
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Created: 04/07/02
|
|
|
|
// Copyright:
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation "wxedit.cpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// For compilers that support precompilation
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
2002-04-07 16:46:55 -04:00
|
|
|
#include "wx/filename.h"
|
|
|
|
|
2002-04-07 10:50:00 -04:00
|
|
|
// Include private headers
|
|
|
|
#include "wxedit.h"
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// MyFrame
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(MyFrame,wxFrame)
|
|
|
|
EVT_MENU(ID_ABOUT, MyFrame::OnAbout)
|
|
|
|
EVT_MENU(ID_NEW, MyFrame::OnNew)
|
|
|
|
EVT_MENU(ID_OPEN, MyFrame::OnOpen)
|
|
|
|
EVT_MENU(ID_SAVE, MyFrame::OnSave)
|
|
|
|
EVT_MENU(ID_SAVEAS, MyFrame::OnSaveAs)
|
|
|
|
EVT_MENU(ID_QUIT, MyFrame::OnQuit)
|
|
|
|
EVT_CLOSE(MyFrame::OnCloseWindow)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
MyFrame::MyFrame( wxWindow *parent, wxWindowID id, const wxString &title,
|
|
|
|
const wxPoint &position, const wxSize& size, long style ) :
|
|
|
|
wxFrame( parent, id, title, position, size, style )
|
|
|
|
{
|
|
|
|
CreateMyMenuBar();
|
|
|
|
|
|
|
|
CreateStatusBar(1);
|
|
|
|
SetStatusText( "Welcome!" );
|
|
|
|
|
|
|
|
m_text = new wxTextCtrl( this, -1, "", wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::CreateMyMenuBar()
|
|
|
|
{
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
|
|
|
file_menu->Append( ID_ABOUT, "About...", "Program info" );
|
|
|
|
file_menu->AppendSeparator();
|
|
|
|
file_menu->Append( ID_NEW, "New...", "New text" );
|
|
|
|
file_menu->Append( ID_OPEN, "Open...", "Open text" );
|
|
|
|
file_menu->Append( ID_SAVE, "Save", "Save text" );
|
|
|
|
file_menu->Append( ID_SAVEAS, "Save as...", "Save text as..." );
|
|
|
|
file_menu->AppendSeparator();
|
|
|
|
file_menu->Append( ID_QUIT, "Quit...", "Quit program" );
|
|
|
|
|
|
|
|
wxMenuBar *menu_bar = new wxMenuBar();
|
|
|
|
menu_bar->Append( file_menu, "File" );
|
|
|
|
|
|
|
|
SetMenuBar( menu_bar );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnNew( wxCommandEvent &event )
|
|
|
|
{
|
|
|
|
m_text->Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnOpen( wxCommandEvent &event )
|
|
|
|
{
|
|
|
|
wxFileDialog dialog( this, "Open text", "", "",
|
|
|
|
"Text file (*.txt)|*.txt|"
|
|
|
|
"Any file (*)|*",
|
|
|
|
wxOPEN|wxFILE_MUST_EXIST );
|
2002-04-07 16:46:55 -04:00
|
|
|
if (dialog.ShowModal() == wxID_OK)
|
|
|
|
{
|
|
|
|
m_text->Clear();
|
|
|
|
|
|
|
|
#ifdef __WXX11__
|
|
|
|
wxFileName fname( dialog.GetPath() );
|
|
|
|
if ((fname.GetExt() == "cpp") ||
|
|
|
|
(fname.GetExt() == "c") ||
|
|
|
|
(fname.GetExt() == "h") ||
|
|
|
|
(fname.GetExt() == "cxx") ||
|
|
|
|
(fname.GetExt() == "hxx"))
|
|
|
|
{
|
|
|
|
m_text->SetLanguage( wxSOURCE_LANG_CPP );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (fname.GetExt() == "py")
|
|
|
|
{
|
|
|
|
m_text->SetLanguage( wxSOURCE_LANG_PYTHON );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ((fname.GetExt() == "pl") ||
|
|
|
|
(fname.GetExt() == "pm"))
|
|
|
|
{
|
|
|
|
m_text->SetLanguage( wxSOURCE_LANG_PYTHON );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_text->SetLanguage( wxSOURCE_LANG_NONE );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
m_text->LoadFile( dialog.GetPath() );
|
|
|
|
}
|
2002-04-07 10:50:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnSave( wxCommandEvent &event )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnSaveAs( wxCommandEvent &event )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnAbout( wxCommandEvent &event )
|
|
|
|
{
|
|
|
|
wxMessageDialog dialog( this, "Welcome to SuperApp 1.0\n(C)opyright Joe Hacker",
|
|
|
|
"About SuperApp", wxOK|wxICON_INFORMATION );
|
|
|
|
dialog.ShowModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnQuit( wxCommandEvent &event )
|
|
|
|
{
|
|
|
|
Close( TRUE );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnCloseWindow( wxCloseEvent &event )
|
|
|
|
{
|
|
|
|
// if ! saved changes -> return
|
|
|
|
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// MyApp
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
MyApp::MyApp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
|
|
|
MyFrame *frame = new MyFrame( NULL, -1, "SuperApp", wxPoint(20,20), wxSize(500,340) );
|
|
|
|
frame->Show( TRUE );
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MyApp::OnExit()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|