Index: AE/Installer/trunk/source/main.cpp
===================================================================
--- AE/Installer/trunk/source/main.cpp	(revision 496)
+++ 	(revision )
@@ -1,149 +1,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        aeinstallerapp.cpp
-// Purpose:     
-// Author:      
-// Modified by: 
-// Created:     07/05/2009 17:23:39
-// RCS-ID:      
-// Copyright:   
-// Licence:     
-/////////////////////////////////////////////////////////////////////////////
-
-// For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-#pragma hdrstop
-#endif
-
-#ifndef WX_PRECOMP
-#include "wx/wx.h"
-#endif
-
-////@begin includes
-////@end includes
-
-#include "main.h"
-#include <string>
-
-////@begin XPM images
-////@end XPM images
-
-
-/*
- * Application instance implementation
- */
-
-////@begin implement app
-IMPLEMENT_APP( AEInstallerApp )
-////@end implement app
-
-
-/*
- * AEInstallerApp type definition
- */
-
-IMPLEMENT_CLASS( AEInstallerApp, wxApp )
-
-
-/*
- * AEInstallerApp event table definition
- */
-
-BEGIN_EVENT_TABLE( AEInstallerApp, wxApp )
-
-////@begin AEInstallerApp event table entries
-////@end AEInstallerApp event table entries
-
-END_EVENT_TABLE()
-
-
-/*
- * Constructor for AEInstallerApp
- */
-
-AEInstallerApp::AEInstallerApp()
-{
-    Init();
-}
-
-
-/*
- * Member initialisation
- */
-
-void AEInstallerApp::Init()
-{
-	////@begin AEInstallerApp member initialisation
-	////@end AEInstallerApp member initialisation
-}
-
-/*
- * Initialisation for AEInstallerApp
- */
-MainWindow* TheWindow;
-bool AEInstallerApp::OnInit()
-{    
-	////@begin AEInstallerApp initialisation
-	// Remove the comment markers above and below this block
-	// to make permanent changes to the code.
-	
-#if wxUSE_XPM
-	wxImage::AddHandler(new wxXPMHandler);
-#endif
-#if wxUSE_LIBPNG
-	wxImage::AddHandler(new wxPNGHandler);
-#endif
-#if wxUSE_LIBJPEG
-	wxImage::AddHandler(new wxJPEGHandler);
-#endif
-#if wxUSE_GIF
-	wxImage::AddHandler(new wxGIFHandler);
-#endif
-	MainWindow* mainWindow = new MainWindow( NULL );
-	mainWindow->Show(true);
-	////@end AEInstallerApp initialisation
-	TheWindow = mainWindow;
-	
-	return true;
-}
-
-
-void setStatusArea( string s ) {
-	wxString wxs(s.c_str(), wxConvUTF8);
-	
-	TheWindow->StatusArea->SetStatusText(  wxs );
-	//TheWindow->StatusArea->SetStatusText(s.c_str());
-	//StatusArea->SetStatusText(_(s.c_str()));
-	//(*TheStatusBar)->SetStatusText(_(s.c_str()));
-	//AEInstallerApp::
-	//	TheWindow->StatusArea->SetStatusText("hi");
-	//mainWindow
-	//itemFrame1->StatusArea->SetStatusText(_"lol");
-	//MainWindow.StatusArea->SetStatusText("hi");
-	// class AbstractStatusNotifier { public: virtual void NotifyStatus(const wxString &statusString) = 0; };
-	//class StatusBarStatusNotifier : public AbstractStatusNotifier { wxStatusBar *statusbar; StatusBarStatusNotifier(wxStatusBar *bar) : statusbar(bar) { } ;
-	//void NotifyStatus(const wxString &status) { statusbar->SetStatus(status); } }
-	
-	
-	//MainWindow::StatusArea->
-	//MainWindow::MainWindow().SetSize(MainWindow::MainWindow().GetRect().GetWidth(), MainWindow::MainWindow().GetRect().GetHeight()+1);
-	
-	//MainWindow::StatusBar->SetLabel("Importing Files...");
-	//StatusBar->SetLabel(s);
-	//->SetLabel(s);
-	
-}
-
-
-/*
- * Cleanup for AEInstallerApp
- */
-
-int AEInstallerApp::OnExit()
-{    
-	////@begin AEInstallerApp cleanup
-	return wxApp::OnExit();
-	////@end AEInstallerApp cleanup
-}
-
Index: AE/Installer/trunk/source/main.h
===================================================================
--- AE/Installer/trunk/source/main.h	(revision 496)
+++ 	(revision )
@@ -1,81 +1,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        main.h
-// Purpose:     
-// Author:      
-// Modified by: 
-// Created:     07/05/2009 17:23:39
-// RCS-ID:      
-// Copyright:   
-// Licence:     
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _AEINSTALLERAPP_H_
-#define _AEINSTALLERAPP_H_
-
-
-/*!
- * Includes
- */
-
-////@begin includes
-#include "wx/image.h"
-#include "main_window.h"
-////@end includes
-
-/*!
- * Forward declarations
- */
-
-////@begin forward declarations
-////@end forward declarations
-
-/*!
- * Control identifiers
- */
-
-////@begin control identifiers
-////@end control identifiers
-
-/*!
- * AEInstallerApp class declaration
- */
-
-class AEInstallerApp: public wxApp
-{    
-    DECLARE_CLASS( AEInstallerApp )
-    DECLARE_EVENT_TABLE()
-
-public:
-    /// Constructor
-    AEInstallerApp();
-
-    void Init();
-
-    /// Initialises the application
-    virtual bool OnInit();
-
-    /// Called on exit
-    virtual int OnExit();
-
-////@begin AEInstallerApp event handler declarations
-
-////@end AEInstallerApp event handler declarations
-
-////@begin AEInstallerApp member function declarations
-
-////@end AEInstallerApp member function declarations
-
-////@begin AEInstallerApp member variables
-////@end AEInstallerApp member variables
-};
-
-/*!
- * Application instance declaration 
- */
-
-////@begin declare app
-DECLARE_APP(AEInstallerApp)
-////@end declare app
-
-#endif
-    // _AEINSTALLERAPP_H_
