|
Definition at line 151 of file ngui.cpp.
References NetDialog_BIAS_TXT, NetDialog_DELINPUT_BTN, NetDialog_NEWINPUT_BTN, NetDialog_QUIT_BTN, NetDialog_RUN_BTN, NetDialog_SETDESRD_BTN, NetDialog_SETWGHTS_BTN, NetDialog_SHOWDIAG_BTN, NetDialog_SQUASHVAL_TXT, and NetDialog_TRAIN_BTN.
00152 :
00153 wxDialog(parent, id, title, position, size, style)
00154 {
00155 btn_newinput = new wxButton(this, NetDialog_NEWINPUT_BTN, "New Input",
00156 wxPoint(10,10), wxSize(70,17));
00157 btn_delinput = new wxButton(this, NetDialog_DELINPUT_BTN, "Delete Input",
00158 wxPoint(10,30), wxSize(70,17));
00159 btn_setwghts = new wxButton(this, NetDialog_SETWGHTS_BTN, "Set Weights",
00160 wxPoint(10,50), wxSize(70,17));
00161 btn_train = new wxButton(this, NetDialog_TRAIN_BTN, "Train",
00162 wxPoint(10,90), wxSize(70,17));
00163 btn_run = new wxButton(this, NetDialog_RUN_BTN, "Run",
00164 wxPoint(10,110), wxSize(70,17));
00165 btn_setdesrd = new wxButton(this, NetDialog_SETDESRD_BTN, "Set Desired",
00166 wxPoint(10,70), wxSize(70,17));
00167 btn_showdiag = new wxButton(this, NetDialog_SHOWDIAG_BTN, "Show Diag",
00168 wxPoint(10,170), wxSize(70,17));
00169 btn_quit = new wxButton(this, NetDialog_QUIT_BTN, "Quit",
00170 wxPoint(10,200), wxSize(70,17));
00171 txt_bias = new wxTextCtrl(this, NetDialog_BIAS_TXT, "",
00172 wxPoint(90,150), wxSize(25,22));
00173 txt_squashval = new wxTextCtrl(this, NetDialog_SQUASHVAL_TXT, "",
00174 wxPoint(90,130), wxSize(25,22));
00175 stc_bias = new wxStaticText(this, -1, "Bias Value", wxPoint(10,150));
00176 stc_squashval = new wxStaticText(this, -1, "Squash Value", wxPoint(10,130));
00177 }
|