summaryrefslogtreecommitdiffstats
path: root/framework/mail/folderlistcontroller.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-03-09 15:20:31 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-03-09 15:20:31 +0100
commitf5185c4799fe0e9c31a218dfc8310515ac921c2b (patch)
tree5524d7a85c8bf82890d79ec6d1bb82b5124fd3b3 /framework/mail/folderlistcontroller.cpp
parentc9ccf868f5d533a07811b949577f772f618d2de3 (diff)
downloadkube-f5185c4799fe0e9c31a218dfc8310515ac921c2b.tar.gz
kube-f5185c4799fe0e9c31a218dfc8310515ac921c2b.zip
Moved framework/mail to framework/domain
Diffstat (limited to 'framework/mail/folderlistcontroller.cpp')
-rw-r--r--framework/mail/folderlistcontroller.cpp69
1 files changed, 0 insertions, 69 deletions
diff --git a/framework/mail/folderlistcontroller.cpp b/framework/mail/folderlistcontroller.cpp
deleted file mode 100644
index 46a6f648..00000000
--- a/framework/mail/folderlistcontroller.cpp
+++ /dev/null
@@ -1,69 +0,0 @@
1/*
2 Copyright (c) 2016 Michael Bohlender <michael.bohlender@kdemail.net>
3 Copyright (c) 2016 Christian Mollekopf <mollekopf@kolabsys.com>
4
5 This library is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Library General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or (at your
8 option) any later version.
9
10 This library is distributed in the hope that it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 02110-1301, USA.
19*/
20
21#include "folderlistcontroller.h"
22
23#include "folderlistmodel.h"
24
25#include <QDebug>
26
27FolderListController::FolderListController(QObject *parent) : QObject(parent), m_model(new FolderListModel)
28{
29
30}
31
32QString FolderListController::accountId() const
33{
34 return m_accountId;
35}
36
37void FolderListController::setAccountId(const QString &id)
38{
39 if(m_accountId != id) {
40 m_accountId = id;
41
42 loadFolders(id);
43
44 emit accountIdChanged();
45 }
46}
47
48FolderListModel* FolderListController::model() const
49{
50 return m_model.data();
51}
52
53void FolderListController::loadFolders(const QString &id)
54{
55 //load foldermodel from sink
56
57}
58
59
60void FolderListController::addFolder(const QString &name)
61{
62 qDebug() << "User Action: add folder " << name;
63}
64
65void FolderListController::deleteFolder(const QString &id)
66{
67 qDebug() << "User Action: delete folder " << id;
68}
69