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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// Design proposal: https://wiki.documentfoundation.org/Design/Whiteboards/Comments_Ruler_Control
#include <swruler.hxx>
#include <viewsh.hxx>
#include <edtwin.hxx>
#include <PostItMgr.hxx>
#include <view.hxx>
#include <cmdid.h>
#include <sfx2/request.hxx>
#include <tools/UnitConversion.hxx>
#include <vcl/commandevent.hxx>
#include <vcl/event.hxx>
#include <vcl/window.hxx>
#include <vcl/settings.hxx>
#include <tools/json_writer.hxx>
#include <strings.hrc>
#include <comphelper/lok.hxx>
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
#define CONTROL_BORDER_WIDTH 1
namespace
{
/**
* Draw a little arrow / triangle with different directions
*
* \param nX left coordinate of arrow square
* \param nY top coordinate of arrow square
* \param nSize size of the long triangle side / arrow square
* \param Color arrow color
* \param bCollapsed if the arrow should display the collapsed state
*/
void ImplDrawArrow(vcl::RenderContext& rRenderContext, tools::Long nX, tools::Long nY,
tools::Long nSize, const Color& rColor, bool bCollapsed)
{
tools::Polygon aTrianglePolygon(4);
if (bCollapsed)
{
if (AllSettings::GetLayoutRTL()) // <
{
aTrianglePolygon.SetPoint({ nX + nSize / 2, nY }, 0);
aTrianglePolygon.SetPoint({ nX + nSize / 2, nY + nSize }, 1);
aTrianglePolygon.SetPoint({ nX, nY + nSize / 2 }, 2);
aTrianglePolygon.SetPoint({ nX + nSize / 2, nY }, 3);
}
else // >
{
aTrianglePolygon.SetPoint({ nX, nY }, 0);
aTrianglePolygon.SetPoint({ nX + nSize / 2, nY + nSize / 2 }, 1);
aTrianglePolygon.SetPoint({ nX, nY + nSize }, 2);
aTrianglePolygon.SetPoint({ nX, nY }, 3);
}
}
else // v
{
aTrianglePolygon.SetPoint({ nX, nY + nSize / 2 }, 0);
aTrianglePolygon.SetPoint({ nX + nSize, nY + nSize / 2 }, 1);
aTrianglePolygon.SetPoint({ nX + nSize / 2, nY + nSize }, 2);
aTrianglePolygon.SetPoint({ nX, nY + nSize / 2 }, 3);
}
rRenderContext.SetLineColor();
rRenderContext.SetFillColor(rColor);
rRenderContext.DrawPolygon(aTrianglePolygon);
}
}
// Constructor
SwCommentRuler::SwCommentRuler(SwViewShell* pViewSh, vcl::Window* pParent, SwEditWin* pWin,
SvxRulerSupportFlags nRulerFlags, SfxBindings& rBindings,
WinBits nWinStyle)
: SvxRuler(pParent, pWin, nRulerFlags, rBindings, nWinStyle | WB_HSCROLL)
, mpViewShell(pViewSh)
, mpSwWin(pWin)
, mbIsHighlighted(false)
, maFadeTimer("sw::SwCommentRuler maFadeTimer")
, mnFadeRate(0)
, maVirDev(VclPtr<VirtualDevice>::Create(*GetOutDev()))
{
// Set fading timeout: 5 x 40ms = 200ms
maFadeTimer.SetTimeout(40);
maFadeTimer.SetInvokeHandler(LINK(this, SwCommentRuler, FadeHandler));
// we have a little bit more space, as we don't draw ruler ticks
vcl::Font aFont(maVirDev->GetFont());
aFont.SetFontHeight(aFont.GetFontHeight() + 1);
maVirDev->SetFont(aFont);
}
SwCommentRuler::~SwCommentRuler() { disposeOnce(); }
void SwCommentRuler::dispose()
{
mpSwWin.clear();
SvxRuler::dispose();
}
void SwCommentRuler::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect)
{
if (comphelper::LibreOfficeKit::isActive())
return; // no need to waste time on startup
SvxRuler::Paint(rRenderContext, rRect);
// Don't draw if there is not any note
if (mpViewShell->GetPostItMgr() && mpViewShell->GetPostItMgr()->HasNotes())
DrawCommentControl(rRenderContext);
}
void SwCommentRuler::DrawCommentControl(vcl::RenderContext& rRenderContext)
{
const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings();
const bool bIsCollapsed = !mpViewShell->GetPostItMgr()->ShowNotes();
const tools::Rectangle aControlRect = GetCommentControlRegion();
maVirDev->SetOutputSizePixel(aControlRect.GetSize());
// set colors
if (!bIsCollapsed)
{
if (mbIsHighlighted)
maVirDev->SetFillColor(
GetFadedColor(rStyleSettings.GetHighlightColor(), rStyleSettings.GetDialogColor()));
else
maVirDev->SetFillColor(rStyleSettings.GetDialogColor());
maVirDev->SetLineColor(rStyleSettings.GetShadowColor());
}
else
{
if (mbIsHighlighted)
maVirDev->SetFillColor(GetFadedColor(rStyleSettings.GetHighlightColor(),
rStyleSettings.GetWorkspaceColor()));
else
maVirDev->SetFillColor(rStyleSettings.GetWorkspaceColor());
maVirDev->SetLineColor();
}
Color aTextColor = GetFadedColor(rStyleSettings.GetHighlightTextColor(),
rStyleSettings.GetButtonTextColor());
maVirDev->SetTextColor(aTextColor);
// calculate label and arrow positions
const OUString aLabel = SwResId(STR_COMMENTS_LABEL);
const tools::Long nTriangleSize = maVirDev->GetTextHeight() / 2 + 1;
const tools::Long nTrianglePad = maVirDev->GetTextHeight() / 4;
Point aLabelPos(0, (aControlRect.GetHeight() - maVirDev->GetTextHeight()) / 2);
Point aArrowPos(0, (aControlRect.GetHeight() - nTriangleSize) / 2);
if (!AllSettings::GetLayoutRTL()) // | > Comments |
{
aArrowPos.setX(nTrianglePad);
aLabelPos.setX(aArrowPos.X() + nTriangleSize + nTrianglePad);
}
else // RTL => | Comments < |
{
const tools::Long nLabelWidth = maVirDev->GetTextWidth(aLabel);
if (!bIsCollapsed)
{
aArrowPos.setX(aControlRect.GetWidth() - 1 - nTrianglePad - CONTROL_BORDER_WIDTH
- nTriangleSize);
aLabelPos.setX(aArrowPos.X() - nTrianglePad - nLabelWidth);
}
else
{
// if comments are collapsed, left align the text, because otherwise it's very likely to be invisible
aArrowPos.setX(nLabelWidth + nTrianglePad + nTriangleSize);
aLabelPos.setX(aArrowPos.X() - nTrianglePad - nLabelWidth);
}
}
// draw control
maVirDev->DrawRect(tools::Rectangle(Point(), aControlRect.GetSize()));
maVirDev->DrawText(aLabelPos, aLabel);
ImplDrawArrow(*maVirDev, aArrowPos.X(), aArrowPos.Y(), nTriangleSize, aTextColor, bIsCollapsed);
rRenderContext.DrawOutDev(aControlRect.TopLeft(), aControlRect.GetSize(), Point(),
aControlRect.GetSize(), *maVirDev);
}
// Just accept double-click outside comment control
void SwCommentRuler::Command(const CommandEvent& rCEvt)
{
Point aMousePos = rCEvt.GetMousePosPixel();
// Ignore command request if it is inside Comment Control
if (!mpViewShell->GetPostItMgr() || !mpViewShell->GetPostItMgr()->HasNotes()
|| !GetCommentControlRegion().Contains(aMousePos))
SvxRuler::Command(rCEvt);
}
void SwCommentRuler::MouseMove(const MouseEvent& rMEvt)
{
SvxRuler::MouseMove(rMEvt);
if (!mpViewShell->GetPostItMgr() || !mpViewShell->GetPostItMgr()->HasNotes())
return;
UpdateCommentHelpText();
Point aMousePos = rMEvt.GetPosPixel();
bool bWasHighlighted = mbIsHighlighted;
mbIsHighlighted = GetCommentControlRegion().Contains(aMousePos);
if (mbIsHighlighted != bWasHighlighted)
// Do start fading
maFadeTimer.Start();
}
void SwCommentRuler::MouseButtonDown(const MouseEvent& rMEvt)
{
Point aMousePos = rMEvt.GetPosPixel();
if (!rMEvt.IsLeft() || IsTracking() || !GetCommentControlRegion().Contains(aMousePos))
{
SvxRuler::MouseButtonDown(rMEvt);
return;
}
// Toggle notes visibility
SwView& rView = mpSwWin->GetView();
SfxRequest aRequest(rView.GetViewFrame(), SID_TOGGLE_NOTES);
rView.ExecViewOptions(aRequest);
// It is inside comment control, so update help text
UpdateCommentHelpText();
Invalidate();
}
void SwCommentRuler::CreateJsonNotification(tools::JsonWriter& rJsonWriter)
{
// Note that GetMargin1(), GetMargin2(), GetNullOffset(), and GetPageOffset() return values in
// pixels. Not twips. So "converting" the returned values with convertTwipToMm100() is quite
// wrong. (Also, even if the return values actually were in twips, it is questionable why we
// would want to pass them in mm100, as all other length values in the LOKit protocol apparently
// are in twips.)
// Anyway, as the consuming code in Online mostly seems to work anyway, it is likely that it
// would work as well even if the values in pixels were passed without a bogus "conversion" to
// mm100. But let's keep this as is for now.
// Also note that in desktop LibreOffice, these pixel values for the ruler of course change as
// one changes the zoom level. (Can be seen if one temporarily modifies the NotifyKit() function
// below to call this CreateJsonNotification() function and print its result in all cases even
// without LibreOfficeKit::isActive().) But in both web-based Online and in the iOS app, the
// zoom level from the point of view of this code here apparently does not change even if one
// zooms from the Online code's point of view.
rJsonWriter.put("margin1", convertTwipToMm100(GetMargin1()));
rJsonWriter.put("margin2", convertTwipToMm100(GetMargin2()));
rJsonWriter.put("leftOffset", convertTwipToMm100(GetNullOffset()));
rJsonWriter.put("pageOffset", convertTwipToMm100(GetPageOffset()));
// GetPageWidth() on the other hand does return a value in twips.
// So here convertTwipToMm100() really does produce actual mm100. Fun.
rJsonWriter.put("pageWidth", convertTwipToMm100(GetPageWidth()));
{
auto tabsNode = rJsonWriter.startNode("tabs");
// The RulerTab array elements that GetTabs() returns have their nPos field in twips. So these
// too are actual mm100.
for (auto const& tab : GetTabs())
{
auto tabNode = rJsonWriter.startNode("");
rJsonWriter.put("position", convertTwipToMm100(tab.nPos));
rJsonWriter.put("style", tab.nStyle);
}
}
RulerUnitData aUnitData = GetCurrentRulerUnit();
rJsonWriter.put("unit", aUnitData.aUnitStr);
}
void SwCommentRuler::NotifyKit()
{
if (!comphelper::LibreOfficeKit::isActive())
return;
tools::JsonWriter aJsonWriter;
CreateJsonNotification(aJsonWriter);
OString pJsonData = aJsonWriter.finishAndGetAsOString();
mpViewShell->GetSfxViewShell()->libreOfficeKitViewCallback(LOK_CALLBACK_RULER_UPDATE,
pJsonData);
}
void SwCommentRuler::Update()
{
tools::Rectangle aPreviousControlRect = GetCommentControlRegion();
SvxRuler::Update();
if (aPreviousControlRect != GetCommentControlRegion())
Invalidate();
NotifyKit();
}
void SwCommentRuler::UpdateCommentHelpText()
{
TranslateId pTooltipResId;
if (mpViewShell->GetPostItMgr()->ShowNotes())
pTooltipResId = STR_HIDE_COMMENTS;
else
pTooltipResId = STR_SHOW_COMMENTS;
SetQuickHelpText(SwResId(pTooltipResId));
}
// TODO Make Ruler return its central rectangle instead of margins.
tools::Rectangle SwCommentRuler::GetCommentControlRegion()
{
SwPostItMgr* pPostItMgr = mpViewShell->GetPostItMgr();
//rhbz#1006850 When the SwPostItMgr ctor is called from SwView::SwView it
//triggers an update of the uiview, but the result of the ctor hasn't been
//set into the mpViewShell yet, so GetPostItMgr is temporarily still NULL
if (!pPostItMgr)
return tools::Rectangle();
const tools::ULong nSidebarWidth = pPostItMgr->GetSidebarWidth(true);
//FIXME When the page width is larger then screen, the ruler is misplaced by one pixel
tools::Long nLeft = GetPageOffset();
if (GetTextRTL())
nLeft += GetBorderOffset() - nSidebarWidth;
else
nLeft += GetWinOffset() + mpSwWin->LogicToPixel(Size(GetPageWidth(), 0)).Width();
// Ruler::ImplDraw uses RULER_OFF (value: 3px) as offset, and Ruler::ImplFormat adds one extra pixel
tools::Long nTop = 4;
// Somehow pPostItMgr->GetSidebarBorderWidth() returns border width already doubled
tools::Long nRight = nLeft + nSidebarWidth + pPostItMgr->GetSidebarBorderWidth(true);
tools::Long nBottom = nTop + GetRulerVirHeight() - 3;
tools::Rectangle aRect(nLeft, nTop, nRight, nBottom);
return aRect;
}
Color SwCommentRuler::GetFadedColor(const Color& rHighColor, const Color& rLowColor)
{
if (!maFadeTimer.IsActive())
return mbIsHighlighted ? rHighColor : rLowColor;
Color aColor = rHighColor;
aColor.Merge(rLowColor, mnFadeRate * 255 / 100.0f);
return aColor;
}
IMPL_LINK_NOARG(SwCommentRuler, FadeHandler, Timer*, void)
{
const int nStep = 25;
if (mbIsHighlighted && mnFadeRate < 100)
mnFadeRate += nStep;
else if (!mbIsHighlighted && mnFadeRate > 0)
mnFadeRate -= nStep;
else
return;
Invalidate();
if (mnFadeRate != 0 && mnFadeRate != 100)
maFadeTimer.Start();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|