本文整理汇总了C++中plasma::QueryMatch::matchCategory方法的典型用法代码示例。如果您正苦于以下问题:C++ QueryMatch::matchCategory方法的具体用法?C++ QueryMatch::matchCategory怎么用?C++ QueryMatch::matchCategory使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类plasma::QueryMatch
的用法示例。
在下文中一共展示了QueryMatch::matchCategory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: data
QVariant SourcesModel::data(const QModelIndex& index, int role) const
{
if (!index.isValid())
return QVariant();
if (index.row() >= m_size)
return QVariant();
Plasma::QueryMatch m = fetchMatch(index.row());
Q_ASSERT(m.runner());
switch(role) {
case Qt::DisplayRole:
return m.text();
case Qt::DecorationRole:
if (!m.iconName().isEmpty()) {
return m.iconName();
}
return m.icon();
case TypeRole:
return m.matchCategory();
case SubtextRole:
return m.subtext();
case ActionsRole: {
const auto &actions = m_manager->actionsForMatch(m);
if (actions.isEmpty()) {
return QVariantList();
}
QVariantList actionsList;
actionsList.reserve(actions.size());
for (QAction *action : actions) {
actionsList.append(QVariant::fromValue(action));
}
return actionsList;
}
case DuplicateRole:
return m_duplicates.value(m.text());
/*
case PreviewTypeRole:
return m.previewType();
case PreviewUrlRole:
return m.previewUrl();
case PreviewLabelRole:
return m.previewLabel();
*/
}
return QVariant();
}
示例2: slotMatchAdded
//
// Tries to make sure that all the types have the same number
// of visible items
//
void SourcesModel::slotMatchAdded(const Plasma::QueryMatch& m)
{
if (m_queryString.isEmpty())
return;
QString matchType = m.matchCategory();
if (!m_types.contains(matchType)) {
m_types << matchType;
}
if (m_size == m_queryLimit) {
int maxShownItems = 0;
QString maxShownType;
foreach (const QString& type, m_types) {
TypeData data = m_matches.value(type);
if (data.shown.size() >= maxShownItems) {
maxShownItems = data.shown.size();
maxShownType = type;
}
}