Outline Tab in the Workspace view

General questions regarding the usage of CodeLite
ColinTaylor
CodeLite Expert
Posts: 152
Joined: Fri Jul 15, 2011 2:49 pm
Genuine User: Yes
IDE Question: C++
Contact:

Outline Tab in the Workspace view

Post by ColinTaylor »

Codelite 9.0.5 / Windows 10 (64-bit)

I've been looking at the Outline Tab in the Workspace view, and have a few questions (apologies if these have been asked before or covered in the documentation)

[1] So far I've seen 3 different styles used for presentation of the items listed in the outline tab

1. Non-italic, non-bold
2. Italic, bold
3. Non-italic, bold

What do these styles mean?

[2] Right click -> Find References...

The scope of this search always seems to be the entire workspace - cab this be limited to (e.g.) active project?


[3] The display of the references in Output View is occasionally odd

E.g. In a header file, code fragment follows ...

Code: Select all

   wxString ToStr (void) const;
private:
   std::vector<wxString> m_Countries;
Click "Find references" on m_Countries gives the following in the Output View

Code: Select all

[ CLocationDataModel::ToStr] std::vector<wxString> m_Countries;
which doesn't really seem to make a lot of sense, as m_Countries has nothing to do with the ToStr method!


[4] Output View (References Tab)

Would be nice to be able to copy contents to clipboard - is this possible?

Any answers most welcome
Colin
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Outline Tab in the Workspace view

Post by eranif »

ColinTaylor wrote:1. Non-italic, non-bold
2. Italic, bold
3. Non-italic, bold
Italic=>prototype function (not an implementation, usually you will see these in header files)
Bold=>public access (usually will have a green dot on the icon as well)
ColinTaylor wrote:Click "Find references" on m_Countries gives the following in the Output View

[ CLocationDataModel::ToStr] std::vector<wxString> m_Countries;
which doesn't really seem to make a lot of sense, as m_Countries has nothing to do with the ToStr method!
This is a bug
ColinTaylor wrote:Would be nice to be able to copy contents to clipboard - is this possible?
Please open a feature request

Eran
Make sure you have read the HOW TO POST thread
ColinTaylor
CodeLite Expert
Posts: 152
Joined: Fri Jul 15, 2011 2:49 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Outline Tab in the Workspace view

Post by ColinTaylor »

Many thanks - I completely failed to see the little green dot! :shock:
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Outline Tab in the Workspace view

Post by eranif »

ColinTaylor wrote:Many thanks - I completely failed to see the little green dot!
You should get a mac with retina display, its much clearer there ;)

Eran
Make sure you have read the HOW TO POST thread
Post Reply