mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
96 lines
2.6 KiB
C++
96 lines
2.6 KiB
C++
/*
|
|
Copyright (c) 2007 Volker Krause <vkrause@kde.org>
|
|
|
|
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 <ui_browserwidget_itemview.h>
|
|
#include <ui_browserwidget_contentview.h>
|
|
|
|
#include <akonadi/collection.h>
|
|
#include <akonadi/item.h>
|
|
#include <akonadi/etmviewstatesaver.h>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QModelIndex>
|
|
#include <QStandardItemModel>
|
|
|
|
class KJob;
|
|
class KToggleAction;
|
|
class KXmlGuiWindow;
|
|
|
|
class AkonadiBrowserModel;
|
|
|
|
template <typename T> 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<Akonadi::ETMViewStateSaver> *m_stateMaintainer;
|
|
KToggleAction *mCacheOnlyAction;
|
|
};
|
|
|
|
#endif
|