diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kmail/kmglobal.h | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/kmglobal.h')
-rw-r--r-- | kmail/kmglobal.h | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/kmail/kmglobal.h b/kmail/kmglobal.h new file mode 100644 index 000000000..e44bd313b --- /dev/null +++ b/kmail/kmglobal.h @@ -0,0 +1,92 @@ +/* + * kmail: KDE mail client + * Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ +// removed almost everything: Sven Radej <radej@kde.org> + +//this could all go int kmkernel.h +#ifndef kmglobal_h +#define kmglobal_h + +typedef enum +{ + FCNTL, + procmail_lockfile, + mutt_dotlock, + mutt_dotlock_privileged, + lock_none +} LockType; + +/* + * Define the possible units to use for measuring message expiry. + * expireNever is used to switch off message expiry, and expireMaxUnits + * must always be the last in the list (for bounds checking). + */ +typedef enum { + expireNever, + expireDays, + expireWeeks, + expireMonths, + expireMaxUnits +} ExpireUnits; + +#define HDR_FROM 0x01 +#define HDR_REPLY_TO 0x02 +#define HDR_TO 0x04 +#define HDR_CC 0x08 +#define HDR_BCC 0x10 +#define HDR_SUBJECT 0x20 +#define HDR_NEWSGROUPS 0x40 +#define HDR_FOLLOWUP_TO 0x80 +#define HDR_IDENTITY 0x100 +#define HDR_TRANSPORT 0x200 +#define HDR_FCC 0x400 +#define HDR_DICTIONARY 0x800 +#define HDR_ALL 0xfff + +#define HDR_STANDARD (HDR_SUBJECT|HDR_TO|HDR_CC) + +#include <algorithm> + +namespace KMail { +// List of prime numbers shamelessly stolen from GCC STL + enum { num_primes = 29 }; + + static const unsigned long prime_list[ num_primes ] = + { + 31ul, 53ul, 97ul, 193ul, 389ul, + 769ul, 1543ul, 3079ul, 6151ul, 12289ul, + 24593ul, 49157ul, 98317ul, 196613ul, 393241ul, + 786433ul, 1572869ul, 3145739ul, 6291469ul, 12582917ul, + 25165843ul, 50331653ul, 100663319ul, 201326611ul, 402653189ul, + 805306457ul, 1610612741ul, 3221225473ul, 4294967291ul + }; + + inline unsigned long nextPrime( unsigned long n ) + { + const unsigned long *first = prime_list; + const unsigned long *last = prime_list + num_primes; + const unsigned long *pos = std::lower_bound( first, last, n ); + return pos == last ? *( last - 1 ) : *pos; + } + +} + +/** The "about KMail" text. */ +extern const char* aboutText; +#endif |