130 lines
3.1 KiB
C++
130 lines
3.1 KiB
C++
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// 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
|
||
|
|
||
|
// 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 );
|
||
|
dialog.ShowModal();
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|