AutoType: GUI connections,

Added French translation

git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@71 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
tariq
2006-04-08 21:35:31 +00:00
parent 9e8f6a336a
commit 079f3c8ace
13 changed files with 1738 additions and 6 deletions

View File

@@ -21,6 +21,7 @@
#ifndef _AUTOTYPE_H_
#define _AUTOTYPE_H_
#include <QObject>
#include <QWidget>
#include <QString>
#ifdef Q_WS_X11
@@ -30,16 +31,17 @@
#include <X11/keysymdef.h>
#include <X11/Xlib.h>
#endif
#include "Database.h"
typedef struct tKeysymMap{
Q_UINT16 keysym;
Q_UINT16 unicode;
};
class AutoType{
class AutoType:public QObject{
public:
static QWidget* MainWin;
static void perform(const QString& KeePassAutoTypeString);
static void perform(CEntry* entry,QString& errors);
private:
static tKeysymMap KeysymMap[];
static Q_UINT16 getKeysym(const QChar& unicode);