Some changes in standard categories.
This commit is contained in:
parent
d868134375
commit
dadf34e60e
@ -17,6 +17,21 @@ FeedsModelStandardCategory::~FeedsModelStandardCategory() {
|
|||||||
|
|
||||||
QVariant FeedsModelStandardCategory::data(int column, int role) const {
|
QVariant FeedsModelStandardCategory::data(int column, int role) const {
|
||||||
switch (role) {
|
switch (role) {
|
||||||
|
case Qt::ToolTipRole:
|
||||||
|
if (column == FDS_MODEL_TITLE_INDEX) {
|
||||||
|
return QObject::tr("%1\n\n"
|
||||||
|
"Category type: standard\n"
|
||||||
|
"Creation date: %2").arg(m_title,
|
||||||
|
m_creationDate.toString(Qt::DefaultLocaleShortDate));
|
||||||
|
}
|
||||||
|
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
||||||
|
// TODO: tady dat plural a singular
|
||||||
|
return QObject::tr("%1 unread messages.").arg(countOfUnreadMessages());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
case Qt::DisplayRole:
|
case Qt::DisplayRole:
|
||||||
if (column == FDS_MODEL_TITLE_INDEX) {
|
if (column == FDS_MODEL_TITLE_INDEX) {
|
||||||
return QString("%1%2").arg(m_title, "-C");
|
return QString("%1%2").arg(m_title, "-C");
|
||||||
@ -24,6 +39,9 @@ QVariant FeedsModelStandardCategory::data(int column, int role) const {
|
|||||||
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
||||||
return QString("(%1)").arg(QString::number(countOfUnreadMessages()));
|
return QString("(%1)").arg(QString::number(countOfUnreadMessages()));
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
case Qt::DecorationRole:
|
case Qt::DecorationRole:
|
||||||
return column == FDS_MODEL_TITLE_INDEX ?
|
return column == FDS_MODEL_TITLE_INDEX ?
|
||||||
|
@ -18,10 +18,11 @@ class FeedsModelStandardCategory : public FeedsModelCategory {
|
|||||||
explicit FeedsModelStandardCategory(FeedsModelRootItem *parent_item = NULL);
|
explicit FeedsModelStandardCategory(FeedsModelRootItem *parent_item = NULL);
|
||||||
virtual ~FeedsModelStandardCategory();
|
virtual ~FeedsModelStandardCategory();
|
||||||
|
|
||||||
void update();
|
|
||||||
|
|
||||||
QVariant data(int column, int role) const;
|
QVariant data(int column, int role) const;
|
||||||
|
|
||||||
|
// Performs update on all children of this category.
|
||||||
|
void update();
|
||||||
|
|
||||||
static FeedsModelStandardCategory *loadFromRecord(const QSqlRecord &record);
|
static FeedsModelStandardCategory *loadFromRecord(const QSqlRecord &record);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user