summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/pwmviewstyle.h
blob: a7dccbe17b61bc1790d452c5c3e7764ded4fec26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/***************************************************************************
 *                                                                         *
 *   copyright (C) 2004 by Michael Buesch                                  *
 *   email: mbuesch@freenet.de                                             *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License version 2        *
 *   as published by the Free Software Foundation.                         *
 *                                                                         *
 ***************************************************************************/


/***************************************************************************
 * copyright (C) 2004 by Ulf Schenk
 * This file is originaly based on version 1.0.1 of pwmanager
 * and was modified to run on embedded devices that run microkde
 *
 * $Id$
 **************************************************************************/  

#ifndef PWMVIEWSTYLE_H
#define PWMVIEWSTYLE_H

#include <qwidget.h>
#include <qsplitter.h>
#include <q3hbox.h>
#include <q3vbox.h>
#include <qpushbutton.h>
#include <q3popupmenu.h>
#ifndef PWM_EMBEDDED
#include <q3textedit.h>
#else
#include <q3multilineedit.h>
#endif

#include <qlabel.h>
#include <q3listbox.h>
#include <qcombobox.h>
#include <qsize.h>

class ListViewPwM;
class PwMViewStyle_0;
class PwMViewStyle_1;
class PwMView;
class Q3ListViewItem;
class CommentBox;

class PwMViewStyle : public QWidget
{
	Q_OBJECT

public:
	enum style_t
	{
		style_notset	= -1,
		style_0		= 0,
		style_1		= 1
	};

public:
	PwMViewStyle(QWidget *parent = 0, const char *name = 0);
	~PwMViewStyle();

	/** initialize a new style */
	void initStyle(style_t style);
	void initStyle(int style)
			{ initStyle(static_cast<style_t>(style)); }
	/** returns the currently used style */
	style_t getCurStyle()
			 { return curStyle; }
	void setView(PwMView *view)
			{ v = view; }

	/** returns the currently selected category */
	QString getCurrentCategory();

protected:
	/** add Category to the view */
	void addCategory(const QString &cat);
	/** delete Category from view */
	void delCategory(const QString &cat);
	/** delete all categories from view */
	void delAllCategories();
	/** select the specified category */
	void selectCategory(const QString &cat);
	/** returns the number of categories in this view.
	  * This value dosn't say anything about the number of
	  * categories in the document.
	  */
	int numCategories();
	/** resize the view */
	void resizeView(const QSize &size);
	ListViewPwM *lv;
	CommentBox *commentBox;

protected slots:
    void editPassWord( Q3ListViewItem * );

private:
	/** which style has the view?
	  * KListBox on the left,
	  * or QComboBox on the top?
	  */
	style_t curStyle;

	PwMViewStyle_0 *s0;
	PwMViewStyle_1 *s1;
	PwMView *v;
 signals:
    void editPW();
    void insertPW();
    void deletePW();

};
#endif