aboutsummaryrefslogtreecommitdiffstats
path: root/advanced.h
blob: 36226a2404180857e3196b48a69d3166eb55a14d (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
/****************************************************************************
 *                                                                          *
 *   Copyright (C) 2005  Michael Buesch <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.                          *
 *                                                                          *
 *   This program is distributed in the hope that it will be useful,        *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 *   GNU General Public License for more details.                           *
 *                                                                          *
 *   You should have received a copy of the GNU General Public License      *
 *   along with this program. Additionally a copy of the                    *
 *   GNU General Public License is available here:                          *
 *   http://passwordmanager.sourceforge.net/gplv2.txt                       *
 *   http://www.gnu.org/licenses/gpl.txt                                    *
 *                                                                          *
 ****************************************************************************/

#ifndef REGTRACK_ADVANCED_H_
#define REGTRACK_ADVANCED_H_

#include <qwidget.h>
#include <qlayout.h>
#include <qlistview.h>

class AdvancedWidget;
class ContextList;
class RegTrack;
class QPushButton;

class ContextItem : public QListViewItem
{
public:
	ContextItem(ContextList *_parent,
		    const QString &name,
		    int _pos);
	virtual ~ContextItem();

	int getPos() const
		{ return pos; }

protected:
	ContextList *parent;
	int pos;
};

class ContextList : public QListView
{
	Q_OBJECT
public:
	ContextList(AdvancedWidget *_adv,
		    const char *name = 0,
		    WFlags f = 0);
	virtual ~ContextList();

protected slots:
	void itemDoubleClicked(QListViewItem *_item,
			       const QPoint &/*point*/,
			       int /*column*/);
	void itemClicked(int button,
			 QListViewItem *_item,
			 const QPoint &/*pos*/,
			 int /*column*/);
	void itemRenamed(QListViewItem *_item,
			 int /*column*/,
			 const QString &text);

protected:
	AdvancedWidget *adv;
};

class AdvancedWidget : public QWidget
{
	Q_OBJECT

	friend class ContextList;

public:
	AdvancedWidget(RegTrack *_rt,
		       const char *name = 0,
		       WFlags f = 0);
	virtual ~AdvancedWidget();

	virtual void show();

protected slots:
	void saveClicked();
	void loadClicked();
	void contextCloneClicked();
	void contextDelClicked();
	void contextSelected(QListViewItem *_item);

protected:
	void updateContextList();

protected:
	RegTrack *rt;
	QVBoxLayout *layout;
	QPushButton *saveButton;
	QPushButton *loadButton;
	ContextList *context;
	QPushButton *contextClone;
	QPushButton *contextDel;
};

#endif // REGTRACK_ADVANCED_H_
bues.ch cgit interface