~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to messagelist/messagelistutil.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: C++; c-file-style: "gnu" -*-
 
2
  This file is part of KMail, the KDE mail client.
 
3
  Copyright (c) 2011 Montel Laurent <montel@kde.org>
 
4
 
 
5
  KMail is free software; you can redistribute it and/or modify it
 
6
  under the terms of the GNU General Public License, version 2, as
 
7
  published by the Free Software Foundation.
 
8
 
 
9
  KMail is distributed in the hope that it will be useful, but
 
10
  WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
  General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public License along
 
15
  with this program; if not, write to the Free Software Foundation, Inc.,
 
16
  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
*/
 
18
 
 
19
#ifndef MESSAGELISTUTIL_H
 
20
#define MESSAGELISTUTIL_H
 
21
 
 
22
#include <messagelist/messagelist_export.h>
 
23
#include <QString>
 
24
namespace MessageList
 
25
{
 
26
namespace Util {
 
27
  MESSAGELIST_EXPORT QString messageSortingConfigName();
 
28
  MESSAGELIST_EXPORT QString messageSortDirectionConfigName();
 
29
  MESSAGELIST_EXPORT QString groupSortingConfigName();
 
30
  MESSAGELIST_EXPORT QString groupSortDirectionConfigName();
 
31
  MESSAGELIST_EXPORT QString messageUniqueIdConfigName();
 
32
  MESSAGELIST_EXPORT QString storageModelSortOrderGroup();
 
33
  MESSAGELIST_EXPORT QString storageModelThemesGroup();
 
34
  MESSAGELIST_EXPORT QString storageModelAggregationsGroup();
 
35
  MESSAGELIST_EXPORT QString setForStorageModelConfigName();
 
36
  MESSAGELIST_EXPORT QString storageModelSelectedMessageGroup();
 
37
  MESSAGELIST_EXPORT void deleteConfig( const QString& collectionId );
 
38
 
 
39
}
 
40
}
 
41
 
 
42
#endif /* MESSAGELISTUTIL_H */
 
43