diff options
Diffstat (limited to 'extras/source/glade')
-rw-r--r-- | extras/source/glade/libreoffice-catalog.xml.in | 56 | ||||
-rw-r--r-- | extras/source/glade/makewidgetgroup.xslt | 50 |
2 files changed, 106 insertions, 0 deletions
diff --git a/extras/source/glade/libreoffice-catalog.xml.in b/extras/source/glade/libreoffice-catalog.xml.in new file mode 100644 index 0000000000..e7453f2486 --- /dev/null +++ b/extras/source/glade/libreoffice-catalog.xml.in @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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/. + * +--> +<!-- + * To get glade to use this, put this .xml into a dir e.g. ~/glade + * and + * export GLADE_CATALOG_SEARCH_PATH=~/glade + * for system-wide installation copy into /usr/share/glade/catalogs/ +--> +<glade-catalog name="LibreOffice" domain="glade-3" depends="gtk+" version="1.0"> + <glade-widget-classes> + + <glade-widget-class title="Notebookbar ToolBox" name="sfxlo-NotebookbarToolBox" + generic-name="Notebookbar ToolBox" parent="GtkToolbar" + icon-name="widget-gtk-toolbar"> + <properties> + <!-- Must override the default value of "icon-size", so "Large Toolbar" will be saved into .ui --> + <property id="icon-size" optional-default="False" optional="True" default="GTK_ICON_SIZE_BUTTON"/> + </properties> + </glade-widget-class> + + <glade-widget-class title="Notebook switching tabs depending on context" name="sfxlo-NotebookbarTabControl" + generic-name="NotebookbarTabControl" parent="GtkNotebook" + icon-name="widget-gtk-notebook"/> + <glade-widget-class title="Horizontal box hiding children depending on its priorities" name="sfxlo-PriorityHBox" + generic-name="PriorityHBox" parent="GtkBox" + icon-name="widget-gtk-box"/> + <glade-widget-class title="Horizontal box hiding children depending on its priorities" name="sfxlo-PriorityMergedHBox" + generic-name="PriorityMergedHBox" parent="GtkBox" + icon-name="widget-gtk-box"/> + <glade-widget-class title="Box which can move own content to the popup" name="sfxlo-DropdownBox" + generic-name="DropdownBox" parent="GtkBox" + icon-name="widget-gtk-box"/> + <glade-widget-class title="Box which can hide own content" name="VclOptionalBox" + generic-name="VclOptionalBox" parent="GtkBox" + icon-name="widget-gtk-box"/> + <glade-widget-class title="Vertical box hiding children depending on context" name="sfxlo-ContextVBox" + generic-name="ContextVBox" parent="GtkBox" + icon-name="widget-gtk-box"/> + <glade-widget-class title="Managed Menu Button" name="svtlo-ManagedMenuButton" + generic-name="ManagedMenuButton" parent="GtkButton" + icon-name="widget-gtk-button"/> + <glade-widget-class title="NotebookBar Toolbar Addons" name="NotebookBarAddonsToolMergePoint" + generic-name="ShowText" parent="GtkToolButton" + icon-name="widget-gtk-toolbutton"/> + <glade-widget-class title="NotebookBar MenuItem Addons" name="NotebookBarAddonsMenuMergePoint" + generic-name="ShowText" parent="GtkMenuItem" + icon-name="widget-gtk-menuitem"/> + </glade-widget-classes> +</glade-catalog> diff --git a/extras/source/glade/makewidgetgroup.xslt b/extras/source/glade/makewidgetgroup.xslt new file mode 100644 index 0000000000..db2dcedc52 --- /dev/null +++ b/extras/source/glade/makewidgetgroup.xslt @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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 . +--> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + <xsl:output method="xml" version="1.0" encoding="UTF-8"/> + + <!-- work around apparently broken output indenting in libxslt --> + <xsl:param name="indent" select="' '"/> + + <xsl:template match="/glade-catalog"> + <xsl:copy> + <xsl:apply-templates select="@*|node()"/> + + <xsl:text> </xsl:text> + <xsl:value-of select="$indent"/> + <glade-widget-group name="libreoffice" title="LibreOffice"> + <xsl:text> </xsl:text> + + <xsl:for-each select="//glade-widget-class"> + <xsl:value-of select="concat($indent,$indent)"/> + <glade-widget-class-ref name="{@name}"/> + <xsl:text> </xsl:text> + </xsl:for-each> + + <xsl:value-of select="$indent"/> + </glade-widget-group> + <xsl:text> </xsl:text> + </xsl:copy> + </xsl:template> + + <xsl:template match="@*|node()"> + <xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy> + </xsl:template> + +</xsl:stylesheet> |