aboutsummaryrefslogtreecommitdiffstats
path: root/stack.h
blob: a33ac23d503a9da7ebe9fd2d2523ec9a0e07e982 (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
/****************************************************************************
 *                                                                          *
 *   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_STACK_H_
#define REGTRACK_STACK_H_

#include <qlistview.h>


class StackView;
class RegTrack;

class StackItem : public QListViewItem
{
public:
	StackItem(StackView *_parent, int _pos);
	virtual ~StackItem();

	void setName(const QString &str);
	void setText(const QString &str);
	QString text() const;

protected:
	virtual int width(const QFontMetrics &fm,
			  const QListView *lv,
			  int c) const;
	virtual int compare(QListViewItem *_item,
			    int col,
			    bool ascending) const;

protected:
	StackView *parent;
	int pos;
};

class StackView : public QListView
{
	Q_OBJECT

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

	void push(QString str);
	QString pop();

	int size() const;
	int count() const;
	void reset(bool full = false);

	void load(QDataStream &ds);
	void save(QDataStream &ds);

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

protected:
	void updateItemNames();

protected:
	RegTrack *rt;
	QValueList<StackItem *> list;
};

#endif // REGTRACK_STACK_H_
bues.ch cgit interface