Main Page   Namespace List   Alphabetical List   Compound List   File List   Compound Members   File Members  

mainFrame Class Reference

#include <gui.h>

List of all members.

Public Methods

 mainFrame (const wxString &title, const wxPoint &pos, const wxSize &size, long style)
void OnQuit (wxCommandEvent &event)
void OnNewPerceptron (wxCommandEvent &event)
void OnNewMultiPercp (wxCommandEvent &event)


Constructor & Destructor Documentation

mainFrame::mainFrame const wxString &    title,
const wxPoint &    pos,
const wxSize &    size,
long    style
 

Definition at line 40 of file gui.cpp.

References mainFrame_NewMultiPercp, mainFrame_NewPerceptron, and mainFrame_Quit.

00041     : wxFrame((wxFrame *) NULL, -1, title, pos, size, style)
00042 {
00043     wxMenu *FileMenu = new wxMenu;
00044     wxMenu *NewMenu  = new wxMenu;
00045     wxMenuBar *MenuBar = new wxMenuBar;
00046 
00047     // create a menu bar
00048     FileMenu->Append(mainFrame_Quit, "&Quit");
00049     NewMenu->Append(mainFrame_NewPerceptron, "&Perceptron");
00050     NewMenu->Append(mainFrame_NewMultiPercp, "&Multi Layer Perceptron");
00051 
00052     // Add it to the menu bar
00053     MenuBar->Append(FileMenu, "&File");
00054     MenuBar->Append(NewMenu,"&New");
00055     SetMenuBar(MenuBar);
00056 
00057     // Create the status bar
00058     CreateStatusBar(2);
00059     SetStatusText("Welcome To NeReK");
00060 }


Member Function Documentation

void mainFrame::OnNewMultiPercp wxCommandEvent &    event
 

void mainFrame::OnNewPerceptron wxCommandEvent &    event
 

void mainFrame::OnQuit wxCommandEvent &    event
 


The documentation for this class was generated from the following files:
Generated on Mon Jun 9 19:13:26 2003 for NeReK Documentation by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002