mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-17 13:02:49 -05:00
reorder functions by logic
This commit is contained in:
parent
a9479fd662
commit
12a4b9aaa3
@ -103,6 +103,19 @@ void AutoType::loadPlugin(const QString& pluginPath)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AutoType::unloadPlugin()
|
||||||
|
{
|
||||||
|
if (m_executor) {
|
||||||
|
delete m_executor;
|
||||||
|
m_executor = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_plugin) {
|
||||||
|
m_plugin->unload();
|
||||||
|
m_plugin = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
AutoType* AutoType::instance()
|
AutoType* AutoType::instance()
|
||||||
{
|
{
|
||||||
if (!m_instance) {
|
if (!m_instance) {
|
||||||
@ -128,6 +141,62 @@ QStringList AutoType::windowTitles()
|
|||||||
return m_plugin->windowTitles();
|
return m_plugin->windowTitles();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AutoType::resetInAutoType()
|
||||||
|
{
|
||||||
|
Q_ASSERT(m_inAutoType);
|
||||||
|
|
||||||
|
m_inAutoType = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void AutoType::raiseWindow()
|
||||||
|
{
|
||||||
|
#if defined(Q_OS_MAC)
|
||||||
|
m_plugin->raiseOwnWindow();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
bool AutoType::registerGlobalShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers)
|
||||||
|
{
|
||||||
|
Q_ASSERT(key);
|
||||||
|
Q_ASSERT(modifiers);
|
||||||
|
|
||||||
|
if (!m_plugin) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key != m_currentGlobalKey || modifiers != m_currentGlobalModifiers) {
|
||||||
|
if (m_currentGlobalKey && m_currentGlobalModifiers) {
|
||||||
|
m_plugin->unregisterGlobalShortcut(m_currentGlobalKey, m_currentGlobalModifiers);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_plugin->registerGlobalShortcut(key, modifiers)) {
|
||||||
|
m_currentGlobalKey = key;
|
||||||
|
m_currentGlobalModifiers = modifiers;
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void AutoType::unregisterGlobalShortcut()
|
||||||
|
{
|
||||||
|
if (m_plugin && m_currentGlobalKey && m_currentGlobalModifiers) {
|
||||||
|
m_plugin->unregisterGlobalShortcut(m_currentGlobalKey, m_currentGlobalModifiers);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int AutoType::callEventFilter(void* event)
|
||||||
|
{
|
||||||
|
if (!m_plugin) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return m_plugin->platformEventFilter(event);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core Autotype function that will execute actions
|
* Core Autotype function that will execute actions
|
||||||
*/
|
*/
|
||||||
@ -265,76 +334,6 @@ void AutoType::performAutoTypeFromGlobal(AutoTypeMatch match)
|
|||||||
executeAutoTypeActions(match.entry, nullptr, match.sequence, m_windowFromGlobal);
|
executeAutoTypeActions(match.entry, nullptr, match.sequence, m_windowFromGlobal);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AutoType::resetInAutoType()
|
|
||||||
{
|
|
||||||
Q_ASSERT(m_inAutoType);
|
|
||||||
|
|
||||||
m_inAutoType = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void AutoType::raiseWindow()
|
|
||||||
{
|
|
||||||
#if defined(Q_OS_MAC)
|
|
||||||
m_plugin->raiseOwnWindow();
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void AutoType::unloadPlugin()
|
|
||||||
{
|
|
||||||
if (m_executor) {
|
|
||||||
delete m_executor;
|
|
||||||
m_executor = nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_plugin) {
|
|
||||||
m_plugin->unload();
|
|
||||||
m_plugin = nullptr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool AutoType::registerGlobalShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers)
|
|
||||||
{
|
|
||||||
Q_ASSERT(key);
|
|
||||||
Q_ASSERT(modifiers);
|
|
||||||
|
|
||||||
if (!m_plugin) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (key != m_currentGlobalKey || modifiers != m_currentGlobalModifiers) {
|
|
||||||
if (m_currentGlobalKey && m_currentGlobalModifiers) {
|
|
||||||
m_plugin->unregisterGlobalShortcut(m_currentGlobalKey, m_currentGlobalModifiers);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_plugin->registerGlobalShortcut(key, modifiers)) {
|
|
||||||
m_currentGlobalKey = key;
|
|
||||||
m_currentGlobalModifiers = modifiers;
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void AutoType::unregisterGlobalShortcut()
|
|
||||||
{
|
|
||||||
if (m_plugin && m_currentGlobalKey && m_currentGlobalModifiers) {
|
|
||||||
m_plugin->unregisterGlobalShortcut(m_currentGlobalKey, m_currentGlobalModifiers);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int AutoType::callEventFilter(void* event)
|
|
||||||
{
|
|
||||||
if (!m_plugin) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return m_plugin->platformEventFilter(event);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse an autotype sequence and resolve its Template/command inside as AutoTypeActions
|
* Parse an autotype sequence and resolve its Template/command inside as AutoTypeActions
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user