Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi guys I am here to beat dead horse..

Basically what I am doing is assigning stuff onto a map.

The map: A wxStaticBitmap object with the background uploaded by user The bomb(lol): A wxStaticBitmap object

I managed to merge bomb into arbitrary position on map now with wxMemoryDC + wxDC.

However,I am totally stuck with setting "bomb" with mouse.I want to click somewhere on the map and somehow the bomb will be dropped at the very position I just clicked.

I took a stab with wxMouseEvent and EVT_MOTION(well,like macro ones declared on top) Obviously they only work with wxWindow or wxFrame.

I was wondering how I am gonna bind mouse event to staticbitmap probably by Connect() but I did not find a proper usage regarding to bomb assignment...

share|improve this question
Please explain what you tried that did not work. You get the location of the mouse cursor in the frame when the the user clicks, calculate the location in the background bitmap, and place your 'bomb' at that location. AFAIK it's straightforward. – ravenspoint Jul 28 '12 at 16:03
hmm the thing is,when hover the cursor at staticbitmap,the mouse event doesnt work.i set two statictexts for showing current coordinates purposes.so when moving on bitmap,the coordinates stop updating. – y26jin Jul 28 '12 at 16:13
This is the problem you need to fix. Are you using a wxPanel as the parent of your bitmap? Best to simplify your code as much as possible, then post it, so we don't have to try and guess your problem. – ravenspoint Jul 28 '12 at 16:28
i'll try if wxpanel as parent works then bother you experts.lol thx – y26jin Jul 28 '12 at 16:33

1 Answer

up vote 0 down vote accepted

In general, it is best to create a single wxPanel as the child of the frame, then create all your widgets as children of the wxPanel. This way most everything works as you naturally expect and you hit fewer gotchas.

share|improve this answer
quick question... – y26jin Jul 28 '12 at 16:53
i declared EVT_MOTION(MyFrame::OnCoordUpdate) in event table after modifying interface structrue like wxFrame->wxPanel->Sizers/Components.but the coordinates dont update everywhere in the window.I am wondering what the correct way to declare mouse motion is – y26jin Jul 28 '12 at 16:55
oh probably i declared in wxframe's event table!lol is "BEGIN_EVENT_TABLE(panel1, wxPanel)" the right way to declare ? – y26jin Jul 28 '12 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.