1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright (C) 2004-2012 Geometer Plus <[email protected]>
*
* 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.
*/
#include <ZLOptionsDialog.h>
#include <ZLPaintContext.h>
#include <optionEntries/ZLSimpleOptionEntry.h>
#include <ZLTextView.h>
#include <ZLTextStyle.h>
#include <ZLTextStyleCollection.h>
#include <ZLTextStyleOptions.h>
#include "StyleOptionsPage.h"
#include "../../options/FBTextStyle.h"
#include "../../bookmodel/FBTextKind.h"
static const ZLResourceKey KEY_STYLE("style");
static const ZLResourceKey KEY_BASE("Base");
static const ZLResourceKey KEY_BOLD("bold");
static const ZLResourceKey KEY_ITALIC("italic");
static const ZLResourceKey KEY_FONTFAMILY("fontFamily");
static const ZLResourceKey KEY_FONTSIZE("fontSize");
static const ZLResourceKey KEY_FONTSIZEDIFFERENCE("fontSizeDifference");
static const ZLResourceKey KEY_ALLOWHYPHENATIONS("allowHyphenations");
static const ZLResourceKey KEY_AUTOHYPHENATIONS("autoHyphenations");
static const ZLResourceKey KEY_DUMMY("");
StyleOptionsPage::StyleOptionsPage(ZLDialogContent &dialogTab, ZLPaintContext &context) {
const ZLResource &styleResource = ZLResource::resource(KEY_STYLE);
myComboEntry = new ComboOptionEntry(*this, styleResource[KEY_BASE].value());
myComboEntry->addValue(myComboEntry->initialValue());
ZLTextStyleCollection &collection = ZLTextStyleCollection::Instance();
ZLTextKind styles[] = { REGULAR, TITLE, SECTION_TITLE, SUBTITLE, H1, H2, H3, H4, H5, H6, CONTENTS_TABLE_ENTRY, LIBRARY_ENTRY, ANNOTATION, EPIGRAPH, AUTHOR, DATEKIND, POEM_TITLE, STANZA, VERSE, CITE, INTERNAL_HYPERLINK, EXTERNAL_HYPERLINK, BOOK_HYPERLINK, FOOTNOTE, ITALIC, EMPHASIS, BOLD, STRONG, DEFINITION, DEFINITION_DESCRIPTION, PREFORMATTED, CODE };
const int STYLES_NUMBER = sizeof(styles) / sizeof(ZLTextKind);
for (int i = 0; i < STYLES_NUMBER; ++i) {
const ZLTextStyleDecoration *decoration = collection.decoration(styles[i]);
if (decoration != 0) {
myComboEntry->addValue(styleResource[decoration->name()].value());
}
}
dialogTab.addOption(ZLResourceKey("optionsFor"), myComboEntry);
{
const std::string &name = myComboEntry->initialValue();
FBTextStyle &baseStyle = FBTextStyle::Instance();
registerEntry(dialogTab,
KEY_FONTFAMILY, new ZLFontFamilyOptionEntry(baseStyle.FontFamilyOption, context),
name
);
registerEntry(dialogTab,
KEY_FONTSIZE, new ZLSimpleSpinOptionEntry(baseStyle.FontSizeOption, 2),
name
);
registerEntry(dialogTab,
KEY_BOLD, new ZLSimpleBooleanOptionEntry(baseStyle.BoldOption),
name
);
registerEntry(dialogTab,
KEY_ITALIC, new ZLSimpleBooleanOptionEntry(baseStyle.ItalicOption),
name
);
registerEntry(dialogTab,
KEY_AUTOHYPHENATIONS, new ZLSimpleBooleanOptionEntry(collection.AutoHyphenationOption),
name
);
}
for (int i = 0; i < STYLES_NUMBER; ++i) {
ZLTextStyleDecoration *decoration = collection.decoration(styles[i]);
if (decoration != 0) {
const std::string &name = styleResource[decoration->name()].value();
registerEntry(dialogTab,
KEY_FONTFAMILY, new ZLTextFontFamilyWithBaseOptionEntry(decoration->FontFamilyOption, dialogTab.resource(KEY_FONTFAMILY), context),
name
);
registerEntry(dialogTab,
KEY_FONTSIZEDIFFERENCE, new ZLSimpleSpinOptionEntry(decoration->FontSizeDeltaOption, 2),
name
);
registerEntry(dialogTab,
KEY_BOLD, new ZLSimpleBoolean3OptionEntry(decoration->BoldOption),
name
);
registerEntry(dialogTab,
KEY_ITALIC, new ZLSimpleBoolean3OptionEntry(decoration->ItalicOption),
name
);
registerEntry(dialogTab,
KEY_ALLOWHYPHENATIONS, new ZLSimpleBoolean3OptionEntry(decoration->AllowHyphenationsOption),
name
);
}
}
myComboEntry->onValueSelected(0);
}
|