summaryrefslogtreecommitdiff
path: root/libsylph/enums.h
diff options
context:
space:
mode:
authorSimeon Simeonov2018-02-26 11:23:00 +0100
committerSimeon Simeonov2018-02-26 11:23:00 +0100
commit0b3cbf57875fd692e4ba0b336fefa4bee1ed00dc (patch)
treeaf916a30553c78ce9d4f2d8658656a175c5b6921 /libsylph/enums.h
Initial commit for sylpheed 3.7.0
Diffstat (limited to 'libsylph/enums.h')
-rw-r--r--libsylph/enums.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/libsylph/enums.h b/libsylph/enums.h
new file mode 100644
index 0000000..29bae62
--- /dev/null
+++ b/libsylph/enums.h
@@ -0,0 +1,66 @@
1/*
2 * LibSylph -- E-Mail client library
3 * Copyright (C) 1999-2005 Hiroyuki Yamamoto
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef __ENUMS_H__
21#define __ENUMS_H__
22
23typedef enum
24{
25 TOOLBAR_NONE,
26 TOOLBAR_ICON,
27 TOOLBAR_TEXT,
28 TOOLBAR_BOTH,
29 TOOLBAR_BOTH_HORIZ
30} ToolbarStyle;
31
32typedef enum
33{
34 LAYOUT_NORMAL,
35 LAYOUT_VERTICAL,
36 LAYOUT_VERTICAL_DOUBLE,
37 LAYOUT_WIDE_MESSAGE,
38 LAYOUT_WIDE_SUMMARY
39} LayoutType;
40
41typedef enum
42{
43 S_COL_MARK,
44 S_COL_UNREAD,
45 S_COL_MIME,
46 S_COL_SUBJECT,
47 S_COL_FROM,
48 S_COL_DATE,
49 S_COL_SIZE,
50 S_COL_NUMBER,
51 S_COL_TO,
52
53 S_COL_MSG_INFO,
54
55 S_COL_LABEL,
56 S_COL_TDATE,
57
58 S_COL_FOREGROUND,
59 S_COL_BOLD,
60
61 N_SUMMARY_COLS
62} SummaryColumnType;
63
64#define N_SUMMARY_VISIBLE_COLS S_COL_MSG_INFO
65
66#endif /* __ENUMS_H__ */