mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-05-10 18:45:20 -04:00
Add initial auto-type implementation.
The platform dependent bits are separated in plugins. A plugin for X11 using Xlib is already done.
This commit is contained in:
parent
073f3f9dfc
commit
bc207714da
18 changed files with 1905 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright (C) 2012 Tobias Tangemann
|
||||
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -30,6 +31,9 @@ public:
|
|||
Application(int& argc, char** argv);
|
||||
|
||||
bool event(QEvent* event) Q_DECL_OVERRIDE;
|
||||
#ifdef Q_WS_X11
|
||||
bool x11EventFilter(XEvent* event) Q_DECL_OVERRIDE;
|
||||
#endif
|
||||
|
||||
Q_SIGNALS:
|
||||
void openFile(const QString& filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue