sciguy Posted January 25, 2011 Share Posted January 25, 2011 I am currently programming the editor for ORR-C and ORR-D. I am using python for the code, pyglet for windowing, and openGL for the graphics. To minimize the number and size of libraries needed, I am coding my own controls. This also allows me o make the graphics nicer. To help people who want to get into programming using openGL for the graphics, I will be reconfiguring the control code to make them more customizable. Right now they are geared functionally and graphically for my editor, but I will be adding a wider range of options to each before releasing. I may recode them in c++ after completing the python version. Current controls: -RadioButton -Checkbox -Button -Textbox -Progress bar -Filesystem browser (cross platform Linux and Windows) -Menu -Numeric up/down -Drop-down list If you have a library that you would like me to try and build in compatibility for or suggestions of more controls to add please post them below. I will try to add as many controls as possible and have them as configurable as possible. Link to comment Share on other sites More sharing options...
Anonymouse Posted February 10, 2011 Share Posted February 10, 2011 I am currently programming the editor for ORR-C and ORR-D. I am using python for the code, pyglet for windowing, and openGL for the graphics. To minimize the number and size of libraries needed, I am coding my own controls. This also allows me o make the graphics nicer. To help people who want to get into programming using openGL for the graphics, I will be reconfiguring the control code to make them more customizable. Right now they are geared functionally and graphically for my editor, but I will be adding a wider range of options to each before releasing. I may recode them in c++ after completing the python version. Current controls: -RadioButton -Checkbox -Button -Textbox -Progress bar -Filesystem browser (cross platform Linux and Windows) -Menu -Numeric up/down -Drop-down list If you have a library that you would like me to try and build in compatibility for or suggestions of more controls to add please post them below. I will try to add as many controls as possible and have them as configurable as possible. This could be useful to me in future. When/why did you drop wx? Also, I'd call it a UI library. Link to comment Share on other sites More sharing options...
sciguy Posted February 14, 2011 Author Share Posted February 14, 2011 WX was too cumbersome to use and integrate in my editor. Creating my own controls is more aesthetically pleasing and easier in some ways. Link to comment Share on other sites More sharing options...
Recommended Posts