Home
last modified time | relevance | path

Searched refs:currentKeyIndex (Results 1 – 6 of 6) sorted by relevance

/dports/net-im/cutegram/Cutegram-2.7.1-stable/Cutegram/
H A Demoticonsmodel.h23 Q_PROPERTY(int currentKeyIndex READ currentKeyIndex NOTIFY currentKeyIndexChanged)
54 int currentKeyIndex() const;
H A Demoticonsmodel.cpp103 int EmoticonsModel::currentKeyIndex() const in currentKeyIndex() function in EmoticonsModel
105 int currentKeyIndex = p->keys.indexOf(p->currentKey); in currentKeyIndex() local
106 if(currentKeyIndex == -1) in currentKeyIndex()
109 return currentKeyIndex; in currentKeyIndex()
181 const int index = currentKeyIndex(); in refresh()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/imap/src/
H A DnsImapOfflineSync.cpp203 uint32_t currentKeyIndex = m_KeyIndex; in ProcessFlagOperation() local
219 if (++currentKeyIndex < m_CurrentKeys.Length()) in ProcessFlagOperation()
220 m_currentDB->GetOfflineOpForKey(m_CurrentKeys[currentKeyIndex], false, in ProcessFlagOperation()
259 uint32_t currentKeyIndex = m_KeyIndex; in ProcessKeywordOperation() local
276 if (++currentKeyIndex < m_CurrentKeys.Length()) in ProcessKeywordOperation()
277 m_currentDB->GetOfflineOpForKey(m_CurrentKeys[currentKeyIndex], false, in ProcessKeywordOperation()
458 uint32_t currentKeyIndex = m_KeyIndex; in ProcessMoveOperation() local
473 if (++currentKeyIndex < m_CurrentKeys.Length()) { in ProcessMoveOperation()
561 uint32_t currentKeyIndex = m_KeyIndex; in ProcessCopyOperation() local
577 if (++currentKeyIndex < m_CurrentKeys.Length()) { in ProcessCopyOperation()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzqt/
H A Dfunctionsegmentviewer.cpp1452 int currentKeyIndex; in onPrevCurveButtonPressed() local
1453 if (m_segmentIndex > 0) currentKeyIndex = m_segmentIndex; in onPrevCurveButtonPressed()
1459 currentKeyIndex = m_curve->getPrevKeyframe(selectedCells.top()); in onPrevCurveButtonPressed()
1460 if (currentKeyIndex != m_curve->getKeyframeCount() - 1) return; in onPrevCurveButtonPressed()
1467 TDoubleKeyframe currentKey = m_curve->getKeyframe(currentKeyIndex); in onPrevCurveButtonPressed()
1473 m_sheet->getSelection()->selectSegment(m_curve, currentKeyIndex - 1, in onPrevCurveButtonPressed()
1483 int currentKeyIndex; in onNextCurveButtonPressed() local
1485 currentKeyIndex = m_segmentIndex; in onNextCurveButtonPressed()
1492 currentKeyIndex = m_curve->getNextKeyframe(selectedCells.top()); in onNextCurveButtonPressed()
1493 if (currentKeyIndex != 0) return; in onNextCurveButtonPressed()
[all …]
/dports/net-im/cutegram/Cutegram-2.7.1-stable/Cutegram/qml/Cutegram/
H A DEmoticons.qml151 cellWidth: emodel.currentKeyIndex>1? 90*Devices.density : 32*Devices.density
160 … width: emodel.currentKeyIndex>1? parent.width - 10*Devices.density : 22*Devices.density
161 height: emodel.currentKeyIndex>1? parent.height - 10*Devices.density : width
250 …textColor: emodel.currentKeyIndex==index && stickers_model.currentStickerSet == 0? "#333333" : Cut…
/dports/security/kgpg/kgpg-21.12.3/model/
H A Dkgpgsearchresultmodel.cpp551 QModelIndex currentKeyIndex = backingModel->index(sourceRow, 0, sourceParent); in filterAcceptsRow() local
552 return backingModel->resultForIndex(currentKeyIndex)->valid(); in filterAcceptsRow()