summaryrefslogtreecommitdiffstats
path: root/framework/src/domain/mimetreeparser/otp/enums.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-23 21:00:50 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-23 21:00:50 +0200
commit31bf3102fe8f8cdd3f1448f0f22f182d0c2820d2 (patch)
treeb5b508c3f065e0f51c8ce40aaf97d7070b5f9ef5 /framework/src/domain/mimetreeparser/otp/enums.h
parent1948369d4da2d0bc23b6af93683982b0e65d4992 (diff)
downloadkube-31bf3102fe8f8cdd3f1448f0f22f182d0c2820d2.tar.gz
kube-31bf3102fe8f8cdd3f1448f0f22f182d0c2820d2.zip
Moved MIME related stuff to a mime subdir
Diffstat (limited to 'framework/src/domain/mimetreeparser/otp/enums.h')
-rw-r--r--framework/src/domain/mimetreeparser/otp/enums.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/framework/src/domain/mimetreeparser/otp/enums.h b/framework/src/domain/mimetreeparser/otp/enums.h
deleted file mode 100644
index bec5a028..00000000
--- a/framework/src/domain/mimetreeparser/otp/enums.h
+++ /dev/null
@@ -1,54 +0,0 @@
1/*
2 Copyright (c) 2016 Sandro Knauß <sknauss@kde.org>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU 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 __MIMETREEPARSER_ENUMS_H__
20#define __MIMETREEPARSER_ENUMS_H__
21
22namespace MimeTreeParser
23{
24
25/**
26 * The display update mode: Force updates the display immediately, Delayed updates
27 * after some time (150ms by default)
28 */
29enum UpdateMode {
30 Force = 0,
31 Delayed
32};
33
34/** Flags for the encryption state. */
35typedef enum {
36 KMMsgEncryptionStateUnknown = ' ',
37 KMMsgNotEncrypted = 'N',
38 KMMsgPartiallyEncrypted = 'P',
39 KMMsgFullyEncrypted = 'F',
40 KMMsgEncryptionProblematic = 'X'
41} KMMsgEncryptionState;
42
43/** Flags for the signature state. */
44typedef enum {
45 KMMsgSignatureStateUnknown = ' ',
46 KMMsgNotSigned = 'N',
47 KMMsgPartiallySigned = 'P',
48 KMMsgFullySigned = 'F',
49 KMMsgSignatureProblematic = 'X'
50} KMMsgSignatureState;
51
52}
53
54#endif