summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/pwmtray.h
blob: b1145e080580043fe9a61547db500510b8986c8c (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/***************************************************************************
 *                                                                         *
 *   copyright (C) 2003, 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 __PWMTRAY_H
#define __PWMTRAY_H

#ifndef PWM_EMBEDDED
#include <ksystemtray.h>
#endif

#include <kpopupmenu.h>

#include <qpainter.h>
#include <q3valuelist.h>
//Added by qt3to4:
#include <QMouseEvent>
#include <QMenuItem>

//#include "pwmexception.h"

class PwMInit;
class PwMDoc;
class PwMTray;

/* wrapper to workaround MOC problems */
class __ActiveTreeItem : public QMenuItem
{
public:
	__ActiveTreeItem() {}
};

/** implements the "active" part of the tree */
class ActiveTreeItem : public __ActiveTreeItem
{
	Q_OBJECT

public:
	enum Task
	{
		pwToClipboard,
		nameToClipboard,
		descToClipboard,
		urlToClipboard,
		launcherToClipboard,
		commentToClipboard,
		execLauncher,
		goToURL,
		openMainWnd,
		closeDoc,
		lock,
		deepLock,
		unlock
	};

public:
	ActiveTreeItem(const QString &_text, const QFont &_font,
		       Task _task, PwMDoc * _doc,
		       int _category, int _entry,
		       PwMTray *_tray)
	 : text (_text)
	 , font (_font)
	 , task (_task)
	 , doc (_doc)
	 , category (_category)
	 , entry (_entry)
	 , tray (_tray)
	 	{ }

/*	~ActiveTreeItem()
		{ cout << "deleted \"" << text << "\"" << endl; } */

	void paint(QPainter *p, const QColorGroup & /*cg*/, bool /*act*/,
		   bool /*enabled*/, int x, int y, int w, int h)
		{
			p->setFont(font);
			p->drawText(x, y, w, h, Qt::AlignLeft | Qt::AlignVCenter |
				    Qt::DontClip | Qt::ShowPrefix, text);
		}

	QSize sizeHint()
		{
			return QFontMetrics(font).size(Qt::AlignLeft | Qt::AlignVCenter |
						       Qt::ShowPrefix | Qt::DontClip,  text);
		}

	bool fullSpan() const
			{ return false; }

	bool isSeparator() const
			{ return false; }

	void setFont(const QFont &f)
			{ font = f; }

public slots:
	/** this is the executive part, that is triggered, when the user clicks it */
	void execIt();

protected:
	QString text;
	QFont font;
	Task task;
	PwMDoc *doc;
	int category;
	int entry;
	PwMTray *tray;
};

/** tray icon implementation */
#ifndef PWM_EMBEDDED
#ifndef Q_MOC_RUN
class PwMTray : public KSystemTray
{
	Q_OBJECT

	friend class ActiveTreeItem;

	struct treeItem
	{
		int menuId;
		PwMDoc *doc;
		KPopupMenu *menu;
		Q3ValueList<int> activeItems; // ids of all active items
	};

public: 
	PwMTray(PwMInit *_init, QWidget* parent = 0, const char* name = 0);
	~PwMTray();

	/** connect all signals for this document to the tray */
	void connectDocToTray(PwMDoc *doc);

public slots:
	/** for update-notification from all open documents */
	void updateTree(PwMDoc *document);
	/** when a document has been closed, call this func
	  * to delete its tray-entry
	  */
	void closeTreeEntry(PwMDoc *document);

protected slots:
	/** open a new document */
	void openDoc();
	/** open a new mainwnd */
	void newMainWnd();
	/** undock this tray icon */
	void undock();

signals:
	/** this icon got deleted */
	void closed(PwMTray *);
	/** the user clicked on the tray icon */
	void clickedIcon(PwMTray *);

protected:
	/** holds a list of all open files, its documents and
	  * its menuIDs
	  */
	Q3ValueList<struct treeItem> tree;
	/** pointer to init */
	PwMInit *init;

protected:
	/** search if an entry with for the given document
	  * exists and resturn its ID and a pointer to the main
	  * KPopupMenu. If no item is found,
	  * it returns -1 as ID and a NULL-pointer.
	  */
	int findTreeEntry(PwMDoc *doc, KPopupMenu **menu, int *treeItem);
	/** build the main menu-items */
	void buildMain();
	/** rebuilds the tree for the given KPopupMenu entry */
	void rebuildTree(KPopupMenu *popup, PwMDoc *doc,
			 Q3ValueList<int> *activeItems);
	/** insert a new tree-entry for the given doc and returns the ID.*/
	int insertTreeEntry(PwMDoc *doc, KPopupMenu **popup);
	/** removes a tree entry */
	void removeTreeEntry(int menuId, int treeItem, KPopupMenu **menu);
	/** inserts a new active-tree-item into the given tree entry */
	void insertActiveTreeItem(KPopupMenu *insertIn, const QString &text,
				  ActiveTreeItem::Task task, PwMDoc *doc,
				  int docCategory, int docEntry,
				  Q3ValueList<int> *activeItemsList);
	/** mouse event on icon */
	void mouseReleaseEvent(QMouseEvent *e);
	/** inserts the items for the main window control
	  * into the popup menu.
	  */
	void insertMainWndCtrl(KPopupMenu *menu, PwMDoc *doc);
};
#endif
#else
class PwMTray : public QWidget 
{
	Q_OBJECT

	friend class ActiveTreeItem;

	struct treeItem
	{
		int menuId;
		PwMDoc *doc;
		KPopupMenu *menu;
		Q3ValueList<int> activeItems; // ids of all active items
	};

public: 
	PwMTray(PwMInit *_init, QWidget* parent = 0, const char* name = 0);
	~PwMTray();

	//US ENH needed for embedde version.
	KPopupMenu* contextMenu();
	KPopupMenu* m_ctxMenu;

	/** connect all signals for this document to the tray */
	void connectDocToTray(PwMDoc *doc);

public slots:
	/** for update-notification from all open documents */
	void updateTree(PwMDoc *document);
	/** when a document has been closed, call this func
	  * to delete its tray-entry
	  */
	void closeTreeEntry(PwMDoc *document);

protected slots:
	/** open a new document */
	void openDoc();
	/** open a new mainwnd */
	void newMainWnd();
	/** undock this tray icon */
	void undock();

signals:
	/** this icon got deleted */
	void closed(PwMTray *);
	/** the user clicked on the tray icon */
	void clickedIcon(PwMTray *);

protected:
	/** holds a list of all open files, its documents and
	  * its menuIDs
	  */
	Q3ValueList<struct treeItem> tree;
	/** pointer to init */
	PwMInit *init;

protected:
	/** search if an entry with for the given document
	  * exists and resturn its ID and a pointer to the main
	  * KPopupMenu. If no item is found,
	  * it returns -1 as ID and a NULL-pointer.
	  */
	int findTreeEntry(PwMDoc *doc, KPopupMenu **menu, int *treeItem);
	/** build the main menu-items */
	void buildMain();
	/** rebuilds the tree for the given KPopupMenu entry */
	void rebuildTree(KPopupMenu *popup, PwMDoc *doc,
			 Q3ValueList<int> *activeItems);
	/** insert a new tree-entry for the given doc and returns the ID.*/
	int insertTreeEntry(PwMDoc *doc, KPopupMenu **popup);
	/** removes a tree entry */
	void removeTreeEntry(int menuId, int treeItem, KPopupMenu **menu);
	/** inserts a new active-tree-item into the given tree entry */
	void insertActiveTreeItem(KPopupMenu *insertIn, const QString &text,
				  ActiveTreeItem::Task task, PwMDoc *doc,
				  int docCategory, int docEntry,
				  Q3ValueList<int> *activeItemsList);
	/** mouse event on icon */
	void mouseReleaseEvent(QMouseEvent *e);
	/** inserts the items for the main window control
	  * into the popup menu.
	  */
	void insertMainWndCtrl(KPopupMenu *menu, PwMDoc *doc);
};
#endif

#endif