-rw-r--r-- | microkde/kemailsettings.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/microkde/kemailsettings.h b/microkde/kemailsettings.h new file mode 100644 index 0000000..cf43f17 --- a/dev/null +++ b/microkde/kemailsettings.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #ifndef MINIKDE_KEMAILSETTINGS_H | ||
2 | #define MINIKDE_KEMAILSETTINGS_H | ||
3 | |||
4 | #include <qstring.h> | ||
5 | |||
6 | class KEMailSettings | ||
7 | { | ||
8 | public: | ||
9 | enum Setting { | ||
10 | ClientProgram, | ||
11 | ClientTerminal, | ||
12 | RealName, | ||
13 | EmailAddress, | ||
14 | ReplyToAddress, | ||
15 | Organization, | ||
16 | OutServer, | ||
17 | OutServerLogin, | ||
18 | OutServerPass, | ||
19 | OutServerType, | ||
20 | OutServerCommand, | ||
21 | OutServerTLS, | ||
22 | InServer, | ||
23 | InServerLogin, | ||
24 | InServerPass, | ||
25 | InServerType, | ||
26 | InServerMBXType, | ||
27 | InServerTLS | ||
28 | }; | ||
29 | QString getSetting(KEMailSettings::Setting s); | ||
30 | }; | ||
31 | |||
32 | #endif | ||