author | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
commit | b9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (unidiff) | |
tree | 2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /microkde/kemailsettings.h | |
download | kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2 |
Initial revision
-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 | ||