diff options
Diffstat (limited to 'quanta/data/toolbars/xml')
-rw-r--r-- | quanta/data/toolbars/xml/fonts.actions | 83 | ||||
-rw-r--r-- | quanta/data/toolbars/xml/fonts.toolbar | 21 |
2 files changed, 104 insertions, 0 deletions
diff --git a/quanta/data/toolbars/xml/fonts.actions b/quanta/data/toolbars/xml/fonts.actions new file mode 100644 index 00000000..9e805d6c --- /dev/null +++ b/quanta/data/toolbars/xml/fonts.actions @@ -0,0 +1,83 @@ +<!DOCTYPE actionsconfig> +<actions> + <action icon="tag_font" type="tag" name="tag_font" text="Font..." > + <tag useDialog="true" ><font></tag> + <xtag use="true" ></font></xtag> + <tooltip>The <b>FONT</b> element allows authors to suggest rudimentary <i>font changes</i>. + </tooltip> + </action> + <action icon="font_inc" type="tag" name="tag_font_inc" text="Font Size+1" > + <standard>Quick start</standard> + <tag useDialog="false" ><font size="+1"></tag> + <xtag use="true" ></font></xtag> + <tooltip>This <b>SIZE=+1</b> element allows to <i>increase</i> font. + </tooltip> + </action> + <action icon="font_dec" type="tag" name="tag_font_dec" text="Font Size-1" > + <tag useDialog="false" ><font size="-1"></tag> + <xtag use="true" ></font></xtag> + <tooltip>This <b>SIZE=-1</b> element allows to <i>decrease</i> font. + </tooltip> + </action> + <action icon="tag_pre" type="tag" name="tag_pre" text="Pre" > + <tag useDialog="false" ><pre></tag> + <xtag use="true" inLine="false" ></pre></xtag> + <tooltip>The <b>PRE</b> element allows to view <i>preformatted</i> text. + </tooltip> + </action> + <action icon="tag_sub" type="tag" name="tag_sub" text="Subscript" > + <tag useDialog="false" ><sub></tag> + <xtag use="true" ></sub></xtag> + <tooltip>The <b>SUB</b> element is used for <i>subscripts</i>. + <br>- common attributes + </tooltip> + </action> + <action icon="tag_sup" type="tag" name="tag_sup" text="Superscript" > + <tag useDialog="false" ><sup></tag> + <xtag use="true" ></sup></xtag> + <tooltip>The <b>SUP</b> element is used for <i>superscripts</i>. + <br>- common attributes + </tooltip> + </action> + <action icon="tag_h1" type="tag" name="tag_h1" text="Head 1 Level" > + <tag useDialog="false" ><h1></tag> + <xtag use="true" ></h1></xtag> + <tooltip>The <b>H1</b> element defines a <i>level-one heading</i>. + <br>- ALIGN=[ left | center | right | justify ] (horizontal alignment) + <br>- common attributes + </tooltip> + </action> + <action icon="tag_h2" type="tag" name="tag_h2" text="Head 2 Level" > + <tag useDialog="false" ><h2></tag> + <xtag use="true" ></h2></xtag> + <tooltip>The <b>H2</b> element defines a <i>level-two heading</i>. + <br>- ALIGN=[ left | center | right | justify ] (horizontal alignment) + <br>- common attributes + </tooltip> + </action> + <action icon="tag_h3" type="tag" name="tag_h3" text="Head 3 Level" > + <tag useDialog="false" ><h3></tag> + <xtag use="true" ></h3></xtag> + <tooltip>The <b>H3</b> element defines a <i>level-three heading</i>. + <br>- ALIGN=[ left | center | right | justify ] (horizontal alignment) + <br>- common attributes + </tooltip> + </action> + <action icon="tag_h4" type="tag" name="tag_h4" text="Head 4 Level" > + <tag useDialog="false" ><h4></tag> + <xtag use="true" ></h4></xtag> + <tooltip>The <b>H4</b> element defines a <i>level-four heading</i>. + <br>- ALIGN=[ left | center | right | justify ] (horizontal alignment) + <br>- common attributes + </tooltip> + </action> + <action icon="tag_h5" type="tag" name="tag_h5" text="Head 5 Level" > + <tag useDialog="false" ><h5></tag> + <xtag use="true" ></h5></xtag> + <tooltip>The <b>H5</b> element defines a <i>level-five heading</i>. + <br>- ALIGN=[ left | center | right | justify ] (horizontal alignment) + <br>- common attributes + </tooltip> + </action> + +</actions>
\ No newline at end of file diff --git a/quanta/data/toolbars/xml/fonts.toolbar b/quanta/data/toolbars/xml/fonts.toolbar new file mode 100644 index 00000000..b2897634 --- /dev/null +++ b/quanta/data/toolbars/xml/fonts.toolbar @@ -0,0 +1,21 @@ +<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> +<kpartgui name="quanta" version="2"> + <ToolBar tabname="Fonts" name="fonts" > + <text>Fonts</text> + <Action name="tag_font" /> + <Separator lineSeparator="true" /> + <Action name="tag_font_inc" /> + <Action name="tag_font_dec" /> + <Separator lineSeparator="true" /> + <Action name="tag_pre" /> + <Action name="tag_sub" /> + <Action name="tag_sup" /> + <Separator lineSeparator="true" /> + <Action name="tag_h1" /> + <Action name="tag_h2" /> + <Action name="tag_h3" /> + <Action name="tag_h4" /> + <Action name="tag_h5" /> + </ToolBar> + +</kpartgui>
\ No newline at end of file |