Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: puneet_m on February 26, 2008, 07:26:53 pm

Title: Adding a new tab in the Management Window
Post by: puneet_m on February 26, 2008, 07:26:53 pm
Which xrc file is adding the tabs Projects,Symbols and Resources on the left hand side Management window.

Thanks,
Puneet
Title: Re: Adding a new tab in the Management Window
Post by: thomas on February 26, 2008, 10:34:03 pm
None.
Title: Re: Adding a new tab in the Management Window
Post by: puneet_m on February 26, 2008, 10:36:31 pm
Then what file is adding these tabs? Basically I want to add a new tab to this Management window pane. So I am looking for the code(filename) which does the addition of the tab.
Title: Re: Adding a new tab in the Management Window
Post by: thomas on February 26, 2008, 10:55:57 pm
Several ones, for example projectmanager.cpp
Title: Re: Adding a new tab in the Management Window
Post by: puneet_m on February 26, 2008, 11:00:33 pm
Thanks for your reply. I see the following line adding Projects tab
m_pNotebook->AddPage(m_pTreed, _("Projects"));

But where are the Symbols and Resources tab getting added?

Thanks,
Puneet
Title: Re: Adding a new tab in the Management Window
Post by: thomas on February 26, 2008, 11:01:50 pm
In some other files that belong to the code completion plugin and wxSmith. They look the same.
Title: Re: Adding a new tab in the Management Window
Post by: puneet_m on February 26, 2008, 11:42:36 pm
Thanks for the help :)