User forums > General (but related to Code::Blocks)

How to do Frame ptr be a member of app class when using wxSmith

<< < (2/2)

eranon:
Oops, solved since "long" time, jens. I didn't tagged any post as SOLVED because not any one matched exactly the solution I've adopted (I've just created a public method in app class which returns top level frame w/o relaying on any member). However, my main problem was orginally because of the wxSmith's block of code which doesn't store the pointer to the created frame as member... And I didn't liked the idea to remove the wxSmith tags (we never know the evolution of a tool by advance and he could need this code block a day or another ; better to not break natural working of tools chain in my mind).

--
EDIT : here is the fct ; also, I tag this post as SOLVED to close the thread ; it's not a self-congratulation, don't worry ;)

--- Code: ---MyFrame* MyApp::GetMainFrame()
{
    // Return a casted ptr to the toplevel frame of the app
    return (MyFrame*) GetTopWindow();
}
--- End code ---

--
EDIT #2 : I should sleep during the night... I don't see any SOLVED button ; surely mixed with the wxWidgets forum in my mind ; oops, I said ;D

Navigation

[0] Message Index

[*] Previous page

Go to full version