typo found by Andrey Cherepanov
[kdepim.git] / akonadiconsole / agentwidget.h
blob07b24511272dbddfedab1f4b48386ff89d0a31ac
1 /*
2 This file is part of Akonadi.
4 Copyright (c) 2006 Tobias Koenig <tokoe@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 USA.
22 #ifndef AGENTWIDGET_H
23 #define AGENTWIDGET_H
25 #include "ui_agentwidget.h"
27 #include <akonadi/agentinstance.h>
29 class KJob;
30 class QMenu;
31 class QPoint;
33 class AgentWidget : public QWidget
35 Q_OBJECT
37 public:
38 AgentWidget( QWidget *parent = 0 );
39 Akonadi::AgentInstanceWidget *widget() const { return ui.instanceWidget; }
41 private Q_SLOTS:
42 void addAgent();
43 void removeAgent();
44 void configureAgent();
45 void synchronizeAgent();
46 void synchronizeTree();
47 void toggleOnline();
48 void restartAgent();
49 void cloneAgent();
50 void cloneAgent( KJob *job );
52 void currentChanged( const Akonadi::AgentInstance &instance );
53 void showContextMenu( const QPoint &pos );
55 private:
56 Ui::AgentWidget ui;
57 QMenu *mSyncMenu;
58 Akonadi::AgentInstance mCloneSource;
61 #endif