Release 0.4.3-3maemo with patches to disable menus/actions, add ScrollArea and fix...
[keepassx] / src / import / Import_PwManager.h
1 /***************************************************************************
2  *   Copyright (C) 2005 by Tarek Saidi                                     *
3  *   mail@tarek-saidi.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 _IMPORT_PWMANAGER_
22 #define _IMPORT_PWMANAGER_
23
24 #include "Import.h"
25
26
27 class Import_PwManager:public ImporterBase, public IImport{
28         Q_OBJECT
29         
30         public:
31                 virtual bool importDatabase(QWidget* GuiParent, IDatabase* Database);
32                 virtual QString identifier(){return "PwManager";}
33                 virtual QString title(){return "PwManager File (*.pwm)";}
34         private:
35                 bool KeyFlag; // true=Password, false=Chipcard
36                 int Compression; // 0=none, 1=gzip, 2=bzip2
37                 unsigned char KeyHash[20];
38                 unsigned char DataHash[20];
39                 IDatabase* database;
40                 
41                 bool parseXmlContent(char* content);
42                 bool xml_parseEntryAttributes(QDomElement* EntryTag,IGroupHandle* parent);
43 };
44
45 #endif