/* Copyright (c) 2007 Volker Krause 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 AKONADICONSOLE_BROWSERWIDGET_H #define AKONADICONSOLE_BROWSERWIDGET_H #include #include #include #include #include #include #include #include class KJob; class KToggleAction; class KXmlGuiWindow; class AkonadiBrowserModel; template class KViewStateMaintainer; namespace Akonadi { class ChangeRecorder; class EntityTreeView; class Job; class StandardActionManager; class Monitor; } namespace KPIM { class StatisticsProxyModel; } class BrowserWidget: public QWidget { Q_OBJECT public: explicit BrowserWidget( KXmlGuiWindow *xmlGuiWindow, QWidget *parent = 0 ); ~BrowserWidget(); public slots: void dumpToXml(); void clearCache(); private slots: void itemActivated( const QModelIndex &index ); void itemFetchDone( KJob *job ); void modelChanged(); void save(); void saveResult( KJob* job ); void addAttribute(); void delAttribute(); void setItem( const Akonadi::Item &item ); void dumpToXmlResult( KJob *job ); void clear(); void updateItemFetchScope(); private: Akonadi::Collection currentCollection() const; Akonadi::ChangeRecorder *mBrowserMonitor; AkonadiBrowserModel *mBrowserModel; Akonadi::EntityTreeView *mCollectionView; KPIM::StatisticsProxyModel *statisticsProxyModel; Ui::ItemViewWidget itemUi; Ui::ContentViewWidget contentUi; Akonadi::Item mCurrentItem; QStandardItemModel *mAttrModel; Akonadi::StandardActionManager *mStdActionManager; Akonadi::Monitor *mMonitor; KViewStateMaintainer *m_stateMaintainer; KToggleAction *mCacheOnlyAction; }; #endif