add subdirectories recursively
This commit is contained in:
parent
717e131b75
commit
99a2d118c8
6 changed files with 70 additions and 40 deletions
|
|
@ -42,6 +42,19 @@ bool NavigationItemModel::setPath(const QString &path)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool NavigationItemModel::isCircleDelegate() const
|
||||
{
|
||||
return mIsCircleDelegate;
|
||||
}
|
||||
|
||||
void NavigationItemModel::setCircleDelegate(bool value)
|
||||
{
|
||||
if(value != mIsCircleDelegate){
|
||||
mIsCircleDelegate = value;
|
||||
emit isCircleDelegateChanged();
|
||||
}
|
||||
}
|
||||
|
||||
NavigationItemModel *NavigationItemModel::getParentItem()
|
||||
{
|
||||
return mParentItem;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue