Home » Developing U++ » UppHub » TabBar: ordering of tabs by their Value (title)
Re: TabBar: ordering of tabs by their Value (title) [message #27188 is a reply to message #27184] |
Tue, 29 June 2010 23:32   |
 |
kohait00
Messages: 939 Registered: July 2009 Location: Germany
|
Experienced Contributor |
|
|
i am still asking myself why the new TabBarCtrl is keeping only the current shown control as child in its pane...
thus no tree inspection is possible. why not having them all in there using Show/Hide, like in one of the early versions or was it in QuickTab, dont remember.
and having the ctrls themselves decide how they should be added (no SizePos by default)?
some hints
TabBarCtrl& TabBarCtrl::InsertCtrl(int ix, Ctrl &ctrl, Value key, Value value, Image icon, String group, bool make_active)
{
ctrls.Add(key, &ctrl);
ctrl.Hide();
pane.Add(ctrl);
TabBar::InsertKey(ix, key, value, icon, group, make_active);
return *this;
}
void TabBarCtrl::SetCtrl(int ix)
{
ASSERT(ix < GetCount());
Value key = TabBar::GetKey(ix);
int _ix = ctrls.Find(key);
if (_ix >= 0)
for(int i = 0; i < ctrls.GetCount(); i++)
{
Ctrl * pc = ctrls[i];
pc->Show(i == _ix);
}
}
a bugfix in RemoveCtrl(Value key)
// Close(key);
CloseKey(key); //should be this one, right
|
|
|
 |
|
TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Fri, 25 June 2010 11:50
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Fri, 25 June 2010 12:54
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Fri, 25 June 2010 14:44
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Fri, 25 June 2010 17:57
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Sun, 27 June 2010 13:37
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Mon, 28 June 2010 16:49
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Tue, 29 June 2010 18:39
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Thu, 01 July 2010 14:43
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Behaviour
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Wed, 07 July 2010 11:31
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
By: mrjt on Thu, 15 July 2010 10:33
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Re: TabBar: ordering of tabs by their Value (title)
|
 |
|
Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
By: mrjt on Wed, 21 July 2010 18:41
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
By: mrjt on Thu, 22 July 2010 10:08
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
By: mrjt on Thu, 22 July 2010 10:37
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
By: mrjt on Fri, 23 July 2010 14:02
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
|
 |
|
Re: Docking: removed special sorter
By: mrjt on Wed, 11 August 2010 14:04
|
 |
|
Re: Docking: removed special sorter
By: mrjt on Mon, 06 September 2010 12:49
|
 |
|
Re: Docking: removed special sorter
By: kohait00 on Mon, 06 September 2010 12:58
|
Goto Forum:
Current Time: Fri Jul 18 10:51:57 CEST 2025
Total time taken to generate the page: 0.03832 seconds
|