void QQuickMenuItem::unbindFromAction(QObject *o) { if (!o) return; if (o == m_boundAction) m_boundAction = 0; QQuickAction *action = qobject_cast<QQuickAction *>(o); if (!action) return; disconnect(action, SIGNAL(destroyed(QObject*)), this, SLOT(unbindFromAction(QObject*))); disconnect(action, SIGNAL(triggered()), this, SIGNAL(triggered())); disconnect(action, SIGNAL(toggled(bool)), this, SLOT(updateChecked())); disconnect(action, SIGNAL(exclusiveGroupChanged()), this, SIGNAL(exclusiveGroupChanged())); disconnect(action, SIGNAL(enabledChanged()), this, SLOT(updateEnabled())); disconnect(action, SIGNAL(textChanged()), this, SLOT(updateText())); disconnect(action, SIGNAL(shortcutChanged(QVariant)), this, SLOT(updateShortcut())); disconnect(action, SIGNAL(checkableChanged()), this, SIGNAL(checkableChanged())); disconnect(action, SIGNAL(iconNameChanged()), this, SLOT(updateIcon())); disconnect(action, SIGNAL(iconNameChanged()), this, SIGNAL(iconNameChanged())); disconnect(action, SIGNAL(iconSourceChanged()), this, SLOT(updateIcon())); disconnect(action, SIGNAL(iconSourceChanged()), this, SIGNAL(iconSourceChanged())); }
void QQuickMenuItem::bindToAction(QQuickAction *action) { m_boundAction = action; connect(m_boundAction, SIGNAL(destroyed(QObject*)), this, SLOT(unbindFromAction(QObject*))); connect(m_boundAction, SIGNAL(triggered()), this, SIGNAL(triggered())); connect(m_boundAction, SIGNAL(toggled(bool)), this, SLOT(updateChecked())); connect(m_boundAction, SIGNAL(exclusiveGroupChanged()), this, SIGNAL(exclusiveGroupChanged())); connect(m_boundAction, SIGNAL(enabledChanged()), this, SLOT(updateEnabled())); connect(m_boundAction, SIGNAL(textChanged()), this, SLOT(updateText())); connect(m_boundAction, SIGNAL(shortcutChanged(QVariant)), this, SLOT(updateShortcut())); connect(m_boundAction, SIGNAL(checkableChanged()), this, SIGNAL(checkableChanged())); connect(m_boundAction, SIGNAL(iconNameChanged()), this, SLOT(updateIcon())); connect(m_boundAction, SIGNAL(iconNameChanged()), this, SIGNAL(iconNameChanged())); connect(m_boundAction, SIGNAL(iconSourceChanged()), this, SLOT(updateIcon())); connect(m_boundAction, SIGNAL(iconSourceChanged()), this, SIGNAL(iconSourceChanged())); if (m_boundAction->parent() != this) { updateText(); updateShortcut(); updateEnabled(); updateIcon(); if (checkable()) updateChecked(); } }
QQuickMenuText::QQuickMenuText(QObject *parent, QQuickMenuItemType::MenuItemType type) : QQuickMenuBase(parent, type), m_action(new QQuickAction(this)) { connect(m_action, SIGNAL(enabledChanged()), this, SLOT(updateEnabled())); connect(m_action, SIGNAL(textChanged()), this, SLOT(updateText())); connect(m_action, SIGNAL(iconNameChanged()), this, SLOT(updateIcon())); connect(m_action, SIGNAL(iconNameChanged()), this, SIGNAL(iconNameChanged())); connect(m_action, SIGNAL(iconSourceChanged()), this, SLOT(updateIcon())); connect(m_action, SIGNAL(iconSourceChanged()), this, SIGNAL(iconSourceChanged())); }
void FolderModel::setUrl(const QString& url) { const QUrl &resolvedUrl = resolve(url); if (url == m_url) { m_dirModel->dirLister()->updateDirectory(resolvedUrl); return; } beginResetModel(); m_url = url; m_isDirCache.clear(); m_dirModel->dirLister()->openUrl(resolvedUrl); clearDragImages(); endResetModel(); emit urlChanged(); emit resolvedUrlChanged(); m_errorString.clear(); emit errorStringChanged(); if (m_dirWatch) { delete m_dirWatch; } if (resolvedUrl.isValid()) { m_dirWatch = new KDirWatch(this); connect(m_dirWatch, &KDirWatch::created, this, &FolderModel::iconNameChanged); connect(m_dirWatch, &KDirWatch::dirty, this, &FolderModel::iconNameChanged); m_dirWatch->addFile(resolvedUrl.toLocalFile() + QLatin1String("/.directory")); } emit iconNameChanged(); }
void InfoNotification::setIconName(const QString &iconName) { if (m_iconName != iconName) { m_iconName = iconName; emit iconNameChanged(); } }
void QQuickAction::setIconName(const QString &iconName) { if (iconName == m_iconName) return; m_iconName = iconName; m_icon = QIcon::fromTheme(m_iconName, QIcon(QQmlFile::urlToLocalFileOrQrc(m_iconSource))); emit iconNameChanged(); emit iconChanged(); }
void PresenceSource::onAccountReady(Tp::PendingOperation *op) { // Check if the operation succeeded or not if (op->isError()) { kWarning() << "PresenceSource::onAccountReady: readying " "Account failed:" << op->errorName() << ":" << op->errorMessage(); return; } // Check that the account is valid if (!m_account->isValidAccount()) { // TODO should source be removed? kWarning() << "Invalid account in source:" << objectName(); return; } // set protocol icon setData("AccountIcon", m_account->iconName()); connect(m_account.data(), SIGNAL(currentPresenceChanged(Tp::Presence)), SLOT(onAccountCurrentPresenceChanged(Tp::Presence))); connect(m_account.data(), SIGNAL(nicknameChanged(const QString &)), SLOT(onNicknameChanged(const QString &))); connect(m_account.data(), SIGNAL(displayNameChanged(const QString &)), SLOT(onDisplayNameChanged(const QString &))); connect(m_account.data(), SIGNAL(avatarChanged(const Tp::Avatar &)), SLOT(onAvatarChanged(const Tp::Avatar &))); connect(m_account.data(), SIGNAL(iconNameChanged(QString)), SLOT(onIconNameChanged(QString))); connect(m_account.data(), SIGNAL(stateChanged(bool)), SLOT(onStateChanged(bool))); // Force initial settings onAccountCurrentPresenceChanged(m_account->currentPresence()); onNicknameChanged(m_account->nickname()); onDisplayNameChanged(m_account->displayName()); onAvatarChanged(m_account->avatar()); onStateChanged(m_account->isEnabled()); }
IconDialog::IconDialog(QObject *parent) : QObject(parent) , m_dialog(Q_NULLPTR) , m_iconSize(0) , m_user(false) , m_modality(Qt::WindowModal) , m_visible(false) { if (qobject_cast<QApplication *>(QCoreApplication::instance())) { m_dialog.reset(new KIconDialog()); connect(m_dialog.data(), &KIconDialog::newIconName, this, [this](const QString &newIconName) { if (m_iconName != newIconName) { m_iconName = newIconName; emit iconNameChanged(newIconName); } }); m_dialog->installEventFilter(this); } }
void QAppIndicator::setIconName(const QString &_iconName) { emit iconNameChanged(_iconName); }