Code::Blocks Forums
Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started 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
-
None.
-
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.
-
Several ones, for example projectmanager.cpp
-
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
-
In some other files that belong to the code completion plugin and wxSmith. They look the same.
-
Thanks for the help :)