/* This file is part of the KDE project Copyright (C) 2002, 2003 Lucijan Busch Copyright (C) 2003-2006 Jaroslaw Staniek 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 #include #include 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* tqparent, 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 (tqparent) 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 *tqparent, KexiPart::Info* info); KexiMainWindow *m_mainWin; int m_features; KexiBrowserListView *m_list; KActionCollection *m_actions; TQAsciiDict m_baseItems; TQIntDict 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