diff options
author | Christi Scarborough <christi@coraline.org> | 2006-12-11 22:17:54 +0000 |
---|---|---|
committer | Christi Scarborough <christi@coraline.org> | 2006-12-11 22:17:54 +0000 |
commit | 46eb5c6bcdbd25664501df47d7d798f3e63acd29 (patch) | |
tree | bd51c9ba487212968eb16859f3e6921357bab056 /rbutil | |
parent | 303d1e0d1765369e599093a3a1718d845dd870a5 (diff) | |
download | rockbox-46eb5c6bcdbd25664501df47d7d798f3e63acd29.tar.gz rockbox-46eb5c6bcdbd25664501df47d7d798f3e63acd29.zip |
main.cpp shouldn't have been here. archos.ico should be binary.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11726 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil')
-rw-r--r-- | rbutil/archos.ico | bin | 21606 -> 0 bytes | |||
-rw-r--r-- | rbutil/main.cpp | 72 |
2 files changed, 0 insertions, 72 deletions
diff --git a/rbutil/archos.ico b/rbutil/archos.ico Binary files differdeleted file mode 100644 index 6c2171337e..0000000000 --- a/rbutil/archos.ico +++ /dev/null diff --git a/rbutil/main.cpp b/rbutil/main.cpp deleted file mode 100644 index e143171cbf..0000000000 --- a/rbutil/main.cpp +++ /dev/null @@ -1,72 +0,0 @@ -#include <wx/wxprec.h> - -#ifdef __BORLANDC__ - #pragma hdrstop -#endif - -#ifndef WX_PRECOMP - #include <wx/wx.h> -#endif - - -class MyApp : public wxApp -{ - public: - virtual bool OnInit(); -}; -IMPLEMENT_APP(MyApp); - -class MyFrame: public wxFrame -{ - public: - MyFrame(wxFrame *frame, const wxString& title); - ~MyFrame(); - private: - void OnQuit(wxCommandEvent& event); - void OnAbout(wxCommandEvent& event); - DECLARE_EVENT_TABLE(); -}; - -bool MyApp::OnInit() -{ - MyFrame* frame = new MyFrame(0L, _("wxWidgets Application Template")); - frame->Show(); - return true; -} - -int idMenuQuit = wxNewId(); -int idMenuAbout = wxNewId(); - -BEGIN_EVENT_TABLE(MyFrame, wxFrame) - EVT_MENU(idMenuQuit, MyFrame::OnQuit) - EVT_MENU(idMenuAbout, MyFrame::OnAbout) -END_EVENT_TABLE() - -MyFrame::MyFrame(wxFrame *frame, const wxString& title) - : wxFrame(frame, -1, title) -{ - wxMenuBar* mbar = new wxMenuBar(); - wxMenu* fileMenu = new wxMenu(""); - fileMenu->Append(idMenuQuit, _("&Quit\tAlt-F4"), _("Quit the application")); - mbar->Append(fileMenu, _("&File")); - - wxMenu* helpMenu = new wxMenu(""); - helpMenu->Append(idMenuAbout, _("&About\tF1"), _("Show info about this application")); - mbar->Append(helpMenu, _("&Help")); - - SetMenuBar(mbar); -} - -MyFrame::~MyFrame() -{ -} - -void MyFrame::OnQuit(wxCommandEvent& event) -{ - Close(); -} - -void MyFrame::OnAbout(wxCommandEvent& event) -{ - wxMessageBox(_("wxWidgets Application Template"), _("Welcome to...")); -} |