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 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <tbzoomsliderctrl.hxx>
#include <comphelper/propertyvalue.hxx>
#include <utility>
#include <vcl/InterimItemWindow.hxx>
#include <vcl/event.hxx>
#include <vcl/image.hxx>
#include <vcl/toolbox.hxx>
#include <vcl/virdev.hxx>
#include <svx/zoomslideritem.hxx>
#include <iterator>
#include <set>
#include <bitmaps.hlst>
#include <com/sun/star/frame/XFrame.hpp>
#include <com/sun/star/frame/XDispatchProvider.hpp>
// class ScZoomSliderControl ---------------------------------------
SFX_IMPL_TOOLBOX_CONTROL( ScZoomSliderControl, SvxZoomSliderItem );
ScZoomSliderControl::ScZoomSliderControl(
sal_uInt16 nSlotId,
ToolBoxItemId nId,
ToolBox& rTbx )
:SfxToolBoxControl( nSlotId, nId, rTbx )
{
rTbx.Invalidate();
}
ScZoomSliderControl::~ScZoomSliderControl()
{
}
void ScZoomSliderControl::StateChangedAtToolBoxControl( sal_uInt16 /*nSID*/, SfxItemState eState,
const SfxPoolItem* pState )
{
ToolBoxItemId nId = GetId();
ToolBox& rTbx = GetToolBox();
ScZoomSliderWnd* pBox = static_cast<ScZoomSliderWnd*>(rTbx.GetItemWindow( nId ));
OSL_ENSURE( pBox ,"Control not found!" );
if (SfxItemState::DEFAULT != eState || SfxItemState::DISABLED == eState)
{
SvxZoomSliderItem aZoomSliderItem( 100 );
pBox->Disable();
pBox->UpdateFromItem( &aZoomSliderItem );
}
else
{
pBox->Enable();
OSL_ENSURE( dynamic_cast<const SvxZoomSliderItem*>( pState) != nullptr, "invalid item type" );
const SvxZoomSliderItem* pZoomSliderItem = dynamic_cast< const SvxZoomSliderItem* >( pState );
OSL_ENSURE( pZoomSliderItem, "Sc::ScZoomSliderControl::StateChanged(), wrong item type!" );
if( pZoomSliderItem )
pBox->UpdateFromItem( pZoomSliderItem );
}
}
VclPtr<InterimItemWindow> ScZoomSliderControl::CreateItemWindow( vcl::Window *pParent )
{
// #i98000# Don't try to get a value via SfxViewFrame::Current here.
// The view's value is always notified via StateChanged later.
VclPtrInstance<ScZoomSliderWnd> xSlider( pParent,
css::uno::Reference< css::frame::XDispatchProvider >( m_xFrame->getController(),
css::uno::UNO_QUERY ), 100 );
return xSlider;
}
constexpr sal_uInt16 gnSliderCenter(100);
const tools::Long nButtonWidth = 10;
const tools::Long nButtonHeight = 10;
const tools::Long nIncDecWidth = 11;
const tools::Long nIncDecHeight = 11;
const tools::Long nSliderHeight = 2;
const tools::Long nSliderWidth = 4;
const tools::Long nSnappingHeight = 4;
const tools::Long nSliderXOffset = 20;
const tools::Long nSnappingEpsilon = 5; // snapping epsilon in pixels
const tools::Long nSnappingPointsMinDist = nSnappingEpsilon; // minimum distance of two adjacent snapping points
sal_uInt16 ScZoomSlider::Offset2Zoom( tools::Long nOffset ) const
{
Size aSliderWindowSize = GetOutputSizePixel();
const tools::Long nControlWidth = aSliderWindowSize.Width();
sal_uInt16 nRet = 0;
if( nOffset < nSliderXOffset )
return mnMinZoom;
if( nOffset > nControlWidth - nSliderXOffset )
return mnMaxZoom;
// check for snapping points:
auto aSnappingPointIter = std::find_if(maSnappingPointOffsets.begin(), maSnappingPointOffsets.end(),
[nOffset](const tools::Long nCurrent) { return std::abs(nCurrent - nOffset) < nSnappingEpsilon; });
if (aSnappingPointIter != maSnappingPointOffsets.end())
{
nOffset = *aSnappingPointIter;
auto nCount = static_cast<sal_uInt16>(std::distance(maSnappingPointOffsets.begin(), aSnappingPointIter));
nRet = maSnappingPointZooms[ nCount ];
}
if( 0 == nRet )
{
if( nOffset < nControlWidth / 2 )
{
// first half of slider
const tools::Long nFirstHalfRange = gnSliderCenter - mnMinZoom;
const tools::Long nHalfSliderWidth = nControlWidth/2 - nSliderXOffset;
const tools::Long nZoomPerSliderPixel = (1000 * nFirstHalfRange) / nHalfSliderWidth;
const tools::Long nOffsetToSliderLeft = nOffset - nSliderXOffset;
nRet = mnMinZoom + sal_uInt16( nOffsetToSliderLeft * nZoomPerSliderPixel / 1000 );
}
else
{
// second half of slider
const tools::Long nSecondHalfRange = mnMaxZoom - gnSliderCenter;
const tools::Long nHalfSliderWidth = nControlWidth/2 - nSliderXOffset;
const tools::Long nZoomPerSliderPixel = 1000 * nSecondHalfRange / nHalfSliderWidth;
const tools::Long nOffsetToSliderCenter = nOffset - nControlWidth/2;
nRet = gnSliderCenter + sal_uInt16( nOffsetToSliderCenter * nZoomPerSliderPixel / 1000 );
}
}
if( nRet < mnMinZoom )
return mnMinZoom;
else if( nRet > mnMaxZoom )
return mnMaxZoom;
return nRet;
}
tools::Long ScZoomSlider::Zoom2Offset( sal_uInt16 nCurrentZoom ) const
{
Size aSliderWindowSize = GetOutputSizePixel();
const tools::Long nControlWidth = aSliderWindowSize.Width();
tools::Long nRect = nSliderXOffset;
const tools::Long nHalfSliderWidth = nControlWidth/2 - nSliderXOffset;
if( nCurrentZoom <= gnSliderCenter )
{
nCurrentZoom = nCurrentZoom - mnMinZoom;
const tools::Long nFirstHalfRange = gnSliderCenter - mnMinZoom;
const tools::Long nSliderPixelPerZoomPercent = 1000 * nHalfSliderWidth / nFirstHalfRange;
const tools::Long nOffset = (nSliderPixelPerZoomPercent * nCurrentZoom) / 1000;
nRect += nOffset;
}
else
{
nCurrentZoom = nCurrentZoom - gnSliderCenter;
const tools::Long nSecondHalfRange = mnMaxZoom - gnSliderCenter;
const tools::Long nSliderPixelPerZoomPercent = 1000 * nHalfSliderWidth / nSecondHalfRange;
const tools::Long nOffset = (nSliderPixelPerZoomPercent * nCurrentZoom) / 1000;
nRect += nHalfSliderWidth + nOffset;
}
return nRect;
}
ScZoomSliderWnd::ScZoomSliderWnd( vcl::Window* pParent,
const css::uno::Reference< css::frame::XDispatchProvider >& rDispatchProvider,
sal_uInt16 nCurrentZoom ):
InterimItemWindow(pParent, "modules/scalc/ui/zoombox.ui", "ZoomBox"),
mxWidget(new ScZoomSlider(rDispatchProvider, nCurrentZoom)),
mxWeld(new weld::CustomWeld(*m_xBuilder, "zoom", *mxWidget))
{
Size aLogicalSize( 115, 40 );
Size aSliderSize = LogicToPixel(aLogicalSize, MapMode(MapUnit::Map10thMM));
Size aPreferredSize(aSliderSize.Width() * nSliderWidth-1, aSliderSize.Height() + nSliderHeight);
mxWidget->GetDrawingArea()->set_size_request(aPreferredSize.Width(), aPreferredSize.Height());
mxWidget->SetOutputSizePixel(aPreferredSize);
SetSizePixel(aPreferredSize);
}
ScZoomSliderWnd::~ScZoomSliderWnd()
{
disposeOnce();
}
void ScZoomSliderWnd::dispose()
{
mxWeld.reset();
mxWidget.reset();
InterimItemWindow::dispose();
}
ScZoomSlider::ScZoomSlider(css::uno::Reference< css::frame::XDispatchProvider> xDispatchProvider,
sal_uInt16 nCurrentZoom)
: mnCurrentZoom( nCurrentZoom ),
mnMinZoom( 10 ),
mnMaxZoom( 400 ),
mbOmitPaint( false ),
m_xDispatchProvider(std::move(xDispatchProvider))
{
maSliderButton = Image(StockImage::Yes, RID_SVXBMP_SLIDERBUTTON);
maIncreaseButton = Image(StockImage::Yes, RID_SVXBMP_SLIDERINCREASE);
maDecreaseButton = Image(StockImage::Yes, RID_SVXBMP_SLIDERDECREASE);
}
bool ScZoomSlider::MouseButtonDown( const MouseEvent& rMEvt )
{
Size aSliderWindowSize = GetOutputSizePixel();
const Point aPoint = rMEvt.GetPosPixel();
const tools::Long nButtonLeftOffset = ( nSliderXOffset - nIncDecWidth )/2;
const tools::Long nButtonRightOffset = ( nSliderXOffset + nIncDecWidth )/2;
const tools::Long nOldZoom = mnCurrentZoom;
// click to - button
if ( aPoint.X() >= nButtonLeftOffset && aPoint.X() <= nButtonRightOffset )
{
mnCurrentZoom = mnCurrentZoom - 5;
}
// click to + button
else if ( aPoint.X() >= aSliderWindowSize.Width() - nSliderXOffset + nButtonLeftOffset &&
aPoint.X() <= aSliderWindowSize.Width() - nSliderXOffset + nButtonRightOffset )
{
mnCurrentZoom = mnCurrentZoom + 5;
}
else if( aPoint.X() >= nSliderXOffset && aPoint.X() <= aSliderWindowSize.Width() - nSliderXOffset )
{
mnCurrentZoom = Offset2Zoom( aPoint.X() );
}
if( mnCurrentZoom < mnMinZoom )
mnCurrentZoom = mnMinZoom;
else if( mnCurrentZoom > mnMaxZoom )
mnCurrentZoom = mnMaxZoom;
if( nOldZoom == mnCurrentZoom )
return true;
tools::Rectangle aRect( Point( 0, 0 ), aSliderWindowSize );
Invalidate(aRect);
mbOmitPaint = true;
SvxZoomSliderItem aZoomSliderItem( mnCurrentZoom );
css::uno::Any a;
aZoomSliderItem.QueryValue( a );
css::uno::Sequence aArgs{ comphelper::makePropertyValue("ScalingFactor", a) };
SfxToolBoxControl::Dispatch( m_xDispatchProvider, ".uno:ScalingFactor", aArgs );
mbOmitPaint = false;
return true;
}
bool ScZoomSlider::MouseMove( const MouseEvent& rMEvt )
{
Size aSliderWindowSize = GetOutputSizePixel();
const tools::Long nControlWidth = aSliderWindowSize.Width();
const short nButtons = rMEvt.GetButtons();
// check mouse move with button pressed
if ( 1 == nButtons )
{
const Point aPoint = rMEvt.GetPosPixel();
if ( aPoint.X() >= nSliderXOffset && aPoint.X() <= nControlWidth - nSliderXOffset )
{
mnCurrentZoom = Offset2Zoom( aPoint.X() );
tools::Rectangle aRect(Point(0, 0), aSliderWindowSize);
Invalidate(aRect);
mbOmitPaint = true; // optimization: paint before executing command,
// commit state change
SvxZoomSliderItem aZoomSliderItem( mnCurrentZoom );
css::uno::Any a;
aZoomSliderItem.QueryValue( a );
css::uno::Sequence aArgs{ comphelper::makePropertyValue("ScalingFactor", a) };
SfxToolBoxControl::Dispatch( m_xDispatchProvider, ".uno:ScalingFactor", aArgs );
mbOmitPaint = false;
}
}
return false;
}
void ScZoomSliderWnd::UpdateFromItem( const SvxZoomSliderItem* pZoomSliderItem )
{
mxWidget->UpdateFromItem(pZoomSliderItem);
}
void ScZoomSlider::UpdateFromItem(const SvxZoomSliderItem* pZoomSliderItem)
{
if( pZoomSliderItem )
{
mnCurrentZoom = pZoomSliderItem->GetValue();
mnMinZoom = pZoomSliderItem->GetMinZoom();
mnMaxZoom = pZoomSliderItem->GetMaxZoom();
OSL_ENSURE( mnMinZoom <= mnCurrentZoom &&
mnMinZoom < gnSliderCenter &&
mnMaxZoom >= mnCurrentZoom &&
mnMaxZoom > gnSliderCenter,
"Looks like the zoom slider item is corrupted" );
const css::uno::Sequence < sal_Int32 >& rSnappingPoints = pZoomSliderItem->GetSnappingPoints();
maSnappingPointOffsets.clear();
maSnappingPointZooms.clear();
// get all snapping points:
std::set< sal_uInt16 > aTmpSnappingPoints;
std::transform(rSnappingPoints.begin(), rSnappingPoints.end(), std::inserter(aTmpSnappingPoints, aTmpSnappingPoints.end()),
[](const sal_Int32 nSnappingPoint) -> sal_uInt16 { return static_cast<sal_uInt16>(nSnappingPoint); });
// remove snapping points that are too close to each other:
tools::Long nLastOffset = 0;
for ( const sal_uInt16 nCurrent : aTmpSnappingPoints )
{
const tools::Long nCurrentOffset = Zoom2Offset( nCurrent );
if ( nCurrentOffset - nLastOffset >= nSnappingPointsMinDist )
{
maSnappingPointOffsets.push_back( nCurrentOffset );
maSnappingPointZooms.push_back( nCurrent );
nLastOffset = nCurrentOffset;
}
}
}
Size aSliderWindowSize = GetOutputSizePixel();
tools::Rectangle aRect(Point(0, 0), aSliderWindowSize);
if ( !mbOmitPaint )
Invalidate(aRect);
}
void ScZoomSlider::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& /*rRect*/)
{
DoPaint(rRenderContext);
}
void ScZoomSlider::DoPaint(vcl::RenderContext& rRenderContext)
{
if (mbOmitPaint)
return;
Size aSliderWindowSize(GetOutputSizePixel());
tools::Rectangle aRect(Point(0, 0), aSliderWindowSize);
ScopedVclPtrInstance< VirtualDevice > pVDev(rRenderContext);
pVDev->SetOutputSizePixel(aSliderWindowSize);
tools::Rectangle aSlider = aRect;
aSlider.AdjustTop((aSliderWindowSize.Height() - nSliderHeight) / 2 - 1 );
aSlider.SetBottom( aSlider.Top() + nSliderHeight );
aSlider.AdjustLeft(nSliderXOffset );
aSlider.AdjustRight( -nSliderXOffset );
tools::Rectangle aFirstLine(aSlider);
aFirstLine.SetBottom( aFirstLine.Top() );
tools::Rectangle aSecondLine(aSlider);
aSecondLine.SetTop( aSecondLine.Bottom() );
tools::Rectangle aLeft(aSlider);
aLeft.SetRight( aLeft.Left() );
tools::Rectangle aRight(aSlider);
aRight.SetLeft( aRight.Right() );
// draw VirtualDevice's background color
Color aStartColor = rRenderContext.GetSettings().GetStyleSettings().GetFaceColor();
Color aEndColor = rRenderContext.GetSettings().GetStyleSettings().GetFaceColor();
if (aEndColor.IsDark())
aStartColor = aEndColor;
Gradient aGradient;
aGradient.SetAngle(0_deg10);
aGradient.SetStyle(css::awt::GradientStyle_LINEAR);
aGradient.SetStartColor(aStartColor);
aGradient.SetEndColor(aEndColor);
pVDev->DrawGradient(aRect, aGradient);
// draw slider
pVDev->SetLineColor(COL_WHITE);
pVDev->DrawRect(aSecondLine);
pVDev->DrawRect(aRight);
pVDev->SetLineColor(COL_GRAY);
pVDev->DrawRect(aFirstLine);
pVDev->DrawRect(aLeft);
// draw snapping points:
for (const auto& rSnappingPointOffset : maSnappingPointOffsets)
{
pVDev->SetLineColor(COL_GRAY);
tools::Rectangle aSnapping(aRect);
aSnapping.SetBottom( aSlider.Top() );
aSnapping.SetTop( aSnapping.Bottom() - nSnappingHeight );
aSnapping.AdjustLeft(rSnappingPointOffset );
aSnapping.SetRight( aSnapping.Left() );
pVDev->DrawRect(aSnapping);
aSnapping.AdjustTop(nSnappingHeight + nSliderHeight );
aSnapping.AdjustBottom(nSnappingHeight + nSliderHeight );
pVDev->DrawRect(aSnapping);
}
// draw slider button
Point aImagePoint = aRect.TopLeft();
aImagePoint.AdjustX(Zoom2Offset(mnCurrentZoom) );
aImagePoint.AdjustX( -(nButtonWidth / 2) );
aImagePoint.AdjustY( (aSliderWindowSize.Height() - nButtonHeight) / 2 );
pVDev->DrawImage(aImagePoint, maSliderButton);
// draw decrease button
aImagePoint = aRect.TopLeft();
aImagePoint.AdjustX((nSliderXOffset - nIncDecWidth) / 2 );
aImagePoint.AdjustY((aSliderWindowSize.Height() - nIncDecHeight) / 2 );
pVDev->DrawImage(aImagePoint, maDecreaseButton);
// draw increase button
aImagePoint.setX( aRect.Left() + aSliderWindowSize.Width() - nIncDecWidth - (nSliderXOffset - nIncDecWidth) / 2 );
pVDev->DrawImage(aImagePoint, maIncreaseButton);
rRenderContext.DrawOutDev(Point(0, 0), aSliderWindowSize, Point(0, 0), aSliderWindowSize, *pVDev);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|