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
|
/***************************************************************************
phrasetree.h - description
-------------------
begin : Don Okt 24 2002
copyright : (C) 2002 by Gunnar Schmi Dt
email : kmouth@schmi-dt.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef PHRASETREE_H
#define PHRASETREE_H
#include <tqpixmap.h>
#include <tdeshortcut.h>
#include <tdelistview.h>
class PhraseBook;
class PhraseShortcutRequest;
/**The class PhraseTreeItem is an ListViewItem for either a phrase or a phrase book.
*@author Gunnar Schmi Dt
*/
class PhraseTreeItem : public TDEListViewItem {
friend class PhraseTree;
private:
/** Creates a phrase item within a sub phrase book */
PhraseTreeItem (TQListView *parent, TQListViewItem *after, TQString phrase, TDEShortcut shortcut, TQPixmap icon);
/** Creates a phrase item at the top level */
PhraseTreeItem (TQListViewItem *parent, TQListViewItem *after, TQString phrase, TDEShortcut shortcut, TQPixmap icon);
/** Creates a phrase book item within a sub phrase book */
PhraseTreeItem (TQListView *parent, TQListViewItem *after, TQString name, TQPixmap icon);
/** Creates a phrase book item at the top level */
PhraseTreeItem (TQListViewItem *parent, TQListViewItem *after, TQString name, TQPixmap icon);
public:
bool isPhrase();
TDEShortcut cut();
void setCut(TDEShortcut cut);
private:
bool isPhraseValue;
TDEShortcut cutValue;
};
/**
* The class PhraseTree represents the ListView of the phrase book edit
* dialog. It extends TDEListView for providing better drag-and-drop support.
* @author Gunnar Schmi Dt
*/
class PhraseTree : public TDEListView {
friend class PhraseTreeItem;
TQ_OBJECT
public:
PhraseTree (TQWidget *parent = 0, const char *name = 0);
~PhraseTree ();
void keyPressEvent (TQKeyEvent *e);
PhraseTreeItem *insertPhrase (TQListViewItem *parent, TQListViewItem *after, TQString phrase, TQString shortcut);
PhraseTreeItem *insertBook (TQListViewItem *parent, TQListViewItem *after, TQString name);
TQListViewItem *addBook (TQListViewItem *parent, TQListViewItem *after, PhraseBook *book);
void fillBook (PhraseBook *book, bool respectSelection);
TQDragObject *dragObject ();
TQDragObject *dragObject (bool isDependent);
void moveItem (TQListViewItem *item, TQListViewItem *parent, TQListViewItem *above);
bool hasSelectedItems();
void deleteSelectedItems();
protected:
bool acceptDrag (TQDropEvent* event) const;
private:
void _warning (const KKeySequence& cut, TQString sAction, TQString sTitle);
bool isStdAccelPresent (const TDEShortcut& cut, bool warnUser);
bool isGlobalKeyPresent (const TDEShortcut& cut, bool warnUser);
bool isApplicationKeyPresent (const TDEShortcut& cut, bool warnUser);
bool isPhraseKeyPresent (const TDEShortcut& cut, PhraseTreeItem* cutItem, bool warnUser);
public:
bool isKeyPresent (const TDEShortcut& cut, PhraseTreeItem* cutItem, bool warnUser);
public slots:
void itemExpanded (TQListViewItem *item);
void itemCollapsed (TQListViewItem *item);
signals:
void shortcutRequest (PhraseShortcutRequest *request);
private:
TQPixmap phrasebook_open;
TQPixmap phrasebook_closed;
TQPixmap phrase;
};
#endif
|