1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
MainMenuBar::MainMenuBar(wxFrame *wparent_):wparent(wparent_)
{
menuPref = new wxMenu();
menuPref->Append(wxID_PROPERTIES,_T("&Properties"));
wparent->Connect(wxID_PROPERTIES,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(MainMenuBar::OnProperties));
this->Append(menuPref,_T("Preferences"));
wxPoint pos = wparent->GetPosition();
wxMessageBox(wxString::Format(_T("position = [%d,%d] ; adrr=(this,wparent)=%x,%x"),pos.x,pos.y,this,wparent), wxT("1st box"), wxOK | wxICON_INFORMATION, this);
}
void MainMenuBar::OnProperties(wxCommandEvent& WXUNUSED(event)) {
wxPoint pos = this->GetPosition();
wxMessageBox(wxString::Format(_T("position = [%d,%d] ; adrr=(this,wparent)=%x,%x"),pos.x,pos.y,this,wparent), wxT("1st box"), wxOK | wxICON_INFORMATION, this);
} |
Partager