Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: lemontea on November 06, 2005, 11:59:09 am

Title: Feedback on user interface
Post by: lemontea on November 06, 2005, 11:59:09 am
This is my first post, hope no one mentioned these already :o


That's all I can remember now. Thanks again for this high quality product! :P
Title: Re: Feedback on user interface
Post by: takeshimiya on November 24, 2005, 07:33:35 am
1) wxDockIt's fault.

2) You can go to %CodeBlocks%/share/CodeBlocks/compiler_gcc.zip and in compiler_toolbar.xrc or compiler_toolbar_16x16.xrc modify
    <object class="wxComboBox" name="idToolTarget">
        <content/>
        <size>-1,-1</size>
        <style>wxCB_READONLY</style>
    </object>

to something more reasonable:
    <object class="wxComboBox" name="idToolTarget">
        <content/>
        <size>100,-1</size>
        <style>wxCB_READONLY</style>
    </object>


I agree that the default is too wide.

3) This should be addressed. Submit a bug report/feature request.

4) This would requiere a real C++ parser.
Title: Re: Feedback on user interface
Post by: mandrav on November 24, 2005, 09:16:09 am
Quote
It would be a nice addition to functionality if the symbols in management can show classes, functions, etc files by files, not on the scale of the whole project. And may be the order in which methods, data in a class is presented can be specified to alphabetical, by type, by the order they appear in file, etc. This helps when the file mix methods, data members together, and I just want to see them listed neatly one by one.
Quote
4) This would requiere a real C++ parser.

Actually, this is supported in CVS version.