A bit of help for a wx newbie.

BlitzMax Forums/Brucey's Modules/A bit of help for a wx newbie.

ziggy(Posted 2009) [#1]
I need to set up an application with a simple panel at the left, where I pan to place simple gui elements such as buttons, labels, combo boxes, checkboxes etc, and another panel filling the rest of the form where I plan to render using minib3d. This is my first work with wxmax, so if anyone can give me some tips on how to get this working, It would be great.


Tommo(Posted 2009) [#2]
You can use wxFormBuilder to design your forms. After that, use WxCodeGen (located in wx.mod/tools) to generate a base code from your FormBuilder project file. (Don't forget to check "Auto-Generate Code", that's very convinient.)
There are some tutorials in wx.mod/Tutorial. Don't miss the SIZER part, it will help your understand the workflow in wxFormBuilder.

For miniB3d, maybe you can use wxGLMax2D.


Wiebo(Posted 2009) [#3]
you can check out this thread for some pointers:

http://blitzbasic.com/Community/posts.php?topic=85929


ziggy(Posted 2009) [#4]
Thanks!!