Home
last modified time | relevance | path

Searched refs:m_lastKey (Results 1 – 16 of 16) sorted by relevance

/dports/audio/lmms/lmms-1.2.2/src/gui/
H A DPianoView.cpp91 m_lastKey( -1 ) /*!< The last key displayed? */ in PianoView()
461 m_lastKey = key_num; in mousePressEvent()
500 if( m_lastKey != -1 ) in mouseReleaseEvent()
504 m_piano->midiEventProcessor()->processInEvent( MidiEvent( MidiNoteOff, -1, m_lastKey, 0 ) ); in mouseReleaseEvent()
505 m_piano->setKeyState( m_lastKey, false ); in mouseReleaseEvent()
511 m_lastKey = -1; in mouseReleaseEvent()
561 if( key_num != m_lastKey ) in mouseMoveEvent()
563 if( m_lastKey != -1 ) in mouseMoveEvent()
566 m_piano->setKeyState( m_lastKey, false ); in mouseMoveEvent()
567 m_lastKey = -1; in mouseMoveEvent()
[all …]
/dports/net-im/ricochet/ricochet-1.1.4/src/tor/
H A DGetConfCommand.cpp82 m_lastKey = key; in onReply()
98 if (m_lastKey.isEmpty()) { in onDataLine()
103 QVariantMap::iterator it = m_results.find(m_lastKey); in onDataLine()
111 m_results.insert(m_lastKey, QVariantList() << data); in onDataLine()
117 m_lastKey.clear(); in onDataFinished()
H A DGetConfCommand.h72 QString m_lastKey; variable
/dports/devel/liteide/liteide-x37.4/liteidex/src/utils/textoutput/
H A Dterminaledit.cpp63 m_lastKey = -1; in TerminalEdit()
133 if (m_bTerminalInput && m_lastKey != -1) { in append()
143 if (str.contains("\n") || m_lastKey == -1) { in append()
146 m_lastKey = -1; in append()
153 m_lastKey = -1; in clear()
186 m_lastKey = ke->key(); in keyPressEvent()
H A Dterminaledit.h61 int m_lastKey; variable
/dports/x11/plasma5-plasma-workspace/plasma-workspace-5.23.5/runners/webshortcuts/
H A Dwebshortcutrunner.cpp61 m_lastKey.clear(); in loadSyntaxes()
119 if (m_lastKey == key) { in match()
133 m_lastKey = key; in match()
H A Dwebshortcutrunner.h32 QString m_lastKey; variable
/dports/emulators/mgba/mgba-0.9.2/src/platform/qt/
H A DKeyEditor.cpp25 m_lastKey.setSingleShot(true); in KeyEditor()
126 if (m_key < 0 || !m_lastKey.isActive()) { in keyPressEvent()
129 m_lastKey.start(KEY_TIME); in keyPressEvent()
H A DKeyEditor.h62 QTimer m_lastKey; variable
/dports/games/libretro-mgba/mgba-6186d45/src/platform/qt/
H A DKeyEditor.cpp25 m_lastKey.setSingleShot(true); in KeyEditor()
126 if (m_key < 0 || !m_lastKey.isActive()) { in keyPressEvent()
129 m_lastKey.start(KEY_TIME); in keyPressEvent()
H A DKeyEditor.h62 QTimer m_lastKey; variable
/dports/audio/lmms/lmms-1.2.2/include/
H A DPianoView.h75 int m_lastKey; variable
H A DPianoRoll.h357 int m_lastKey; variable
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/editors/notation/
H A DStaffHeader.h252 Rosegarden::Key m_lastKey;
H A DStaffHeader.cpp87 m_lastKey(Rosegarden::Key()), in StaffHeader()
745 || (m_key != m_lastKey) in updateHeader()
756 m_lastKey = m_key; in updateHeader()
/dports/audio/lmms/lmms-1.2.2/src/gui/editors/
H A DPianoRoll.cpp180 m_lastKey( 0 ), in PianoRoll()
1706 m_lastKey = key_num; in mousePressEvent()
1819 m_lastKey = n->key(); in testPlayNote()
1867 m_pattern->instrumentTrack()->pianoModel()->handleKeyRelease( m_lastKey ); in testPlayKey()
1870 m_lastKey = key; in testPlayKey()
2009 handleKeyRelease( m_lastKey ); in mouseReleaseEvent()
2069 && ! edit_note && key_num != m_lastKey in mouseMoveEvent()
2085 bool replay_note = key_num != m_lastKey in mouseMoveEvent()
3688 if (note->key() == m_lastKey) { in selectNotesOnKey()