to find the first item or cat

This commit is contained in:
qPCR4vir 2015-05-05 13:53:27 +02:00
parent 52d040a95d
commit 31639cb34d

View File

@ -1639,7 +1639,20 @@ namespace nana
/// absolute position of the last displayed item /// absolute position of the last displayed item
index_pair last_displ() const index_pair last_displ() const
{ {
return absolute ( last_displ() ); return absolute ( last() );
}
/// can be used as the absolute position of the first absolute item, or as the display pos of the first displayed item
index_pair first() const
{
index_pair fst{0,npos};
good_item(fst,fst);
return fst;
}
/// absolute position of the first displayed item
index_pair first_displ() const
{
return absolute ( first() );
} }
bool good(size_type cat) const bool good(size_type cat) const