48 lines
2.0 KiB
XML
Executable File
48 lines
2.0 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
Ribbon.xml
|
|
part of zaaReloaded2
|
|
|
|
Copyright 2015 Daniel Kraus
|
|
|
|
Licensed 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
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
|
|
onLoad="Ribbon_Load" loadImage="Ribbon_LoadImage">
|
|
<ribbon>
|
|
<tabs>
|
|
<tab id="zaaReloaded2" label="zaaReloaded2">
|
|
<group id="zrlFormatGroup" label="Formatieren">
|
|
<button id="zrlFormat" label="Formatieren" image="f.png" onAction="Ribbon_Click" size="large"
|
|
supertip="Formatiert den ausgewählten Bereich mit dem zuletzt verwendeten Stil."
|
|
getEnabled="CanFormat" />
|
|
<button id="zrlSettings" label="Stilauswahl" image="fff.png" onAction="Ribbon_Click" size="large"
|
|
supertip="Zeigt eine Liste vorhandener Stile an. Stile können bearbeitet, hinzugefügt, gelöscht werden." />
|
|
<button id="zrlDaniel" label="Daniels Spezial" image="dk.png" onAction="Ribbon_Click" size="large"
|
|
getVisible="Daniel_GetVisible"/>
|
|
</group>
|
|
<group id="zrlInfoGroup" label="Info">
|
|
<button id="zrlDemo" label="Demo" image="d.png" onAction="Ribbon_Click" size="large"
|
|
screentip="Demo-Dokument öffnen"
|
|
supertip="Öffnet ein eingebautes Demo-Dokument, das zum Ausprobieren verwendet werden kann." />
|
|
<button id="zrlAbout" label="Über..." image="i.png" onAction="Ribbon_Click" size="large"
|
|
screentip="Über zaaReloaded"
|
|
supertip="Zeigt Informationen über das Add-in an." />
|
|
</group>
|
|
</tab>
|
|
</tabs>
|
|
</ribbon>
|
|
</customUI>
|
|
|