54f7308641
Set accessible names for the items in the "Borders" control in the Calc Sidebar, "Properties" deck, section "Cell Appearance". Use the same text as is used for the tooltip. With this in place, Orca now announces what each item is about when using the gtk3 VCL plugin, instead of just saying "Button". Move the gla11y suppressions to the .false file, as they have been dealt with now, see doc at [1]. [1] https://wiki.documentfoundation.org/Development/Accessibility Change-Id: Id1856e4b116acad9bf6d14132bc6d9c91a01ae06 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169321 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
317 lines
14 KiB
C++
317 lines
14 KiB
C++
/* -*- 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 "CellBorderStyleControl.hxx"
|
|
#include <editeng/boxitem.hxx>
|
|
#include <editeng/borderline.hxx>
|
|
#include <sfx2/bindings.hxx>
|
|
#include <sfx2/dispatch.hxx>
|
|
#include <svx/dialmgr.hxx>
|
|
#include <svx/strings.hrc>
|
|
#include <svx/svxids.hrc>
|
|
#include <vcl/settings.hxx>
|
|
#include <editeng/lineitem.hxx>
|
|
#include <svl/itemset.hxx>
|
|
#include <memory>
|
|
|
|
namespace sc::sidebar {
|
|
|
|
#define FRM_VALID_LEFT 0x01
|
|
#define FRM_VALID_RIGHT 0x02
|
|
#define FRM_VALID_TOP 0x04
|
|
#define FRM_VALID_BOTTOM 0x08
|
|
#define FRM_VALID_HINNER 0x10
|
|
#define FRM_VALID_VINNER 0x20
|
|
#define FRM_VALID_OUTER 0x0f
|
|
#define FRM_VALID_ALL 0xff
|
|
|
|
CellBorderStylePopup::CellBorderStylePopup(weld::Toolbar* pParent, const OUString& rId, SfxDispatcher* pDispatcher)
|
|
: WeldToolbarPopup(nullptr, pParent, u"modules/scalc/ui/floatingborderstyle.ui"_ustr, u"FloatingBorderStyle"_ustr)
|
|
, maToolButton(pParent, rId)
|
|
, mpDispatcher(pDispatcher)
|
|
, mxTBBorder1(m_xBuilder->weld_toolbar(u"border1"_ustr))
|
|
, mxTBBorder2(m_xBuilder->weld_toolbar(u"border2"_ustr))
|
|
, mxTBBorder3(m_xBuilder->weld_toolbar(u"border3"_ustr))
|
|
, mxTBBorder4(m_xBuilder->weld_toolbar(u"border4"_ustr))
|
|
{
|
|
Initialize();
|
|
}
|
|
|
|
void CellBorderStylePopup::GrabFocus()
|
|
{
|
|
mxTBBorder1->grab_focus();
|
|
}
|
|
|
|
CellBorderStylePopup::~CellBorderStylePopup()
|
|
{
|
|
}
|
|
|
|
void CellBorderStylePopup::Initialize()
|
|
{
|
|
mxTBBorder1->connect_clicked ( LINK(this, CellBorderStylePopup, TB1SelectHdl) );
|
|
mxTBBorder1->set_item_tooltip_text(0, SvxResId(RID_SVXSTR_TABLE_PRESET_NONE));
|
|
mxTBBorder1->set_item_accessible_name(0, SvxResId(RID_SVXSTR_TABLE_PRESET_NONE));
|
|
mxTBBorder1->set_item_tooltip_text(1, SvxResId(RID_SVXSTR_TABLE_PRESET_OUTERALL));
|
|
mxTBBorder1->set_item_accessible_name(1, SvxResId(RID_SVXSTR_TABLE_PRESET_OUTERALL));
|
|
mxTBBorder1->set_item_tooltip_text(2, SvxResId(RID_SVXSTR_TABLE_PRESET_OUTER));
|
|
mxTBBorder1->set_item_accessible_name(2, SvxResId(RID_SVXSTR_TABLE_PRESET_OUTER));
|
|
mxTBBorder1->set_item_tooltip_text(3, SvxResId(RID_SVXSTR_TABLE_PRESET_THICK));
|
|
mxTBBorder1->set_item_accessible_name(3, SvxResId(RID_SVXSTR_TABLE_PRESET_THICK));
|
|
|
|
mxTBBorder2->connect_clicked ( LINK(this, CellBorderStylePopup, TB2and3SelectHdl) );
|
|
mxTBBorder2->set_item_tooltip_text(0, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYLEFT));
|
|
mxTBBorder2->set_item_accessible_name(0, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYLEFT));
|
|
mxTBBorder2->set_item_tooltip_text(1, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYRIGHT));
|
|
mxTBBorder2->set_item_accessible_name(1, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYRIGHT));
|
|
mxTBBorder2->set_item_tooltip_text(2, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYTOP));
|
|
mxTBBorder2->set_item_accessible_name(2, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYTOP));
|
|
mxTBBorder2->set_item_tooltip_text(3, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYBOTTOM));
|
|
mxTBBorder2->set_item_accessible_name(3, SvxResId(RID_SVXSTR_PARA_PRESET_ONLYBOTTOM));
|
|
|
|
mxTBBorder3->connect_clicked ( LINK(this, CellBorderStylePopup, TB2and3SelectHdl) );
|
|
mxTBBorder3->set_item_tooltip_text(0, SvxResId(RID_SVXSTR_PARA_PRESET_DIAGONALUP));
|
|
mxTBBorder3->set_item_accessible_name(0, SvxResId(RID_SVXSTR_PARA_PRESET_DIAGONALUP));
|
|
mxTBBorder3->set_item_tooltip_text(1, SvxResId(RID_SVXSTR_PARA_PRESET_DIAGONALDOWN));
|
|
mxTBBorder3->set_item_accessible_name(1, SvxResId(RID_SVXSTR_PARA_PRESET_DIAGONALDOWN));
|
|
mxTBBorder3->set_item_tooltip_text(2, SvxResId(RID_SVXSTR_PARA_PRESET_TOPBOTTOM));
|
|
mxTBBorder3->set_item_accessible_name(2, SvxResId(RID_SVXSTR_PARA_PRESET_TOPBOTTOM));
|
|
mxTBBorder3->set_item_tooltip_text(3, SvxResId(RID_SVXSTR_PARA_PRESET_LEFTRIGHT));
|
|
mxTBBorder3->set_item_accessible_name(3, SvxResId(RID_SVXSTR_PARA_PRESET_LEFTRIGHT));
|
|
|
|
mxTBBorder4->connect_clicked ( LINK(this, CellBorderStylePopup, TB4SelectHdl) );
|
|
mxTBBorder4->set_item_tooltip_text(0, SvxResId(RID_SVXSTR_TABLE_PRESET_THICKBOTTOM));
|
|
mxTBBorder4->set_item_accessible_name(0, SvxResId(RID_SVXSTR_TABLE_PRESET_THICKBOTTOM));
|
|
mxTBBorder4->set_item_tooltip_text(1, SvxResId(RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM));
|
|
mxTBBorder4->set_item_accessible_name(1, SvxResId(RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM));
|
|
mxTBBorder4->set_item_tooltip_text(2, SvxResId(RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM));
|
|
mxTBBorder4->set_item_accessible_name(2, SvxResId(RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM));
|
|
mxTBBorder4->set_item_tooltip_text(3, SvxResId(RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM));
|
|
mxTBBorder4->set_item_accessible_name(3, SvxResId(RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM));
|
|
}
|
|
|
|
IMPL_LINK(CellBorderStylePopup, TB1SelectHdl, const OUString&, rId, void)
|
|
{
|
|
SvxBoxItem aBorderOuter( SID_ATTR_BORDER_OUTER );
|
|
SvxBoxInfoItem aBorderInner( SID_ATTR_BORDER_INNER );
|
|
editeng::SvxBorderLine theDefLine(nullptr, SvxBorderLineWidth::Thin);
|
|
editeng::SvxBorderLine *pLeft = nullptr, *pRight = nullptr, *pTop = nullptr, *pBottom = nullptr;
|
|
sal_uInt8 nValidFlags = 0;
|
|
|
|
if (rId == "none")
|
|
{
|
|
nValidFlags |= FRM_VALID_ALL;
|
|
SvxLineItem aLineItem1( SID_ATTR_BORDER_DIAG_BLTR );
|
|
SvxLineItem aLineItem2( SID_ATTR_BORDER_DIAG_TLBR );
|
|
aLineItem1.SetLine( nullptr ); //modify
|
|
aLineItem2.SetLine( nullptr ); //modify
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER_DIAG_BLTR, SfxCallMode::RECORD, { &aLineItem1 });
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER_DIAG_TLBR, SfxCallMode::RECORD, { &aLineItem2 });
|
|
}
|
|
else if (rId == "all")
|
|
{
|
|
pLeft = pRight = pTop = pBottom = &theDefLine;
|
|
aBorderInner.SetLine( &theDefLine, SvxBoxInfoItemLine::HORI );
|
|
aBorderInner.SetLine( &theDefLine, SvxBoxInfoItemLine::VERT );
|
|
nValidFlags |= FRM_VALID_ALL;
|
|
}
|
|
else if (rId == "outside")
|
|
{
|
|
pLeft = pRight = pTop = pBottom = &theDefLine;
|
|
nValidFlags |= FRM_VALID_OUTER;
|
|
}
|
|
else if (rId == "thickbox")
|
|
{
|
|
theDefLine.SetWidth(SvxBorderLineWidth::Thick);
|
|
pLeft = pRight = pTop = pBottom = &theDefLine;
|
|
nValidFlags |= FRM_VALID_OUTER;
|
|
}
|
|
|
|
aBorderOuter.SetLine( pLeft, SvxBoxItemLine::LEFT );
|
|
aBorderOuter.SetLine( pRight, SvxBoxItemLine::RIGHT );
|
|
aBorderOuter.SetLine( pTop, SvxBoxItemLine::TOP );
|
|
aBorderOuter.SetLine( pBottom, SvxBoxItemLine::BOTTOM );
|
|
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::TOP, 0 != (nValidFlags&FRM_VALID_TOP ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::BOTTOM, 0 != (nValidFlags&FRM_VALID_BOTTOM ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::LEFT, 0 != (nValidFlags&FRM_VALID_LEFT));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::RIGHT, 0 != (nValidFlags&FRM_VALID_RIGHT ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::HORI, 0 != (nValidFlags&FRM_VALID_HINNER ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::VERT, 0 != (nValidFlags&FRM_VALID_VINNER));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::DISTANCE );
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::DISABLE, false );
|
|
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER, SfxCallMode::RECORD, { &aBorderOuter, &aBorderInner });
|
|
|
|
maToolButton.set_inactive();
|
|
}
|
|
|
|
IMPL_LINK(CellBorderStylePopup, TB2and3SelectHdl, const OUString&, rId, void)
|
|
{
|
|
if (rId == "diagup")
|
|
{
|
|
editeng::SvxBorderLine aTmp( nullptr, SvxBorderLineWidth::Thin );
|
|
SvxLineItem aLineItem( SID_ATTR_BORDER_DIAG_BLTR );
|
|
aLineItem.SetLine( &aTmp );
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER_DIAG_BLTR, SfxCallMode::RECORD, { &aLineItem });
|
|
}
|
|
else if (rId == "diagdown")
|
|
{
|
|
editeng::SvxBorderLine aTmp( nullptr, SvxBorderLineWidth::Thin );
|
|
SvxLineItem aLineItem( SID_ATTR_BORDER_DIAG_TLBR );
|
|
aLineItem.SetLine( &aTmp );
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER_DIAG_TLBR, SfxCallMode::RECORD, { &aLineItem });
|
|
}
|
|
else
|
|
{
|
|
SvxBoxItem aBorderOuter( SID_ATTR_BORDER_OUTER );
|
|
SvxBoxInfoItem aBorderInner( SID_ATTR_BORDER_INNER );
|
|
editeng::SvxBorderLine theDefLine(nullptr, SvxBorderLineWidth::Thin);
|
|
editeng::SvxBorderLine *pLeft = nullptr,
|
|
*pRight = nullptr,
|
|
*pTop = nullptr,
|
|
*pBottom = nullptr;
|
|
sal_uInt8 nValidFlags = 0;
|
|
if (rId == "left")
|
|
{
|
|
pLeft = &theDefLine;
|
|
nValidFlags |= FRM_VALID_LEFT;
|
|
}
|
|
else if (rId == "right")
|
|
{
|
|
if(!AllSettings::GetLayoutRTL())
|
|
{
|
|
pRight = &theDefLine;
|
|
nValidFlags |= FRM_VALID_RIGHT;
|
|
}
|
|
else
|
|
{
|
|
pLeft = &theDefLine;
|
|
nValidFlags |= FRM_VALID_LEFT;
|
|
}
|
|
}
|
|
else if (rId == "top")
|
|
{
|
|
pTop = &theDefLine;
|
|
nValidFlags |= FRM_VALID_TOP;
|
|
}
|
|
else if (rId == "bottom")
|
|
{
|
|
pBottom = &theDefLine;
|
|
nValidFlags |= FRM_VALID_BOTTOM;
|
|
}
|
|
else if (rId == "topbottom")
|
|
{
|
|
pTop = pBottom = &theDefLine;
|
|
nValidFlags |= FRM_VALID_BOTTOM|FRM_VALID_TOP;
|
|
}
|
|
else if (rId == "leftright")
|
|
{
|
|
pLeft = pRight = &theDefLine;
|
|
nValidFlags |= FRM_VALID_RIGHT|FRM_VALID_LEFT;
|
|
}
|
|
aBorderOuter.SetLine( pLeft, SvxBoxItemLine::LEFT );
|
|
aBorderOuter.SetLine( pRight, SvxBoxItemLine::RIGHT );
|
|
aBorderOuter.SetLine( pTop, SvxBoxItemLine::TOP );
|
|
aBorderOuter.SetLine( pBottom, SvxBoxItemLine::BOTTOM );
|
|
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::TOP, 0 != (nValidFlags&FRM_VALID_TOP ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::BOTTOM, 0 != (nValidFlags&FRM_VALID_BOTTOM ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::LEFT, 0 != (nValidFlags&FRM_VALID_LEFT));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::RIGHT, 0 != (nValidFlags&FRM_VALID_RIGHT ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::HORI, 0 != (nValidFlags&FRM_VALID_HINNER ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::VERT, 0 != (nValidFlags&FRM_VALID_VINNER));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::DISTANCE );
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::DISABLE, false );
|
|
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER, SfxCallMode::RECORD, { &aBorderOuter, &aBorderInner});
|
|
}
|
|
|
|
maToolButton.set_inactive();
|
|
}
|
|
|
|
IMPL_LINK(CellBorderStylePopup, TB4SelectHdl, const OUString&, rId, void)
|
|
{
|
|
SvxBoxItem aBorderOuter( SID_ATTR_BORDER_OUTER );
|
|
SvxBoxInfoItem aBorderInner( SID_ATTR_BORDER_INNER );
|
|
std::unique_ptr<editeng::SvxBorderLine> pTop;
|
|
std::unique_ptr<editeng::SvxBorderLine> pBottom;
|
|
sal_uInt8 nValidFlags = 0;
|
|
using namespace ::com::sun::star::table::BorderLineStyle;
|
|
|
|
//FIXME: properly adapt to new line border model
|
|
|
|
if (rId == "thickbottom")
|
|
{
|
|
pBottom.reset(new editeng::SvxBorderLine(nullptr, SvxBorderLineWidth::Thick));
|
|
nValidFlags |= FRM_VALID_BOTTOM;
|
|
}
|
|
else if (rId == "doublebottom")
|
|
{
|
|
pBottom.reset(new editeng::SvxBorderLine(nullptr));
|
|
pBottom->GuessLinesWidths(SvxBorderLineStyle::DOUBLE, SvxBorderLineWidth::Hairline,
|
|
SvxBorderLineWidth::Hairline, SvxBorderLineWidth::Thin);
|
|
nValidFlags |= FRM_VALID_BOTTOM;
|
|
}
|
|
else if (rId == "topthickbottom")
|
|
{
|
|
pBottom.reset(new editeng::SvxBorderLine(nullptr, SvxBorderLineWidth::Thick));
|
|
pTop.reset(new editeng::SvxBorderLine(nullptr, SvxBorderLineWidth::Thin));
|
|
nValidFlags |= FRM_VALID_BOTTOM|FRM_VALID_TOP;
|
|
}
|
|
else if (rId == "topdoublebottom")
|
|
{
|
|
pBottom.reset(new editeng::SvxBorderLine(nullptr));
|
|
pBottom->GuessLinesWidths(SvxBorderLineStyle::DOUBLE, SvxBorderLineWidth::Hairline,
|
|
SvxBorderLineWidth::Hairline, SvxBorderLineWidth::Thin);
|
|
pTop.reset(new editeng::SvxBorderLine(nullptr, SvxBorderLineWidth::Thin));
|
|
nValidFlags |= FRM_VALID_BOTTOM|FRM_VALID_TOP;
|
|
}
|
|
|
|
aBorderOuter.SetLine( pTop.get(), SvxBoxItemLine::TOP );
|
|
aBorderOuter.SetLine( pBottom.get(), SvxBoxItemLine::BOTTOM );
|
|
aBorderOuter.SetLine( nullptr, SvxBoxItemLine::LEFT );
|
|
aBorderOuter.SetLine( nullptr, SvxBoxItemLine::RIGHT );
|
|
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::TOP, 0 != (nValidFlags&FRM_VALID_TOP ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::BOTTOM, 0 != (nValidFlags&FRM_VALID_BOTTOM ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::LEFT, 0 != (nValidFlags&FRM_VALID_LEFT ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::RIGHT, 0 != (nValidFlags&FRM_VALID_RIGHT ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::HORI, 0 != (nValidFlags&FRM_VALID_HINNER ));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::VERT, 0 != (nValidFlags&FRM_VALID_VINNER));
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::DISTANCE );
|
|
aBorderInner.SetValid( SvxBoxInfoItemValidFlags::DISABLE, false );
|
|
|
|
mpDispatcher->ExecuteList(
|
|
SID_ATTR_BORDER, SfxCallMode::RECORD, { &aBorderOuter, &aBorderInner });
|
|
|
|
pTop.reset();
|
|
pBottom.reset();
|
|
|
|
maToolButton.set_inactive();
|
|
}
|
|
|
|
} // end of namespace sc::sidebar
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|