- Note
- This Source File belongs to Views Example Example. Please follow the link for example explanation.
#include "DemoListModel.h"
#include <AUI/Traits/strings.h>
size_t DemoListModel::listSize() {
return mListSize;
}
return "List item #{}"_format(index.
getRow() + 1);
}
void DemoListModel::addItem() {
mListSize += 1;
emit dataInserted(range({mListSize - 1}));
}
void DemoListModel::removeItem() {
if (mListSize > 0) {
mListSize -= 1;
emit dataRemoved(range({mListSize}));
}
}
Definition AListModelIndex.h:20
Represents a Unicode character string.
Definition AString.h:38
#define emit
emits the specified signal in context of this object.
Definition AObject.h:343