diff options
Diffstat (limited to 'quanta/data/toolbars/cfml/standard.actions')
-rw-r--r-- | quanta/data/toolbars/cfml/standard.actions | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/quanta/data/toolbars/cfml/standard.actions b/quanta/data/toolbars/cfml/standard.actions new file mode 100644 index 00000000..6179aba0 --- /dev/null +++ b/quanta/data/toolbars/cfml/standard.actions @@ -0,0 +1,102 @@ +<!DOCTYPE actionsconfig> +<actions> + <action shortcut="" icon="quick_start.png" type="script" tooltip="Quick Start" name="tag_quick_start" text="Quick Start" > + <script output="cursor" error="message" input="none" >kmdr-executor -c quanta %scriptdir/htmlquickstart.kmdr</script> + </action> + <action shortcut="" icon="tag_bold" type="tag" tooltip="Bold &lt;em>" name="tag_b" text="Bold" > + <tooltip>The <b>B</b> element suggests that text be rendered as <i>bold text</i>. + <br>- common attributes + </tooltip> + <tag useDialog="false" ><strong></tag> + <xtag use="true" ></strong></xtag> + </action> + <action shortcut="" icon="tag_i" type="tag" tooltip="Italic &lt;strong>" name="tag_i" text="Italic" > + <tooltip>The <b>I</b> element suggests that text be rendered as <i>italic text</i>. + <br>- common attributes + </tooltip> + <tag useDialog="false" ><em></tag> + <xtag use="true" ></em></xtag> + </action> + <action icon="tag_u" type="tag" name="tag_u" text="Underline" > + <tag><u></tag> + <xtag use="true" ></u></xtag> + <tooltip>The <b>U</b> element, deprecated in HTML 4.0, suggests that text be rendered as <i>underlined text</i>. + <br>- common attributes + </tooltip> + </action> + <action shortcut="" icon="tag_br" type="tag" name="tag_br" text="New Line" > + <tag><br></tag> + <tooltip>The <b>BR</b> element forces a <i>break</i> in the current line of text. + <br>- CLEAR=[ left | all | right | none ] (clear floating objects) + <br>- core attributes + </tooltip> + </action> + <action icon="tag_p" type="tag" name="tag_p" text="Paragraph" > + <tag><p></tag> + <xtag use="true" ></p></xtag> + <tooltip>The <b>P</b> element defines a <i>paragraph</i>. + <br>- ALIGN=[ left | center | right | justify ] (horizontal alignment) + <br>- common attributes + </tooltip> + </action> + <action shortcut="" icon="tag_nbsp" type="text" name="tag_nbsp" text="Non Breaking Space" > + <text>&nbsp;</text> + <tooltip>Inserting <b>nbsp</b>. + Non breaking <i>space</i>. + </tooltip> + </action> + <action icon="tag_a" type="tag" name="tag_a" text="Anchor..." > + <tag useDialog="true" ><a></tag> + <xtag use="true" ></a></xtag> + <tooltip>The <b>A</b> element denotes an <i>anchor</i>--a hypertext link or the destination of a link. + The <b>HREF</b> attribute specifies a hypertext link to another resource, such as an <i>HTML</i> document or a <i>JPEG</i> image. + </tooltip> + </action> + <action icon="tag_image" type="tag" name="tag_img" text="Image..." > + <tag useDialog="true" ><img></tag> + <tooltip>The <b>IMG</b> element specifies an <i>inline</i> image. + The required <b>SRC</b> attribute specifies the location of the image. + </tooltip> + </action> + <action shortcut="" icon="tag_hr" type="tag" name="tag_hr" text="Horizontal Line" > + <tag><hr></tag> + <tooltip>The <b>HR</b> element defines a <i>horizontal rule</i> for visual browsers. + While this element is inherently presentational, it can be used structurally as a section divider. + </tooltip> + </action> + <action icon="tag_comm" type="tag" name="tag_comment" text="Comment" > + <tag><!--</tag> + <xtag use="true" >--></xtag> + <tooltip>The <b>!-- --></b> element <i>comment</i> a text inside. + </tooltip> + </action> + <action icon="div_left" type="tag" name="tag_div_left" text="Align Left" > + <tag><div align="left"></tag> + <xtag use="true" ></div></xtag> + <tooltip>The <b>DIV ALIGN</b>=<i>left</i> + suggests the horizontal alignment for the content of the division to <i>left</i>. + </tooltip> + </action> + <action icon="div_center" type="tag" name="tag_div_center" text="Align Center" > + <tag><div align="center"></tag> + <xtag use="true" ></div></xtag> + <tooltip>The <b>DIV ALIGN</b>=<i>center</i> or <b>CENTER</b> + suggests the horizontal alignment for the content of the division to <i>center</i>. + </tooltip> + </action> + <action icon="div_right" type="tag" name="tag_div_right" text="Align Right" > + <tag><div align="right"></tag> + <xtag use="true" ></div></xtag> + <tooltip>The <b>DIV ALIGN</b>=<i>right</i> + suggests the horizontal alignment for the content of the division to <i>right</i>. + </tooltip> + </action> + <action icon="div_justify" type="tag" name="tag_div_justify" text="Align Justify" > + <tag><div align="justify"></tag> + <xtag use="true" ></div></xtag> + <tooltip>The <b>DIV ALIGN</b>=<i>justify</i> + suggests the horizontal alignment for the content of the division to <i>justify</i>. + </tooltip> + </action> + +</actions>
\ No newline at end of file |