Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > 21280410b6ea906d791d7a12afae2579 > files > 917

libace5-doc-5.4-2mdk.i586.rpm

// ConfigurationViewer.cpp,v 1.1 2000/05/17 15:48:13 parsons Exp
#ifdef __GNUG__
    #pragma implementation "minimal.cpp"
    #pragma interface "minimal.cpp"
#endif

#include "stdafx.h"
#include "MainFrame.h"

#ifdef __BORLANDC__
    #pragma hdrstop
#endif

// the application icon
#if defined(__WXGTK__) || defined(__WXMOTIF__)
    #include "mondrian.xpm"
#endif

class ConfigurationViewerApp : public wxApp
{
public:
    virtual bool OnInit();
};

IMPLEMENT_APP(ConfigurationViewerApp)

bool ConfigurationViewerApp::OnInit()
{
  // Create the main application window
  MainFrame *frame = new MainFrame("Configuration Viewer",
                               wxPoint(50, 50), wxSize(450, 340));

    // Give it an icon
#ifdef __WXMSW__
  frame->SetIcon(wxIcon("mondrian"));
#else
  frame->SetIcon(wxIcon( mondrian_xpm ));
#endif

  frame->Show(TRUE);
  SetTopWindow(frame);

  return TRUE;
}