Release 0.4.3-3maemo with patches to disable menus/actions, add ScrollArea and fix...
[keepassx] / src / lib / AutoType.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2008 by Tarek Saidi, Felix Geyer                   *
3  *   tarek.saidi@arcor.de                                                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; version 2 of the License.               *
8
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _AUTOTYPE_H_
22 #define _AUTOTYPE_H_
23
24 class KeepassMainWindow;
25 void initAutoType(KeepassMainWindow* mainWin);
26
27 class AutoType{
28         public:
29                 virtual void perform(IEntryHandle* entry, bool hideWindow=true, int nr=0, bool wasLocked=false) = 0;
30 };
31
32 #ifdef GLOBAL_AUTOTYPE
33 struct Shortcut{
34         bool ctrl, shift, alt, altgr, win;
35         quint32 key;
36 };
37
38 class AutoTypeGlobal : public AutoType{
39         public:
40                 virtual void performGlobal() = 0;
41                 inline const Shortcut& getShortcut() { return shortcut; };
42                 virtual bool registerGlobalShortcut(const Shortcut& s) = 0;
43                 virtual void unregisterGlobalShortcut() = 0;
44                 virtual QStringList getAllWindowTitles() = 0;
45         
46         protected:
47                 Shortcut shortcut;
48 };
49 #endif
50
51 #ifdef GLOBAL_AUTOTYPE
52 extern AutoTypeGlobal* autoType;
53 #else
54 extern AutoType* autoType;
55 #endif
56
57 #endif