Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include "controller/SlsProperties.hxx"
22 : #include <vcl/svapp.hxx>
23 : #include <vcl/settings.hxx>
24 :
25 : namespace sd { namespace slidesorter { namespace controller {
26 :
27 0 : Properties::Properties (void)
28 : : mbIsHighlightCurrentSlide(false),
29 : mbIsShowSelection(true),
30 : mbIsShowFocus(true),
31 : mbIsCenterSelection(false),
32 : mbIsSmoothSelectionScrolling(true),
33 : mbIsSuspendPreviewUpdatesDuringFullScreenPresentation(true),
34 0 : maBackgroundColor(Application::GetSettings().GetStyleSettings().GetWindowColor()),
35 0 : maTextColor(Application::GetSettings().GetStyleSettings().GetActiveTextColor()),
36 0 : maSelectionColor(Application::GetSettings().GetStyleSettings().GetHighlightColor()),
37 0 : maHighlightColor(Application::GetSettings().GetStyleSettings().GetMenuHighlightColor()),
38 : mbIsUIReadOnly(false),
39 : mbIsOnlyPreviewTriggersMouseOver(true),
40 : mbIsHighContrastModeActive(
41 0 : Application::GetSettings().GetStyleSettings().GetHighContrastMode())
42 : {
43 0 : }
44 :
45 :
46 :
47 :
48 0 : Properties::~Properties (void)
49 : {
50 0 : }
51 :
52 :
53 :
54 :
55 0 : void Properties::HandleDataChangeEvent (void)
56 : {
57 0 : maBackgroundColor = Application::GetSettings().GetStyleSettings().GetWindowColor();
58 0 : maTextColor = Application::GetSettings().GetStyleSettings().GetActiveTextColor();
59 0 : maSelectionColor = Application::GetSettings().GetStyleSettings().GetHighlightColor();
60 0 : maHighlightColor = Application::GetSettings().GetStyleSettings().GetMenuHighlightColor();
61 : mbIsHighContrastModeActive
62 0 : = Application::GetSettings().GetStyleSettings().GetHighContrastMode();
63 0 : }
64 :
65 :
66 :
67 :
68 0 : bool Properties::IsHighlightCurrentSlide (void) const
69 : {
70 0 : return mbIsHighlightCurrentSlide;
71 : }
72 :
73 :
74 :
75 :
76 0 : void Properties::SetHighlightCurrentSlide (const bool bIsHighlightCurrentSlide)
77 : {
78 0 : mbIsHighlightCurrentSlide = bIsHighlightCurrentSlide;
79 0 : }
80 :
81 :
82 :
83 :
84 0 : bool Properties::IsShowSelection (void) const
85 : {
86 0 : return mbIsShowSelection;
87 : }
88 :
89 :
90 :
91 :
92 0 : void Properties::SetShowSelection (const bool bIsShowSelection)
93 : {
94 0 : mbIsShowSelection = bIsShowSelection;
95 0 : }
96 :
97 :
98 :
99 :
100 0 : bool Properties::IsShowFocus (void) const
101 : {
102 0 : return mbIsShowFocus;
103 : }
104 :
105 :
106 :
107 :
108 0 : void Properties::SetShowFocus (const bool bIsShowFocus)
109 : {
110 0 : mbIsShowFocus = bIsShowFocus;
111 0 : }
112 :
113 :
114 :
115 :
116 0 : bool Properties::IsCenterSelection (void) const
117 : {
118 0 : return mbIsCenterSelection;
119 : }
120 :
121 :
122 :
123 :
124 0 : void Properties::SetCenterSelection (const bool bIsCenterSelection)
125 : {
126 0 : mbIsCenterSelection = bIsCenterSelection;
127 0 : }
128 :
129 :
130 :
131 :
132 0 : bool Properties::IsSmoothSelectionScrolling (void) const
133 : {
134 0 : return mbIsSmoothSelectionScrolling;
135 : }
136 :
137 :
138 :
139 :
140 0 : void Properties::SetSmoothSelectionScrolling (const bool bIsSmoothSelectionScrolling)
141 : {
142 0 : mbIsSmoothSelectionScrolling = bIsSmoothSelectionScrolling;
143 0 : }
144 :
145 :
146 :
147 :
148 0 : bool Properties::IsSuspendPreviewUpdatesDuringFullScreenPresentation (void) const
149 : {
150 0 : return mbIsSuspendPreviewUpdatesDuringFullScreenPresentation;
151 : }
152 :
153 :
154 :
155 :
156 0 : void Properties::SetSuspendPreviewUpdatesDuringFullScreenPresentation (const bool bFlag)
157 : {
158 0 : mbIsSuspendPreviewUpdatesDuringFullScreenPresentation = bFlag;
159 0 : }
160 :
161 :
162 :
163 :
164 0 : Color Properties::GetBackgroundColor (void) const
165 : {
166 0 : return maBackgroundColor;
167 : }
168 :
169 :
170 :
171 :
172 0 : void Properties::SetBackgroundColor (const Color& rColor)
173 : {
174 0 : maBackgroundColor = rColor;
175 0 : }
176 :
177 :
178 :
179 0 : Color Properties::GetTextColor (void) const
180 : {
181 0 : return maTextColor;
182 : }
183 :
184 :
185 :
186 :
187 0 : void Properties::SetTextColor (const Color& rColor)
188 : {
189 0 : maTextColor = rColor;
190 0 : }
191 :
192 :
193 :
194 :
195 0 : Color Properties::GetSelectionColor (void) const
196 : {
197 0 : return maSelectionColor;
198 : }
199 :
200 :
201 :
202 :
203 0 : void Properties::SetSelectionColor (const Color& rColor)
204 : {
205 0 : maSelectionColor = rColor;
206 0 : }
207 :
208 :
209 :
210 :
211 0 : Color Properties::GetHighlightColor (void) const
212 : {
213 0 : return maHighlightColor;
214 : }
215 :
216 :
217 :
218 :
219 0 : void Properties::SetHighlightColor (const Color& rColor)
220 : {
221 0 : maHighlightColor = rColor;
222 0 : }
223 :
224 :
225 :
226 :
227 0 : bool Properties::IsUIReadOnly (void) const
228 : {
229 0 : return mbIsUIReadOnly;
230 : }
231 :
232 :
233 :
234 :
235 0 : void Properties::SetUIReadOnly (const bool bIsUIReadOnly)
236 : {
237 0 : mbIsUIReadOnly = bIsUIReadOnly;
238 0 : }
239 :
240 :
241 :
242 :
243 0 : bool Properties::IsOnlyPreviewTriggersMouseOver (void) const
244 : {
245 0 : return mbIsOnlyPreviewTriggersMouseOver;
246 : }
247 :
248 :
249 : } } } // end of namespace ::sd::slidesorter::controller
250 :
251 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|