summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-06-04 21:15:59 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-06-05 15:37:18 +0200
commita3d2d01f55260ad422e07d4f326fc01f0414bd1d (patch)
treebb17546d3a580b27193a7ea06aeeef79aaad84f9 /vcl
parentff169611987501baa12a4614656e2049fd133d02 (diff)
gtk4: ToggleButtons can have images too
Change-Id: I1319ed84daa5d0d7d6a49887ad3ccc5b4c2fc3bb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116736 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk3/gtkinst.cxx1
-rw-r--r--vcl/unx/gtk4/convert3to4.cxx9
2 files changed, 7 insertions, 3 deletions
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 576a46c3b3a2..af796bc96e68 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -22048,6 +22048,7 @@ weld::Builder* GtkInstance::CreateBuilder(weld::Widget* pParent, const OUString&
rUIFile != "sfx/ui/printeroptionsdialog.ui" &&
rUIFile != "sfx/ui/securityinfopage.ui" &&
rUIFile != "sfx/ui/singletabdialog.ui" &&
+ rUIFile != "sfx/ui/templatedlg.ui" &&
rUIFile != "svt/ui/addresstemplatedialog.ui" &&
rUIFile != "svt/ui/datewindow.ui" &&
rUIFile != "svt/ui/javadisableddialog.ui" &&
diff --git a/vcl/unx/gtk4/convert3to4.cxx b/vcl/unx/gtk4/convert3to4.cxx
index 2d009791d60e..6bb7e30918e9 100644
--- a/vcl/unx/gtk4/convert3to4.cxx
+++ b/vcl/unx/gtk4/convert3to4.cxx
@@ -475,7 +475,8 @@ ConvertResult Convert3To4(const css::uno::Reference<css::xml::dom::XNode>& xNode
if (sName == "always-show-image")
{
- if (GetParentObjectType(xChild) == "GtkButton")
+ if (GetParentObjectType(xChild) == "GtkButton"
+ || GetParentObjectType(xChild) == "GtkToggleButton")
{
// we will turn always-show-image into a GtkBox child for
// GtkButton and a GtkLabel child for the GtkBox and move
@@ -487,7 +488,8 @@ ConvertResult Convert3To4(const css::uno::Reference<css::xml::dom::XNode>& xNode
if (sName == "relief")
{
- if (GetParentObjectType(xChild) == "GtkLinkButton"
+ if (GetParentObjectType(xChild) == "GtkToggleButton"
+ || GetParentObjectType(xChild) == "GtkLinkButton"
|| GetParentObjectType(xChild) == "GtkButton")
{
assert(xChild->getFirstChild()->getNodeValue() == "none");
@@ -556,7 +558,8 @@ ConvertResult Convert3To4(const css::uno::Reference<css::xml::dom::XNode>& xNode
if (sName == "image")
{
- if (GetParentObjectType(xChild) == "GtkButton")
+ if (GetParentObjectType(xChild) == "GtkButton"
+ || GetParentObjectType(xChild) == "GtkToggleButton")
{
// find the image object, expected to be a child of "interface" and relocate
// it to be a child of this GtkButton