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
|
/* This file is part of the KDE project
Copyright (C) 2002, 2003 Lucijan Busch <lucijan@gmx.at>
Copyright (C) 2003-2006 Jaroslaw Staniek <js@iidea.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KEXIBROWSER_H
#define KEXIBROWSER_H
#include <klistview.h>
#include <tqasciidict.h>
#include <tqintdict.h>
class TQListViewItem;
class KIconLoader;
class KPopupMenu;
class KAction;
class KActionMenu;
class KActionCollection;
class KListView;
class KToolBar;
class KexiBrowserItem;
class KexiView;
class KexiMainWindow;
class KexiSmallToolButton;
class KexiBrowserListView;
namespace KexiPart
{
class Info;
class Item;
class Part;
}
class KexiProject;
//! @short The Main Kexi navigator widget
class KEXIEXTWIDGETS_EXPORT KexiBrowser : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
enum Features {
Writable = 1, //!< the browser supports actions that modify the project (e.g. delete, rename)
ContextMenus = 2, //!< the browser supports context menu
Toolbar = 4, //!< the browser displays
SingleClickOpensItemOptionEnabled = 8, //!< enables "SingleClickOpensItem" option
DefaultFeatures = Writable | ContextMenus | Toolbar
| SingleClickOpensItemOptionEnabled //!< the default
};
KexiBrowser(TQWidget* parent, KexiMainWindow *mainWin, int features = DefaultFeatures);
virtual ~KexiBrowser();
/*! Sets project \a prj for this browser. If \a partManagerErrorMessages is not NULL
it will be set to error message if there's a problem with loading any KexiPart.
If \a itemsMimeType is empty (the default), items of all mime types are displayed,
items for only one mime type are displayed. In the latter case, no group (parent)
items are displayed.
Previous items are removed. */
void setProject(KexiProject* prj, const TQString& itemsMimeType = TQString(),
TQString* partManagerErrorMessages = 0);
/*! \return items' mime type previously set by setProject. Returns empty string
if setProject() was not executed yet or itemsMimeType argument of setProject() was
empty (i.e. all mime types are displayed). */
TQString itemsMimeType() const;
KexiPart::Item* selectedPartItem() const;
void installEventFilter ( const TQObject * filterObj );
virtual bool eventFilter ( TQObject *o, TQEvent * e );
bool actionEnabled(const TQCString& actionName) const;
public slots:
KexiBrowserItem* addGroup(KexiPart::Info& info);
KexiBrowserItem* addItem(KexiPart::Item& item);
void slotRemoveItem(const KexiPart::Item &item);
virtual void setFocus();
void updateItemName(KexiPart::Item& item, bool dirty);
void selectItem(KexiPart::Item& item);
void clearSelection();
void clear();
//! Sets by main window to disable actions that may try to modify the project.
//! Does not disable actions like opening objects.
void setReadOnly(bool set);
bool isReadOnly() const;
signals:
void openItem( KexiPart::Item*, int viewMode );
/*! this signal is emmited when user double clicked (or single -depending on settings)
or pressed return ky on the part item.
This signal differs from openItem() signal in that if the object is already opened
in view mode other than \a viewMode, the mode is not changed. */
void openOrActivateItem( KexiPart::Item*, int viewMode );
void newItem( KexiPart::Info* );
void removeItem( KexiPart::Item* );
void renameItem( KexiPart::Item *item, const TQString& _newName, bool &succes );
void selectionChanged( KexiPart::Item* item );
void executeItem( KexiPart::Item* );
void exportItemAsDataTable( KexiPart::Item* );
void printItem( KexiPart::Item* );
void pageSetupForItem( KexiPart::Item* );
protected slots:
void slotContextMenu(KListView*, TQListViewItem *i, const TQPoint &point);
void slotExecuteItem(TQListViewItem *item);
void slotSelectionChanged(TQListViewItem* i);
void slotSettingsChanged(int);
void slotNewObjectPopupAboutToShow();
void slotNewObject();
void slotOpenObject();
void slotDesignObject();
void slotEditTextObject();
void slotRemove();
void slotCut();
void slotCopy();
void slotPaste();
void slotRename();
void slotExecuteObject();
void slotExportAsDataTable();
void slotPrintItem();
void slotPageSetupForItem();
protected:
void itemRenameDone();
KexiBrowserItem* addItem(KexiPart::Item& item, KexiBrowserItem *parent, KexiPart::Info* info);
KexiMainWindow *m_mainWin;
int m_features;
KexiBrowserListView *m_list;
KActionCollection *m_actions;
TQAsciiDict<KexiBrowserItem> m_baseItems;
TQIntDict<KexiBrowserItem> m_normalItems;
KPopupMenu *m_itemPopup, *m_partPopup;
KAction *m_deleteAction, *m_renameAction,
*m_newObjectAction, // *m_newObjectToolbarAction,
*m_openAction, *m_designAction, *m_editTextAction,
*m_executeAction,
*m_dataExportAction, *m_printAction, *m_pageSetupAction;
KActionMenu* m_exportActionMenu;
KPopupMenu* m_newObjectPopup;
int m_itemPopupTitle_id, m_partPopupTitle_id,
m_openAction_id, m_designAction_id, m_editTextAction_id,
m_executeAction_id,
m_exportActionMenu_id, m_exportActionMenu_id_sep,
m_printAction_id, m_pageSetupAction_id, m_pageSetupAction_id_sep;
KexiPart::Part *m_prevSelectedPart;
KToolBar *m_toolbar;
KexiSmallToolButton *m_newObjectToolButton, *m_deleteObjectToolButton;
TQString m_itemsMimeType;
bool m_singleClick : 1;
bool m_readOnly : 1;
};
#endif
|