home *** CD-ROM | disk | FTP | other *** search
/ Freelog 29 / Freelog029.iso / Bas / Internet / MTELite / GUI / makeAttMenu.tcl < prev    next >
Text File  |  2001-05-09  |  96KB  |  1,102 lines

  1. catch {destroy .attributeMenu}
  2. menu .attributeMenu
  3. # Tag-Untermenⁿs
  4. ::GUI::makeCutCopyPasteMenu .attributeMenu._meta
  5. .attributeMenu add cascade -menu .attributeMenu._meta -label {attributes of meta}
  6. ::GUI::makeCutCopyPasteMenu .attributeMenu._eval
  7. .attributeMenu add cascade -menu .attributeMenu._eval -label {attributes of eval}
  8. ::GUI::makeCutCopyPasteMenu .attributeMenu._table
  9. .attributeMenu add cascade -menu .attributeMenu._table -label {attributes of table}
  10. ::GUI::makeCutCopyPasteMenu .attributeMenu._ins
  11. .attributeMenu add cascade -menu .attributeMenu._ins -label {attributes of ins}
  12. ::GUI::makeCutCopyPasteMenu .attributeMenu._del
  13. .attributeMenu add cascade -menu .attributeMenu._del -label {attributes of del}
  14. ::GUI::makeCutCopyPasteMenu .attributeMenu._input
  15. .attributeMenu add cascade -menu .attributeMenu._input -label {attributes of input}
  16. ::GUI::makeCutCopyPasteMenu .attributeMenu._button
  17. .attributeMenu add cascade -menu .attributeMenu._button -label {attributes of button}
  18. ::GUI::makeCutCopyPasteMenu .attributeMenu._textarea
  19. .attributeMenu add cascade -menu .attributeMenu._textarea -label {attributes of textarea}
  20. ::GUI::makeCutCopyPasteMenu .attributeMenu._area
  21. .attributeMenu add cascade -menu .attributeMenu._area -label {attributes of area}
  22. ::GUI::makeCutCopyPasteMenu .attributeMenu._form
  23. .attributeMenu add cascade -menu .attributeMenu._form -label {attributes of form}
  24. ::GUI::makeCutCopyPasteMenu .attributeMenu._body
  25. .attributeMenu add cascade -menu .attributeMenu._body -label {attributes of body}
  26. ::GUI::makeCutCopyPasteMenu .attributeMenu._img
  27. .attributeMenu add cascade -menu .attributeMenu._img -label {attributes of img}
  28. ::GUI::makeCutCopyPasteMenu .attributeMenu._hr
  29. .attributeMenu add cascade -menu .attributeMenu._hr -label {attributes of hr}
  30. ::GUI::makeCutCopyPasteMenu .attributeMenu._td
  31. .attributeMenu add cascade -menu .attributeMenu._td -label {attributes of td}
  32. ::GUI::makeCutCopyPasteMenu .attributeMenu._th
  33. .attributeMenu add cascade -menu .attributeMenu._th -label {attributes of th}
  34. ::GUI::makeCutCopyPasteMenu .attributeMenu._div
  35. .attributeMenu add cascade -menu .attributeMenu._div -label {attributes of div}
  36. ::GUI::makeCutCopyPasteMenu .attributeMenu._p
  37. .attributeMenu add cascade -menu .attributeMenu._p -label {attributes of p}
  38. ::GUI::makeCutCopyPasteMenu .attributeMenu._h1
  39. .attributeMenu add cascade -menu .attributeMenu._h1 -label {attributes of h1}
  40. ::GUI::makeCutCopyPasteMenu .attributeMenu._h2
  41. .attributeMenu add cascade -menu .attributeMenu._h2 -label {attributes of h2}
  42. ::GUI::makeCutCopyPasteMenu .attributeMenu._h3
  43. .attributeMenu add cascade -menu .attributeMenu._h3 -label {attributes of h3}
  44. ::GUI::makeCutCopyPasteMenu .attributeMenu._h4
  45. .attributeMenu add cascade -menu .attributeMenu._h4 -label {attributes of h4}
  46. ::GUI::makeCutCopyPasteMenu .attributeMenu._h5
  47. .attributeMenu add cascade -menu .attributeMenu._h5 -label {attributes of h5}
  48. ::GUI::makeCutCopyPasteMenu .attributeMenu._h6
  49. .attributeMenu add cascade -menu .attributeMenu._h6 -label {attributes of h6}
  50. ::GUI::makeCutCopyPasteMenu .attributeMenu._caption
  51. .attributeMenu add cascade -menu .attributeMenu._caption -label {attributes of caption}
  52. ::GUI::makeCutCopyPasteMenu .attributeMenu._tr
  53. .attributeMenu add cascade -menu .attributeMenu._tr -label {attributes of tr}
  54. ::GUI::makeCutCopyPasteMenu .attributeMenu._blockquote
  55. .attributeMenu add cascade -menu .attributeMenu._blockquote -label {attributes of blockquote}
  56. ::GUI::makeCutCopyPasteMenu .attributeMenu._q
  57. .attributeMenu add cascade -menu .attributeMenu._q -label {attributes of q}
  58. ::GUI::makeCutCopyPasteMenu .attributeMenu._br
  59. .attributeMenu add cascade -menu .attributeMenu._br -label {attributes of br}
  60. ::GUI::makeCutCopyPasteMenu .attributeMenu._dl
  61. .attributeMenu add cascade -menu .attributeMenu._dl -label {attributes of dl}
  62. ::GUI::makeCutCopyPasteMenu .attributeMenu._ul
  63. .attributeMenu add cascade -menu .attributeMenu._ul -label {attributes of ul}
  64. ::GUI::makeCutCopyPasteMenu .attributeMenu._ol
  65. .attributeMenu add cascade -menu .attributeMenu._ol -label {attributes of ol}
  66. ::GUI::makeCutCopyPasteMenu .attributeMenu._select
  67. .attributeMenu add cascade -menu .attributeMenu._select -label {attributes of select}
  68. ::GUI::makeCutCopyPasteMenu .attributeMenu._option
  69. .attributeMenu add cascade -menu .attributeMenu._option -label {attributes of option}
  70. ::GUI::makeCutCopyPasteMenu .attributeMenu._a
  71. .attributeMenu add cascade -menu .attributeMenu._a -label {attributes of a}
  72. ::GUI::makeCutCopyPasteMenu .attributeMenu._acronym
  73. .attributeMenu add cascade -menu .attributeMenu._acronym -label {attributes of acronym}
  74. ::GUI::makeCutCopyPasteMenu .attributeMenu._address
  75. .attributeMenu add cascade -menu .attributeMenu._address -label {attributes of address}
  76. ::GUI::makeCutCopyPasteMenu .attributeMenu._b
  77. .attributeMenu add cascade -menu .attributeMenu._b -label {attributes of b}
  78. ::GUI::makeCutCopyPasteMenu .attributeMenu._big
  79. .attributeMenu add cascade -menu .attributeMenu._big -label {attributes of big}
  80. ::GUI::makeCutCopyPasteMenu .attributeMenu._center
  81. .attributeMenu add cascade -menu .attributeMenu._center -label {attributes of center}
  82. ::GUI::makeCutCopyPasteMenu .attributeMenu._cite
  83. .attributeMenu add cascade -menu .attributeMenu._cite -label {attributes of cite}
  84. ::GUI::makeCutCopyPasteMenu .attributeMenu._code
  85. .attributeMenu add cascade -menu .attributeMenu._code -label {attributes of code}
  86. ::GUI::makeCutCopyPasteMenu .attributeMenu._col
  87. .attributeMenu add cascade -menu .attributeMenu._col -label {attributes of col}
  88. ::GUI::makeCutCopyPasteMenu .attributeMenu._colgroup
  89. .attributeMenu add cascade -menu .attributeMenu._colgroup -label {attributes of colgroup}
  90. ::GUI::makeCutCopyPasteMenu .attributeMenu._dd
  91. .attributeMenu add cascade -menu .attributeMenu._dd -label {attributes of dd}
  92. ::GUI::makeCutCopyPasteMenu .attributeMenu._dfn
  93. .attributeMenu add cascade -menu .attributeMenu._dfn -label {attributes of dfn}
  94. ::GUI::makeCutCopyPasteMenu .attributeMenu._dir
  95. .attributeMenu add cascade -menu .attributeMenu._dir -label {attributes of dir}
  96. ::GUI::makeCutCopyPasteMenu .attributeMenu._dt
  97. .attributeMenu add cascade -menu .attributeMenu._dt -label {attributes of dt}
  98. ::GUI::makeCutCopyPasteMenu .attributeMenu._em
  99. .attributeMenu add cascade -menu .attributeMenu._em -label {attributes of em}
  100. ::GUI::makeCutCopyPasteMenu .attributeMenu._fieldset
  101. .attributeMenu add cascade -menu .attributeMenu._fieldset -label {attributes of fieldset}
  102. ::GUI::makeCutCopyPasteMenu .attributeMenu._head
  103. .attributeMenu add cascade -menu .attributeMenu._head -label {attributes of head}
  104. ::GUI::makeCutCopyPasteMenu .attributeMenu._html
  105. .attributeMenu add cascade -menu .attributeMenu._html -label {attributes of html}
  106. ::GUI::makeCutCopyPasteMenu .attributeMenu._i
  107. .attributeMenu add cascade -menu .attributeMenu._i -label {attributes of i}
  108. ::GUI::makeCutCopyPasteMenu .attributeMenu._isindex
  109. .attributeMenu add cascade -menu .attributeMenu._isindex -label {attributes of isindex}
  110. ::GUI::makeCutCopyPasteMenu .attributeMenu._kbd
  111. .attributeMenu add cascade -menu .attributeMenu._kbd -label {attributes of kbd}
  112. ::GUI::makeCutCopyPasteMenu .attributeMenu._label
  113. .attributeMenu add cascade -menu .attributeMenu._label -label {attributes of label}
  114. ::GUI::makeCutCopyPasteMenu .attributeMenu._legend
  115. .attributeMenu add cascade -menu .attributeMenu._legend -label {attributes of legend}
  116. ::GUI::makeCutCopyPasteMenu .attributeMenu._li
  117. .attributeMenu add cascade -menu .attributeMenu._li -label {attributes of li}
  118. ::GUI::makeCutCopyPasteMenu .attributeMenu._link
  119. .attributeMenu add cascade -menu .attributeMenu._link -label {attributes of link}
  120. ::GUI::makeCutCopyPasteMenu .attributeMenu._menu
  121. .attributeMenu add cascade -menu .attributeMenu._menu -label {attributes of menu}
  122. ::GUI::makeCutCopyPasteMenu .attributeMenu._object
  123. .attributeMenu add cascade -menu .attributeMenu._object -label {attributes of object}
  124. ::GUI::makeCutCopyPasteMenu .attributeMenu._pre
  125. .attributeMenu add cascade -menu .attributeMenu._pre -label {attributes of pre}
  126. ::GUI::makeCutCopyPasteMenu .attributeMenu._s
  127. .attributeMenu add cascade -menu .attributeMenu._s -label {attributes of s}
  128. ::GUI::makeCutCopyPasteMenu .attributeMenu._samp
  129. .attributeMenu add cascade -menu .attributeMenu._samp -label {attributes of samp}
  130. ::GUI::makeCutCopyPasteMenu .attributeMenu._small
  131. .attributeMenu add cascade -menu .attributeMenu._small -label {attributes of small}
  132. ::GUI::makeCutCopyPasteMenu .attributeMenu._span
  133. .attributeMenu add cascade -menu .attributeMenu._span -label {attributes of span}
  134. ::GUI::makeCutCopyPasteMenu .attributeMenu._strike
  135. .attributeMenu add cascade -menu .attributeMenu._strike -label {attributes of strike}
  136. ::GUI::makeCutCopyPasteMenu .attributeMenu._strong
  137. .attributeMenu add cascade -menu .attributeMenu._strong -label {attributes of strong}
  138. ::GUI::makeCutCopyPasteMenu .attributeMenu._style
  139. .attributeMenu add cascade -menu .attributeMenu._style -label {attributes of style}
  140. ::GUI::makeCutCopyPasteMenu .attributeMenu._sub
  141. .attributeMenu add cascade -menu .attributeMenu._sub -label {attributes of sub}
  142. ::GUI::makeCutCopyPasteMenu .attributeMenu._sup
  143. .attributeMenu add cascade -menu .attributeMenu._sup -label {attributes of sup}
  144. ::GUI::makeCutCopyPasteMenu .attributeMenu._tbody
  145. .attributeMenu add cascade -menu .attributeMenu._tbody -label {attributes of tbody}
  146. ::GUI::makeCutCopyPasteMenu .attributeMenu._tfoot
  147. .attributeMenu add cascade -menu .attributeMenu._tfoot -label {attributes of tfoot}
  148. ::GUI::makeCutCopyPasteMenu .attributeMenu._thead
  149. .attributeMenu add cascade -menu .attributeMenu._thead -label {attributes of thead}
  150. ::GUI::makeCutCopyPasteMenu .attributeMenu._title
  151. .attributeMenu add cascade -menu .attributeMenu._title -label {attributes of title}
  152. ::GUI::makeCutCopyPasteMenu .attributeMenu._tt
  153. .attributeMenu add cascade -menu .attributeMenu._tt -label {attributes of tt}
  154. ::GUI::makeCutCopyPasteMenu .attributeMenu._u
  155. .attributeMenu add cascade -menu .attributeMenu._u -label {attributes of u}
  156. ::GUI::makeCutCopyPasteMenu .attributeMenu._var
  157. .attributeMenu add cascade -menu .attributeMenu._var -label {attributes of var}
  158. ::GUI::makeCutCopyPasteMenu .attributeMenu._marquee
  159. .attributeMenu add cascade -menu .attributeMenu._marquee -label {attributes of marquee}
  160. ::GUI::makeCutCopyPasteMenu .attributeMenu._bdo
  161. .attributeMenu add cascade -menu .attributeMenu._bdo -label {attributes of bdo}
  162. ::GUI::makeCutCopyPasteMenu .attributeMenu._map
  163. .attributeMenu add cascade -menu .attributeMenu._map -label {attributes of map}
  164. ::GUI::makeCutCopyPasteMenu .attributeMenu._param
  165. .attributeMenu add cascade -menu .attributeMenu._param -label {attributes of param}
  166. ::GUI::makeCutCopyPasteMenu .attributeMenu._tag
  167. .attributeMenu add cascade -menu .attributeMenu._tag -label {attributes of tag}
  168. ::GUI::makeCutCopyPasteMenu .attributeMenu._attribute
  169. .attributeMenu add cascade -menu .attributeMenu._attribute -label {attributes of attribute}
  170. ::GUI::makeCutCopyPasteMenu .attributeMenu._cascade
  171. .attributeMenu add cascade -menu .attributeMenu._cascade -label {attributes of cascade}
  172. ::GUI::makeCutCopyPasteMenu .attributeMenu._command
  173. .attributeMenu add cascade -menu .attributeMenu._command -label {attributes of command}
  174. ::GUI::makeCutCopyPasteMenu .attributeMenu._existingmenu
  175. .attributeMenu add cascade -menu .attributeMenu._existingmenu -label {attributes of existingmenu}
  176. ::GUI::makeCutCopyPasteMenu .attributeMenu._existingattmenu
  177. .attributeMenu add cascade -menu .attributeMenu._existingattmenu -label {attributes of existingattmenu}
  178. # Attribut-Untermenⁿs
  179. .attributeMenu._meta add cascade -label {name (Meta-Eigenschaft)} -menu .attributeMenu._meta._name
  180. # Definition .attributeMenu._meta._name:
  181. menu .attributeMenu._meta._name -tearoff 0
  182. .attributeMenu._meta._name add command -label {author} -command {setAttribute [focus] "name" "author" insert}
  183. .attributeMenu._meta._name add command -label {description} -command {setAttribute [focus] "name" "description" insert}
  184. .attributeMenu._meta._name add command -label {keywords} -command {setAttribute [focus] "name" "keywords" insert}
  185. .attributeMenu._meta._name add command -label {date} -command {setAttribute [focus] "name" "date" insert}
  186. .attributeMenu._meta._name add command -label {generator} -command {setAttribute [focus] "name" "generator" insert}
  187. .attributeMenu._meta._name add command -label {robots} -command {setAttribute [focus] "name" "robots" insert}
  188. .attributeMenu._meta add cascade -label {content (Meta-Eigenschaftswert)} -menu .attributeMenu._meta._content
  189. # Definition .attributeMenu._meta._content:
  190. menu .attributeMenu._meta._content -tearoff 0
  191. .attributeMenu._meta._content add command -label {text/javascript} -command {setAttribute [focus] "content" "text/javascript" insert}
  192. .attributeMenu._meta._content add command -label {text/css} -command {setAttribute [focus] "content" "text/css" insert}
  193. .attributeMenu._meta._content add command -label {text/html; charset=iso-8559-1} -command {setAttribute [focus] "content" "text/html; charset=iso-8559-1" insert}
  194. .attributeMenu._meta._content add command -label {text/html; charset=utf-8} -command {setAttribute [focus] "content" "text/html; charset=utf-8" insert}
  195. .attributeMenu._meta._content add command -label {Meta-Eigenschaftswert} -command {setAttribute [focus] "content" "Meta-Eigenschaftswert" insert}
  196. .attributeMenu._eval add cascade -label {http-equiv} -menu .attributeMenu._eval._http-equiv
  197. # Definition .attributeMenu._eval._http-equiv:
  198. menu .attributeMenu._eval._http-equiv -tearoff 0
  199. .attributeMenu._eval._http-equiv add command -label {content-type} -command {setAttribute [focus] "http-equiv" "content-type" insert}
  200. .attributeMenu._eval._http-equiv add command -label {content-script-type} -command {setAttribute [focus] "http-equiv" "content-script-type" insert}
  201. .attributeMenu._eval._http-equiv add command -label {content-style-type} -command {setAttribute [focus] "http-equiv" "content-style-type" insert}
  202. .attributeMenu._eval._http-equiv add command -label {ext-cache} -command {setAttribute [focus] "http-equiv" "ext-cache" insert}
  203. .attributeMenu._eval._http-equiv add command -label {set-cookie} -command {setAttribute [focus] "http-equiv" "set-cookie" insert}
  204. .attributeMenu._eval._http-equiv add command -label {pragma} -command {setAttribute [focus] "http-equiv" "pragma" insert}
  205. .attributeMenu._eval._http-equiv add command -label {revisit-after} -command {setAttribute [focus] "http-equiv" "revisit-after" insert}
  206. .attributeMenu._eval._http-equiv add command -label {sonstiges} -command {setAttribute [focus] "http-equiv" "sonstiges" insert}
  207. .attributeMenu._eval add cascade -label {charset} -menu .attributeMenu._eval._charset
  208. # Definition .attributeMenu._eval._charset:
  209. menu .attributeMenu._eval._charset -tearoff 0
  210. .attributeMenu._eval._charset add command -label {iso-8559-1} -command {setAttribute [focus] "charset" "iso-8559-1" insert}
  211. .attributeMenu._table add cascade -label {Tabellenanalyse} -menu .attributeMenu._table._Tabellenanalyse
  212. # Definition .attributeMenu._table._Tabellenanalyse:
  213. menu .attributeMenu._table._Tabellenanalyse -tearoff 0
  214. .attributeMenu._table._Tabellenanalyse add command -label {[infoTableMatrixHere]} -command {setAttribute [focus] "Tabellenanalyse" "[infoTableMatrixHere]" insert}
  215. .attributeMenu._table add cascade -label {Tabellenansicht} -menu .attributeMenu._table._Tabellenansicht
  216. # Definition .attributeMenu._table._Tabellenansicht:
  217. menu .attributeMenu._table._Tabellenansicht -tearoff 0
  218. .attributeMenu._table._Tabellenansicht add command -label {[toggleTableView]} -command {setAttribute [focus] "Tabellenansicht" "[toggleTableView]" insert}
  219. .attributeMenu._ins add cascade -label {Datum und Uhrzeit} -menu .attributeDateTimeMenu
  220. .attributeMenu._del add cascade -label {Datum und Uhrzeit} -menu .attributeDateTimeMenu
  221. .attributeMenu._input add cascade -label {accesskey} -menu .attributeMenu._input._accesskey
  222. # Definition .attributeMenu._input._accesskey:
  223. menu .attributeMenu._input._accesskey -tearoff 0
  224. .attributeMenu._input._accesskey add command -label {a} -command {setAttribute [focus] "accesskey" "a" insert}
  225. .attributeMenu._input._accesskey add command -label {b} -command {setAttribute [focus] "accesskey" "b" insert}
  226. .attributeMenu._input._accesskey add command -label {c} -command {setAttribute [focus] "accesskey" "c" insert}
  227. .attributeMenu._input._accesskey add command -label {d} -command {setAttribute [focus] "accesskey" "d" insert}
  228. .attributeMenu._input._accesskey add command -label {e} -command {setAttribute [focus] "accesskey" "e" insert}
  229. .attributeMenu._input._accesskey add command -label {f} -command {setAttribute [focus] "accesskey" "f" insert}
  230. .attributeMenu._button add cascade -label {accesskey} -menu .attributeMenu._input._accesskey
  231. .attributeMenu._textarea add cascade -label {accesskey} -menu .attributeMenu._input._accesskey
  232. .attributeMenu._area add cascade -label {accesskey} -menu .attributeMenu._input._accesskey
  233. .attributeMenu._form add cascade -label {action} -menu .attributeMenu._form._action
  234. # Definition .attributeMenu._form._action:
  235. menu .attributeMenu._form._action -tearoff 0
  236. .attributeMenu._form._action add command -label {mailto:Wolf-Dieter.Busch@T-Online.de} -command {setAttribute [focus] "action" "mailto:Wolf-Dieter.Busch@T-Online.de" insert}
  237. .attributeMenu._form._action add command -label {/cgi-bin/auswert.pl} -command {setAttribute [focus] "action" "/cgi-bin/auswert.pl" insert}
  238. .attributeMenu._body add cascade -label {alink (Farbe aktiver Links)} -menu .attributeMenu._body._alink
  239. # Definition .attributeMenu._body._alink:
  240. menu .attributeMenu._body._alink -tearoff 0
  241. .attributeMenu._body._alink add command -label {black} -command {setAttribute [focus] "alink" "black" insert}
  242. .attributeMenu._body._alink add command -label {maroon} -command {setAttribute [focus] "alink" "maroon" insert}
  243. .attributeMenu._body._alink add command -label {green} -command {setAttribute [focus] "alink" "green" insert}
  244. .attributeMenu._body._alink add command -label {olive} -command {setAttribute [focus] "alink" "olive" insert}
  245. .attributeMenu._body._alink add command -label {navy} -command {setAttribute [focus] "alink" "navy" insert}
  246. .attributeMenu._body._alink add command -label {purple} -command {setAttribute [focus] "alink" "purple" insert}
  247. .attributeMenu._body._alink add command -label {teal} -command {setAttribute [focus] "alink" "teal" insert}
  248. .attributeMenu._body._alink add command -label {gray} -command {setAttribute [focus] "alink" "gray" insert}
  249. .attributeMenu._body._alink add command -label {silver} -command {setAttribute [focus] "alink" "silver" insert}
  250. .attributeMenu._body._alink add command -label {red} -command {setAttribute [focus] "alink" "red" insert}
  251. .attributeMenu._body._alink add command -label {lime} -command {setAttribute [focus] "alink" "lime" insert}
  252. .attributeMenu._body._alink add command -label {yellow} -command {setAttribute [focus] "alink" "yellow" insert}
  253. .attributeMenu._body._alink add command -label {blue} -command {setAttribute [focus] "alink" "blue" insert}
  254. .attributeMenu._body._alink add command -label {fuchsia} -command {setAttribute [focus] "alink" "fuchsia" insert}
  255. .attributeMenu._body._alink add command -label {aqua} -command {setAttribute [focus] "alink" "aqua" insert}
  256. .attributeMenu._body._alink add command -label {white} -command {setAttribute [focus] "alink" "white" insert}
  257. .attributeMenu._body._alink add command -label {[colorChoice]} -command {setAttribute [focus] "alink" "[colorChoice]" insert}
  258. .attributeMenu._img add cascade -label {align (Ausrichtung)} -menu .attributeMenu._img._align
  259. # Definition .attributeMenu._img._align:
  260. menu .attributeMenu._img._align -tearoff 0
  261. .attributeMenu._img._align add command -label {left} -command {setAttribute [focus] "align" "left" insert}
  262. .attributeMenu._img._align add command -label {right} -command {setAttribute [focus] "align" "right" insert}
  263. .attributeMenu._img._align add command -label {top} -command {setAttribute [focus] "align" "top" insert}
  264. .attributeMenu._img._align add command -label {middle} -command {setAttribute [focus] "align" "middle" insert}
  265. .attributeMenu._img._align add command -label {bottom} -command {setAttribute [focus] "align" "bottom" insert}
  266. .attributeMenu._table add cascade -label {align (Ausrichtung)} -menu .attributeMenu._table._align
  267. # Definition .attributeMenu._table._align:
  268. menu .attributeMenu._table._align -tearoff 0
  269. .attributeMenu._table._align add command -label {left} -command {setAttribute [focus] "align" "left" insert}
  270. .attributeMenu._table._align add command -label {right} -command {setAttribute [focus] "align" "right" insert}
  271. .attributeMenu._table._align add command -label {center} -command {setAttribute [focus] "align" "center" insert}
  272. .attributeMenu._hr add cascade -label {align (Ausrichtung)} -menu .attributeMenu._table._align
  273. .attributeMenu._td add cascade -label {align (Ausrichtung)} -menu .attributeMenu._table._align
  274. .attributeMenu._th add cascade -label {align (Ausrichtung)} -menu .attributeMenu._table._align
  275. .attributeMenu._div add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  276. # Definition .attributeMenu._div._align:
  277. menu .attributeMenu._div._align -tearoff 0
  278. .attributeMenu._div._align add command -label {left} -command {setAttribute [focus] "align" "left" insert}
  279. .attributeMenu._div._align add command -label {right} -command {setAttribute [focus] "align" "right" insert}
  280. .attributeMenu._div._align add command -label {center} -command {setAttribute [focus] "align" "center" insert}
  281. .attributeMenu._div._align add command -label {justified} -command {setAttribute [focus] "align" "justified" insert}
  282. .attributeMenu._p add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  283. .attributeMenu._h1 add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  284. .attributeMenu._h2 add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  285. .attributeMenu._h3 add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  286. .attributeMenu._h4 add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  287. .attributeMenu._h5 add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  288. .attributeMenu._h6 add cascade -label {align (Ausrichtung)} -menu .attributeMenu._div._align
  289. .attributeMenu._caption add cascade -label {align (Anordnung)} -menu .attributeMenu._caption._align
  290. # Definition .attributeMenu._caption._align:
  291. menu .attributeMenu._caption._align -tearoff 0
  292. .attributeMenu._caption._align add command -label {top} -command {setAttribute [focus] "align" "top" insert}
  293. .attributeMenu._caption._align add command -label {bottom} -command {setAttribute [focus] "align" "bottom" insert}
  294. .attributeMenu._img add cascade -label {alt (Beschreibung der Grafik)} -menu .attributeMenu._img._alt
  295. # Definition .attributeMenu._img._alt:
  296. menu .attributeMenu._img._alt -tearoff 0
  297. .attributeMenu._img._alt add command -label {Beschreibung} -command {setAttribute [focus] "alt" "Beschreibung" insert}
  298. .attributeMenu._area add cascade -label {alt (Beschreibung der Grafik)} -menu .attributeMenu._img._alt
  299. .attributeMenu._body add cascade -label {background (Hintergrundgrafik)} -menu .attributeMenu._body._background
  300. # Definition .attributeMenu._body._background:
  301. menu .attributeMenu._body._background -tearoff 0
  302. .attributeMenu._body._background add command -label {uri} -command {setAttribute [focus] "background" "uri" insert}
  303. .attributeMenu._body._background add command -label {[fileChoice]} -command {setAttribute [focus] "background" "[fileChoice]" insert}
  304. .attributeMenu._table add cascade -label {background (Hintergrundgrafik)} -menu .attributeMenu._body._background
  305. .attributeMenu._tr add cascade -label {background (Hintergrundgrafik)} -menu .attributeMenu._body._background
  306. .attributeMenu._td add cascade -label {background (Hintergrundgrafik)} -menu .attributeMenu._body._background
  307. .attributeMenu._th add cascade -label {background (Hintergrundgrafik)} -menu .attributeMenu._body._background
  308. .attributeMenu._body add cascade -label {bgcolor (Hintergrundfarbe)} -menu .attributeMenu._body._bgcolor
  309. # Definition .attributeMenu._body._bgcolor:
  310. menu .attributeMenu._body._bgcolor -tearoff 0
  311. .attributeMenu._body._bgcolor add command -label {black} -command {setAttribute [focus] "bgcolor" "black" insert}
  312. .attributeMenu._body._bgcolor add command -label {maroon} -command {setAttribute [focus] "bgcolor" "maroon" insert}
  313. .attributeMenu._body._bgcolor add command -label {green} -command {setAttribute [focus] "bgcolor" "green" insert}
  314. .attributeMenu._body._bgcolor add command -label {olive} -command {setAttribute [focus] "bgcolor" "olive" insert}
  315. .attributeMenu._body._bgcolor add command -label {navy} -command {setAttribute [focus] "bgcolor" "navy" insert}
  316. .attributeMenu._body._bgcolor add command -label {purple} -command {setAttribute [focus] "bgcolor" "purple" insert}
  317. .attributeMenu._body._bgcolor add command -label {teal} -command {setAttribute [focus] "bgcolor" "teal" insert}
  318. .attributeMenu._body._bgcolor add command -label {gray} -command {setAttribute [focus] "bgcolor" "gray" insert}
  319. .attributeMenu._body._bgcolor add command -label {silver} -command {setAttribute [focus] "bgcolor" "silver" insert}
  320. .attributeMenu._body._bgcolor add command -label {red} -command {setAttribute [focus] "bgcolor" "red" insert}
  321. .attributeMenu._body._bgcolor add command -label {lime} -command {setAttribute [focus] "bgcolor" "lime" insert}
  322. .attributeMenu._body._bgcolor add command -label {yellow} -command {setAttribute [focus] "bgcolor" "yellow" insert}
  323. .attributeMenu._body._bgcolor add command -label {blue} -command {setAttribute [focus] "bgcolor" "blue" insert}
  324. .attributeMenu._body._bgcolor add command -label {fuchsia} -command {setAttribute [focus] "bgcolor" "fuchsia" insert}
  325. .attributeMenu._body._bgcolor add command -label {aqua} -command {setAttribute [focus] "bgcolor" "aqua" insert}
  326. .attributeMenu._body._bgcolor add command -label {white} -command {setAttribute [focus] "bgcolor" "white" insert}
  327. .attributeMenu._body._bgcolor add command -label {[colorChoice]} -command {setAttribute [focus] "bgcolor" "[colorChoice]" insert}
  328. .attributeMenu._table add cascade -label {bgcolor (Hintergrundfarbe)} -menu .attributeMenu._body._bgcolor
  329. .attributeMenu._tr add cascade -label {bgcolor (Hintergrundfarbe)} -menu .attributeMenu._body._bgcolor
  330. .attributeMenu._td add cascade -label {bgcolor (Hintergrundfarbe)} -menu .attributeMenu._body._bgcolor
  331. .attributeMenu._th add cascade -label {bgcolor (Hintergrundfarbe)} -menu .attributeMenu._body._bgcolor
  332. .attributeMenu._table add cascade -label {border (Rand)} -menu .attributeMenu._table._border
  333. # Definition .attributeMenu._table._border:
  334. menu .attributeMenu._table._border -tearoff 0
  335. .attributeMenu._table._border add command -label {0} -command {setAttribute [focus] "border" "0" insert}
  336. .attributeMenu._table._border add command -label {1} -command {setAttribute [focus] "border" "1" insert}
  337. .attributeMenu._table._border add command -label {2} -command {setAttribute [focus] "border" "2" insert}
  338. .attributeMenu._table._border add command -label {3} -command {setAttribute [focus] "border" "3" insert}
  339. .attributeMenu._table._border add command -label {4} -command {setAttribute [focus] "border" "4" insert}
  340. .attributeMenu._table._border add command -label {5} -command {setAttribute [focus] "border" "5" insert}
  341. .attributeMenu._img add cascade -label {border (Rand)} -menu .attributeMenu._table._border
  342. .attributeMenu._table add cascade -label {cellpadding (Zell-Abstand innen)} -menu .attributeMenu._table._cellpadding
  343. # Definition .attributeMenu._table._cellpadding:
  344. menu .attributeMenu._table._cellpadding -tearoff 0
  345. .attributeMenu._table._cellpadding add command -label {0} -command {setAttribute [focus] "cellpadding" "0" insert}
  346. .attributeMenu._table._cellpadding add command -label {1} -command {setAttribute [focus] "cellpadding" "1" insert}
  347. .attributeMenu._table._cellpadding add command -label {2} -command {setAttribute [focus] "cellpadding" "2" insert}
  348. .attributeMenu._table._cellpadding add command -label {3} -command {setAttribute [focus] "cellpadding" "3" insert}
  349. .attributeMenu._table._cellpadding add command -label {4} -command {setAttribute [focus] "cellpadding" "4" insert}
  350. .attributeMenu._table._cellpadding add command -label {5} -command {setAttribute [focus] "cellpadding" "5" insert}
  351. .attributeMenu._table add cascade -label {cellspacing (Zell-Abstand außen)} -menu .attributeMenu._table._cellspacing
  352. # Definition .attributeMenu._table._cellspacing:
  353. menu .attributeMenu._table._cellspacing -tearoff 0
  354. .attributeMenu._table._cellspacing add command -label {0} -command {setAttribute [focus] "cellspacing" "0" insert}
  355. .attributeMenu._table._cellspacing add command -label {1} -command {setAttribute [focus] "cellspacing" "1" insert}
  356. .attributeMenu._table._cellspacing add command -label {2} -command {setAttribute [focus] "cellspacing" "2" insert}
  357. .attributeMenu._table._cellspacing add command -label {3} -command {setAttribute [focus] "cellspacing" "3" insert}
  358. .attributeMenu._table._cellspacing add command -label {4} -command {setAttribute [focus] "cellspacing" "4" insert}
  359. .attributeMenu._table._cellspacing add command -label {5} -command {setAttribute [focus] "cellspacing" "5" insert}
  360. .attributeMenu._blockquote add cascade -label {cite (Zitat-Quelle)} -menu .attributeMenu._blockquote._cite
  361. # Definition .attributeMenu._blockquote._cite:
  362. menu .attributeMenu._blockquote._cite -tearoff 0
  363. .attributeMenu._blockquote._cite add command -label {(uri)} -command {setAttribute [focus] "cite" "(uri)" insert}
  364. .attributeMenu._q add cascade -label {cite (Zitat-Quelle)} -menu .attributeMenu._blockquote._cite
  365. .attributeMenu._ins add cascade -label {cite (Zitat-Quelle)} -menu .attributeMenu._blockquote._cite
  366. .attributeMenu._del add cascade -label {cite (Zitat-Quelle)} -menu .attributeMenu._blockquote._cite
  367. .attributeMenu._br add cascade -label {clear (Freigehaltener Rand)} -menu .attributeMenu._br._clear
  368. # Definition .attributeMenu._br._clear:
  369. menu .attributeMenu._br._clear -tearoff 0
  370. .attributeMenu._br._clear add command -label {left} -command {setAttribute [focus] "clear" "left" insert}
  371. .attributeMenu._br._clear add command -label {right} -command {setAttribute [focus] "clear" "right" insert}
  372. .attributeMenu._br._clear add command -label {all} -command {setAttribute [focus] "clear" "all" insert}
  373. .attributeMenu._textarea add cascade -label {cols (Breite in Zeichen)} -menu .attributeMenu._textarea._cols
  374. # Definition .attributeMenu._textarea._cols:
  375. menu .attributeMenu._textarea._cols -tearoff 0
  376. .attributeMenu._textarea._cols add command -label {20} -command {setAttribute [focus] "cols" "20" insert}
  377. .attributeMenu._textarea._cols add command -label {40} -command {setAttribute [focus] "cols" "40" insert}
  378. .attributeMenu._textarea._cols add command -label {60} -command {setAttribute [focus] "cols" "60" insert}
  379. .attributeMenu._textarea._cols add command -label {80} -command {setAttribute [focus] "cols" "80" insert}
  380. .attributeMenu._td add cascade -label {colspan (spaltenⁿbergreifend)} -menu .attributeMenu._td._colspan
  381. # Definition .attributeMenu._td._colspan:
  382. menu .attributeMenu._td._colspan -tearoff 0
  383. .attributeMenu._td._colspan add command -label {1} -command {setAttribute [focus] "colspan" "1" insert}
  384. .attributeMenu._td._colspan add command -label {2} -command {setAttribute [focus] "colspan" "2" insert}
  385. .attributeMenu._td._colspan add command -label {3} -command {setAttribute [focus] "colspan" "3" insert}
  386. .attributeMenu._td._colspan add command -label {4} -command {setAttribute [focus] "colspan" "4" insert}
  387. .attributeMenu._td._colspan add command -label {5} -command {setAttribute [focus] "colspan" "5" insert}
  388. .attributeMenu._dl add cascade -label {compact} -menu .attributeMenu._dl._compact
  389. # Definition .attributeMenu._dl._compact:
  390. menu .attributeMenu._dl._compact -tearoff 0
  391. .attributeMenu._dl._compact add command -label {compact} -command {setAttribute [focus] "compact" "compact" insert}
  392. .attributeMenu._ul add cascade -label {compact} -menu .attributeMenu._dl._compact
  393. .attributeMenu._ol add cascade -label {compact} -menu .attributeMenu._dl._compact
  394. .attributeMenu._area add cascade -label {coords (Koordinaten)} -menu .attributeMenu._area._coords
  395. # Definition .attributeMenu._area._coords:
  396. menu .attributeMenu._area._coords -tearoff 0
  397. .attributeMenu._area._coords add command -label {x,y,...} -command {setAttribute [focus] "coords" "x,y,..." insert}
  398. .attributeMenu._textarea add cascade -label {disabled (au▀er Funktion)} -menu .attributeMenu._textarea._disabled
  399. # Definition .attributeMenu._textarea._disabled:
  400. menu .attributeMenu._textarea._disabled -tearoff 0
  401. .attributeMenu._textarea._disabled add command -label {disabled} -command {setAttribute [focus] "disabled" "disabled" insert}
  402. .attributeMenu._select add cascade -label {disabled (au▀er Funktion)} -menu .attributeMenu._textarea._disabled
  403. .attributeMenu._option add cascade -label {disabled (au▀er Funktion)} -menu .attributeMenu._textarea._disabled
  404. .attributeMenu._button add cascade -label {disabled (au▀er Funktion)} -menu .attributeMenu._textarea._disabled
  405. .attributeMenu._a add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  406. # Definition .attributeMenu._a._dir:
  407. menu .attributeMenu._a._dir -tearoff 0
  408. .attributeMenu._a._dir add command -label {rtl} -command {setAttribute [focus] "dir" "rtl" insert}
  409. .attributeMenu._a._dir add command -label {ltr} -command {setAttribute [focus] "dir" "ltr" insert}
  410. .attributeMenu._acronym add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  411. .attributeMenu._address add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  412. .attributeMenu._b add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  413. .attributeMenu._big add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  414. .attributeMenu._blockquote add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  415. .attributeMenu._body add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  416. .attributeMenu._button add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  417. .attributeMenu._caption add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  418. .attributeMenu._center add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  419. .attributeMenu._cite add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  420. .attributeMenu._code add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  421. .attributeMenu._col add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  422. .attributeMenu._colgroup add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  423. .attributeMenu._dd add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  424. .attributeMenu._del add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  425. .attributeMenu._dfn add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  426. .attributeMenu._dir add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  427. .attributeMenu._div add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  428. .attributeMenu._dl add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  429. .attributeMenu._dt add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  430. .attributeMenu._em add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  431. .attributeMenu._fieldset add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  432. .attributeMenu._form add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  433. .attributeMenu._h1 add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  434. .attributeMenu._h2 add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  435. .attributeMenu._h3 add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  436. .attributeMenu._h4 add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  437. .attributeMenu._h5 add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  438. .attributeMenu._h6 add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  439. .attributeMenu._head add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  440. .attributeMenu._html add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  441. .attributeMenu._i add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  442. .attributeMenu._img add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  443. .attributeMenu._input add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  444. .attributeMenu._ins add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  445. .attributeMenu._isindex add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  446. .attributeMenu._kbd add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  447. .attributeMenu._label add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  448. .attributeMenu._legend add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  449. .attributeMenu._li add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  450. .attributeMenu._link add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  451. .attributeMenu._menu add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  452. .attributeMenu._meta add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  453. .attributeMenu._object add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  454. .attributeMenu._ol add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  455. .attributeMenu._option add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  456. .attributeMenu._p add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  457. .attributeMenu._pre add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  458. .attributeMenu._q add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  459. .attributeMenu._s add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  460. .attributeMenu._samp add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  461. .attributeMenu._select add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  462. .attributeMenu._small add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  463. .attributeMenu._span add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  464. .attributeMenu._strike add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  465. .attributeMenu._strong add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  466. .attributeMenu._style add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  467. .attributeMenu._sub add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  468. .attributeMenu._sup add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  469. .attributeMenu._table add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  470. .attributeMenu._tbody add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  471. .attributeMenu._td add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  472. .attributeMenu._textarea add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  473. .attributeMenu._tfoot add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  474. .attributeMenu._th add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  475. .attributeMenu._thead add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  476. .attributeMenu._title add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  477. .attributeMenu._tr add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  478. .attributeMenu._tt add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  479. .attributeMenu._u add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  480. .attributeMenu._ul add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  481. .attributeMenu._var add cascade -label {dir (Schreibrichtung)} -menu .attributeMenu._a._dir
  482. .attributeMenu._form add cascade -label {enctype} -menu .attributeMenu._form._enctype
  483. # Definition .attributeMenu._form._enctype:
  484. menu .attributeMenu._form._enctype -tearoff 0
  485. .attributeMenu._form._enctype add command -label {text/plain} -command {setAttribute [focus] "enctype" "text/plain" insert}
  486. .attributeMenu._form._enctype add command -label {multipart/form-data} -command {setAttribute [focus] "enctype" "multipart/form-data" insert}
  487. .attributeMenu._label add cascade -label {for (logische Zuordnung)} -menu .attributeMenu._label._for
  488. # Definition .attributeMenu._label._for:
  489. menu .attributeMenu._label._for -tearoff 0
  490. .attributeMenu._label._for add command -label {id} -command {setAttribute [focus] "for" "id" insert}
  491. .attributeMenu._table add cascade -label {frame (Umrandungsstriche)} -menu .attributeMenu._table._frame
  492. # Definition .attributeMenu._table._frame:
  493. menu .attributeMenu._table._frame -tearoff 0
  494. .attributeMenu._table._frame add command -label {box} -command {setAttribute [focus] "frame" "box" insert}
  495. .attributeMenu._table._frame add command -label {void} -command {setAttribute [focus] "frame" "void" insert}
  496. .attributeMenu._table._frame add command -label {above} -command {setAttribute [focus] "frame" "above" insert}
  497. .attributeMenu._table._frame add command -label {below} -command {setAttribute [focus] "frame" "below" insert}
  498. .attributeMenu._table._frame add command -label {hsides} -command {setAttribute [focus] "frame" "hsides" insert}
  499. .attributeMenu._table._frame add command -label {vsides} -command {setAttribute [focus] "frame" "vsides" insert}
  500. .attributeMenu._table._frame add command -label {lhs} -command {setAttribute [focus] "frame" "lhs" insert}
  501. .attributeMenu._table._frame add command -label {rhs} -command {setAttribute [focus] "frame" "rhs" insert}
  502. .attributeMenu._table add cascade -label {height (H÷he)} -menu .attributeMenu._table._height
  503. # Definition .attributeMenu._table._height:
  504. menu .attributeMenu._table._height -tearoff 0
  505. .attributeMenu._table._height add command -label {50} -command {setAttribute [focus] "height" "50" insert}
  506. .attributeMenu._table._height add command -label {100} -command {setAttribute [focus] "height" "100" insert}
  507. .attributeMenu._table._height add command -label {150} -command {setAttribute [focus] "height" "150" insert}
  508. .attributeMenu._table._height add command -label {200} -command {setAttribute [focus] "height" "200" insert}
  509. .attributeMenu._td add cascade -label {height (H÷he)} -menu .attributeMenu._table._height
  510. .attributeMenu._th add cascade -label {height (H÷he)} -menu .attributeMenu._table._height
  511. .attributeMenu._img add cascade -label {height (H÷he)} -menu .attributeMenu._table._height
  512. .attributeMenu._a add cascade -label {href (Hyperlink-Verweisziel)} -menu .attributeMenu._a._href
  513. # Definition .attributeMenu._a._href:
  514. menu .attributeMenu._a._href -tearoff 0
  515. .attributeMenu._a._href add command -label {uri} -command {setAttribute [focus] "href" "uri" insert}
  516. .attributeMenu._a._href add command -label {[fileChoice]} -command {setAttribute [focus] "href" "[fileChoice]" insert}
  517. .attributeMenu._area add cascade -label {href (Hyperlink-Verweisziel)} -menu .attributeMenu._a._href
  518. .attributeMenu._link add cascade -label {href (Hyperlink-Verweisziel)} -menu .attributeMenu._a._href
  519. .attributeMenu._a add cascade -label {hreflang (Sprache des Hyperlink-Ziels)} -menu .attributeMenu._a._hreflang
  520. # Definition .attributeMenu._a._hreflang:
  521. menu .attributeMenu._a._hreflang -tearoff 0
  522. .attributeMenu._a._hreflang add command -label {de} -command {setAttribute [focus] "hreflang" "de" insert}
  523. .attributeMenu._a._hreflang add command -label {en} -command {setAttribute [focus] "hreflang" "en" insert}
  524. .attributeMenu._a._hreflang add command -label {fr} -command {setAttribute [focus] "hreflang" "fr" insert}
  525. .attributeMenu._a._hreflang add command -label {it} -command {setAttribute [focus] "hreflang" "it" insert}
  526. .attributeMenu._a._hreflang add command -label {es} -command {setAttribute [focus] "hreflang" "es" insert}
  527. .attributeMenu._area add cascade -label {hreflang (Sprache des Hyperlink-Ziels)} -menu .attributeMenu._a._hreflang
  528. .attributeMenu._link add cascade -label {hreflang (Sprache des Hyperlink-Ziels)} -menu .attributeMenu._a._hreflang
  529. .attributeMenu._img add cascade -label {hspace (horizontaler Abstand)} -menu .attributeMenu._img._hspace
  530. # Definition .attributeMenu._img._hspace:
  531. menu .attributeMenu._img._hspace -tearoff 0
  532. .attributeMenu._img._hspace add command -label {0} -command {setAttribute [focus] "hspace" "0" insert}
  533. .attributeMenu._img._hspace add command -label {1} -command {setAttribute [focus] "hspace" "1" insert}
  534. .attributeMenu._img._hspace add command -label {2} -command {setAttribute [focus] "hspace" "2" insert}
  535. .attributeMenu._img._hspace add command -label {3} -command {setAttribute [focus] "hspace" "3" insert}
  536. .attributeMenu._img._hspace add command -label {4} -command {setAttribute [focus] "hspace" "4" insert}
  537. .attributeMenu._img._hspace add command -label {5} -command {setAttribute [focus] "hspace" "5" insert}
  538. .attributeMenu._table add cascade -label {hspace (horizontaler Abstand)} -menu .attributeMenu._img._hspace
  539. .attributeMenu._marquee add cascade -label {hspace (horizontaler Abstand)} -menu .attributeMenu._img._hspace
  540. .attributeMenu._eval add cascade -label {html} -menu .attributeMenu._eval._html
  541. # Definition .attributeMenu._eval._html:
  542. menu .attributeMenu._eval._html -tearoff 0
  543. .attributeMenu._eval._html add command -label {html} -command {setAttribute [focus] "html" "html" insert}
  544. .attributeMenu._option add cascade -label {label (Sprechende Bezeichnung)} -menu .attributeMenu._option._label
  545. # Definition .attributeMenu._option._label:
  546. menu .attributeMenu._option._label -tearoff 0
  547. .attributeMenu._option._label add command -label {text} -command {setAttribute [focus] "label" "text" insert}
  548. .attributeMenu._a add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  549. # Definition .attributeMenu._a._lang:
  550. menu .attributeMenu._a._lang -tearoff 0
  551. .attributeMenu._a._lang add command -label {de} -command {setAttribute [focus] "lang" "de" insert}
  552. .attributeMenu._a._lang add command -label {en} -command {setAttribute [focus] "lang" "en" insert}
  553. .attributeMenu._a._lang add command -label {fr} -command {setAttribute [focus] "lang" "fr" insert}
  554. .attributeMenu._a._lang add command -label {es} -command {setAttribute [focus] "lang" "es" insert}
  555. .attributeMenu._a._lang add command -label {it} -command {setAttribute [focus] "lang" "it" insert}
  556. .attributeMenu._acronym add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  557. .attributeMenu._address add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  558. .attributeMenu._b add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  559. .attributeMenu._bdo add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  560. .attributeMenu._big add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  561. .attributeMenu._blockquote add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  562. .attributeMenu._body add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  563. .attributeMenu._button add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  564. .attributeMenu._caption add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  565. .attributeMenu._center add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  566. .attributeMenu._cite add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  567. .attributeMenu._code add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  568. .attributeMenu._col add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  569. .attributeMenu._colgroup add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  570. .attributeMenu._dd add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  571. .attributeMenu._del add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  572. .attributeMenu._dfn add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  573. .attributeMenu._dir add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  574. .attributeMenu._div add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  575. .attributeMenu._dl add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  576. .attributeMenu._dt add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  577. .attributeMenu._em add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  578. .attributeMenu._fieldset add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  579. .attributeMenu._form add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  580. .attributeMenu._h1 add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  581. .attributeMenu._h2 add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  582. .attributeMenu._h3 add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  583. .attributeMenu._h4 add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  584. .attributeMenu._h5 add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  585. .attributeMenu._h6 add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  586. .attributeMenu._head add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  587. .attributeMenu._html add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  588. .attributeMenu._i add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  589. .attributeMenu._img add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  590. .attributeMenu._input add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  591. .attributeMenu._ins add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  592. .attributeMenu._isindex add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  593. .attributeMenu._kbd add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  594. .attributeMenu._label add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  595. .attributeMenu._legend add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  596. .attributeMenu._li add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  597. .attributeMenu._link add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  598. .attributeMenu._menu add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  599. .attributeMenu._meta add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  600. .attributeMenu._object add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  601. .attributeMenu._ol add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  602. .attributeMenu._option add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  603. .attributeMenu._p add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  604. .attributeMenu._pre add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  605. .attributeMenu._q add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  606. .attributeMenu._s add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  607. .attributeMenu._samp add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  608. .attributeMenu._select add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  609. .attributeMenu._small add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  610. .attributeMenu._span add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  611. .attributeMenu._strike add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  612. .attributeMenu._strong add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  613. .attributeMenu._style add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  614. .attributeMenu._sub add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  615. .attributeMenu._sup add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  616. .attributeMenu._table add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  617. .attributeMenu._tbody add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  618. .attributeMenu._td add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  619. .attributeMenu._textarea add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  620. .attributeMenu._tfoot add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  621. .attributeMenu._th add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  622. .attributeMenu._thead add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  623. .attributeMenu._title add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  624. .attributeMenu._tr add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  625. .attributeMenu._tt add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  626. .attributeMenu._u add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  627. .attributeMenu._ul add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  628. .attributeMenu._var add cascade -label {lang (Sprache)} -menu .attributeMenu._a._lang
  629. .attributeMenu._body add cascade -label {link (Farbe nicht besuchter Links)} -menu .attributeMenu._body._link
  630. # Definition .attributeMenu._body._link:
  631. menu .attributeMenu._body._link -tearoff 0
  632. .attributeMenu._body._link add command -label {black} -command {setAttribute [focus] "link" "black" insert}
  633. .attributeMenu._body._link add command -label {maroon} -command {setAttribute [focus] "link" "maroon" insert}
  634. .attributeMenu._body._link add command -label {green} -command {setAttribute [focus] "link" "green" insert}
  635. .attributeMenu._body._link add command -label {olive} -command {setAttribute [focus] "link" "olive" insert}
  636. .attributeMenu._body._link add command -label {navy} -command {setAttribute [focus] "link" "navy" insert}
  637. .attributeMenu._body._link add command -label {purple} -command {setAttribute [focus] "link" "purple" insert}
  638. .attributeMenu._body._link add command -label {teal} -command {setAttribute [focus] "link" "teal" insert}
  639. .attributeMenu._body._link add command -label {gray} -command {setAttribute [focus] "link" "gray" insert}
  640. .attributeMenu._body._link add command -label {silver} -command {setAttribute [focus] "link" "silver" insert}
  641. .attributeMenu._body._link add command -label {red} -command {setAttribute [focus] "link" "red" insert}
  642. .attributeMenu._body._link add command -label {lime} -command {setAttribute [focus] "link" "lime" insert}
  643. .attributeMenu._body._link add command -label {yellow} -command {setAttribute [focus] "link" "yellow" insert}
  644. .attributeMenu._body._link add command -label {blue} -command {setAttribute [focus] "link" "blue" insert}
  645. .attributeMenu._body._link add command -label {fuchsia} -command {setAttribute [focus] "link" "fuchsia" insert}
  646. .attributeMenu._body._link add command -label {aqua} -command {setAttribute [focus] "link" "aqua" insert}
  647. .attributeMenu._body._link add command -label {white} -command {setAttribute [focus] "link" "white" insert}
  648. .attributeMenu._body._link add command -label {[colorChoice]} -command {setAttribute [focus] "link" "[colorChoice]" insert}
  649. .attributeMenu._input add cascade -label {maxlength (maximale Zeichenzahl)} -menu .attributeMenu._input._maxlength
  650. # Definition .attributeMenu._input._maxlength:
  651. menu .attributeMenu._input._maxlength -tearoff 0
  652. .attributeMenu._input._maxlength add command -label {30} -command {setAttribute [focus] "maxlength" "30" insert}
  653. .attributeMenu._input._maxlength add command -label {50} -command {setAttribute [focus] "maxlength" "50" insert}
  654. .attributeMenu._input._maxlength add command -label {100} -command {setAttribute [focus] "maxlength" "100" insert}
  655. .attributeMenu._form add cascade -label {maxlength (maximale Zeichenzahl)} -menu .attributeMenu._form._maxlength
  656. # Definition .attributeMenu._form._maxlength:
  657. menu .attributeMenu._form._maxlength -tearoff 0
  658. .attributeMenu._form._maxlength add command -label {1024} -command {setAttribute [focus] "maxlength" "1024" insert}
  659. .attributeMenu._form._maxlength add command -label {4096} -command {setAttribute [focus] "maxlength" "4096" insert}
  660. .attributeMenu._form._maxlength add command -label {1048576} -command {setAttribute [focus] "maxlength" "1048576" insert}
  661. .attributeMenu._form add cascade -label {method} -menu .attributeMenu._form._method
  662. # Definition .attributeMenu._form._method:
  663. menu .attributeMenu._form._method -tearoff 0
  664. .attributeMenu._form._method add command -label {get} -command {setAttribute [focus] "method" "get" insert}
  665. .attributeMenu._form._method add command -label {post} -command {setAttribute [focus] "method" "post" insert}
  666. .attributeMenu._select add cascade -label {multiple (Mehrfach-Auswahl)} -menu .attributeMenu._select._multiple
  667. # Definition .attributeMenu._select._multiple:
  668. menu .attributeMenu._select._multiple -tearoff 0
  669. .attributeMenu._select._multiple add command -label {multiple} -command {setAttribute [focus] "multiple" "multiple" insert}
  670. .attributeMenu._img add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  671. # Definition .attributeMenu._img._name:
  672. menu .attributeMenu._img._name -tearoff 0
  673. .attributeMenu._img._name add command -label {identifier} -command {setAttribute [focus] "name" "identifier" insert}
  674. .attributeMenu._a add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  675. .attributeMenu._map add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  676. .attributeMenu._param add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  677. .attributeMenu._input add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  678. .attributeMenu._textarea add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  679. .attributeMenu._select add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  680. .attributeMenu._button add cascade -label {name (ID vor HTML 4.0)} -menu .attributeMenu._img._name
  681. .attributeMenu._hr add cascade -label {noshade (flache Linie)} -menu .attributeMenu._hr._noshade
  682. # Definition .attributeMenu._hr._noshade:
  683. menu .attributeMenu._hr._noshade -tearoff 0
  684. .attributeMenu._hr._noshade add command -label {noshade} -command {setAttribute [focus] "noshade" "noshade" insert}
  685. .attributeMenu._td add cascade -label {nowrap (kein Zeilenumbruch)} -menu .attributeMenu._td._nowrap
  686. # Definition .attributeMenu._td._nowrap:
  687. menu .attributeMenu._td._nowrap -tearoff 0
  688. .attributeMenu._td._nowrap add command -label {nowrap} -command {setAttribute [focus] "nowrap" "nowrap" insert}
  689. .attributeMenu._th add cascade -label {nowrap (kein Zeilenumbruch)} -menu .attributeMenu._td._nowrap
  690. .attributeMenu._head add cascade -label {profile} -menu .attributeMenu._head._profile
  691. # Definition .attributeMenu._head._profile:
  692. menu .attributeMenu._head._profile -tearoff 0
  693. .attributeMenu._head._profile add command -label {(uri)} -command {setAttribute [focus] "profile" "(uri)" insert}
  694. .attributeMenu._head._profile add command -label {[fileChoice]} -command {setAttribute [focus] "profile" "[fileChoice]" insert}
  695. .attributeMenu._textarea add cascade -label {readonly (Nur-Lese-Feld)} -menu .attributeMenu._textarea._readonly
  696. # Definition .attributeMenu._textarea._readonly:
  697. menu .attributeMenu._textarea._readonly -tearoff 0
  698. .attributeMenu._textarea._readonly add command -label {readonly} -command {setAttribute [focus] "readonly" "readonly" insert}
  699. .attributeMenu._a add cascade -label {rel} -menu .attributeMenu._a._rel
  700. # Definition .attributeMenu._a._rel:
  701. menu .attributeMenu._a._rel -tearoff 0
  702. .attributeMenu._a._rel add command -label {contents} -command {setAttribute [focus] "rel" "contents" insert}
  703. .attributeMenu._a._rel add command -label {chapter} -command {setAttribute [focus] "rel" "chapter" insert}
  704. .attributeMenu._a._rel add command -label {section} -command {setAttribute [focus] "rel" "section" insert}
  705. .attributeMenu._a._rel add command -label {subsection} -command {setAttribute [focus] "rel" "subsection" insert}
  706. .attributeMenu._a._rel add command -label {index} -command {setAttribute [focus] "rel" "index" insert}
  707. .attributeMenu._a._rel add command -label {glossary} -command {setAttribute [focus] "rel" "glossary" insert}
  708. .attributeMenu._a._rel add command -label {appendix} -command {setAttribute [focus] "rel" "appendix" insert}
  709. .attributeMenu._a._rel add command -label {copyright} -command {setAttribute [focus] "rel" "copyright" insert}
  710. .attributeMenu._a._rel add command -label {next} -command {setAttribute [focus] "rel" "next" insert}
  711. .attributeMenu._a._rel add command -label {prev} -command {setAttribute [focus] "rel" "prev" insert}
  712. .attributeMenu._a._rel add command -label {start} -command {setAttribute [focus] "rel" "start" insert}
  713. .attributeMenu._a._rel add command -label {bookmark} -command {setAttribute [focus] "rel" "bookmark" insert}
  714. .attributeMenu._a._rel add command -label {alternate} -command {setAttribute [focus] "rel" "alternate" insert}
  715. .attributeMenu._a._rel add command -label {help} -command {setAttribute [focus] "rel" "help" insert}
  716. .attributeMenu._link add cascade -label {rel} -menu .attributeMenu._a._rel
  717. .attributeMenu._a add cascade -label {rev} -menu .attributeMenu._a._rev
  718. # Definition .attributeMenu._a._rev:
  719. menu .attributeMenu._a._rev -tearoff 0
  720. .attributeMenu._a._rev add command -label {contents} -command {setAttribute [focus] "rev" "contents" insert}
  721. .attributeMenu._a._rev add command -label {chapter} -command {setAttribute [focus] "rev" "chapter" insert}
  722. .attributeMenu._a._rev add command -label {section} -command {setAttribute [focus] "rev" "section" insert}
  723. .attributeMenu._a._rev add command -label {subsection} -command {setAttribute [focus] "rev" "subsection" insert}
  724. .attributeMenu._a._rev add command -label {index} -command {setAttribute [focus] "rev" "index" insert}
  725. .attributeMenu._a._rev add command -label {glossary} -command {setAttribute [focus] "rev" "glossary" insert}
  726. .attributeMenu._a._rev add command -label {appendix} -command {setAttribute [focus] "rev" "appendix" insert}
  727. .attributeMenu._a._rev add command -label {copyright} -command {setAttribute [focus] "rev" "copyright" insert}
  728. .attributeMenu._a._rev add command -label {next} -command {setAttribute [focus] "rev" "next" insert}
  729. .attributeMenu._a._rev add command -label {prev} -command {setAttribute [focus] "rev" "prev" insert}
  730. .attributeMenu._a._rev add command -label {start} -command {setAttribute [focus] "rev" "start" insert}
  731. .attributeMenu._a._rev add command -label {bookmark} -command {setAttribute [focus] "rev" "bookmark" insert}
  732. .attributeMenu._a._rev add command -label {alternate} -command {setAttribute [focus] "rev" "alternate" insert}
  733. .attributeMenu._textarea add cascade -label {rows (Zeilen)} -menu .attributeMenu._textarea._rows
  734. # Definition .attributeMenu._textarea._rows:
  735. menu .attributeMenu._textarea._rows -tearoff 0
  736. .attributeMenu._textarea._rows add command -label {10} -command {setAttribute [focus] "rows" "10" insert}
  737. .attributeMenu._textarea._rows add command -label {20} -command {setAttribute [focus] "rows" "20" insert}
  738. .attributeMenu._textarea._rows add command -label {30} -command {setAttribute [focus] "rows" "30" insert}
  739. .attributeMenu._td add cascade -label {rowspan (Zeilenⁿbergreifend)} -menu .attributeMenu._td._rowspan
  740. # Definition .attributeMenu._td._rowspan:
  741. menu .attributeMenu._td._rowspan -tearoff 0
  742. .attributeMenu._td._rowspan add command -label {1} -command {setAttribute [focus] "rowspan" "1" insert}
  743. .attributeMenu._td._rowspan add command -label {2} -command {setAttribute [focus] "rowspan" "2" insert}
  744. .attributeMenu._td._rowspan add command -label {3} -command {setAttribute [focus] "rowspan" "3" insert}
  745. .attributeMenu._td._rowspan add command -label {4} -command {setAttribute [focus] "rowspan" "4" insert}
  746. .attributeMenu._td._rowspan add command -label {5} -command {setAttribute [focus] "rowspan" "5" insert}
  747. .attributeMenu._table add cascade -label {rules (Trennlinien)} -menu .attributeMenu._table._rules
  748. # Definition .attributeMenu._table._rules:
  749. menu .attributeMenu._table._rules -tearoff 0
  750. .attributeMenu._table._rules add command -label {none} -command {setAttribute [focus] "rules" "none" insert}
  751. .attributeMenu._table._rules add command -label {rows} -command {setAttribute [focus] "rules" "rows" insert}
  752. .attributeMenu._table._rules add command -label {cols} -command {setAttribute [focus] "rules" "cols" insert}
  753. .attributeMenu._table._rules add command -label {groups} -command {setAttribute [focus] "rules" "groups" insert}
  754. .attributeMenu._table._rules add command -label {all} -command {setAttribute [focus] "rules" "all" insert}
  755. .attributeMenu._area add cascade -label {shape (Umriss-Art)} -menu .attributeMenu._area._shape
  756. # Definition .attributeMenu._area._shape:
  757. menu .attributeMenu._area._shape -tearoff 0
  758. .attributeMenu._area._shape add command -label {rect} -command {setAttribute [focus] "shape" "rect" insert}
  759. .attributeMenu._area._shape add command -label {circle} -command {setAttribute [focus] "shape" "circle" insert}
  760. .attributeMenu._area._shape add command -label {polygon} -command {setAttribute [focus] "shape" "polygon" insert}
  761. .attributeMenu._option add cascade -label {selected (vorselektiert)} -menu .attributeMenu._option._selected
  762. # Definition .attributeMenu._option._selected:
  763. menu .attributeMenu._option._selected -tearoff 0
  764. .attributeMenu._option._selected add command -label {selected} -command {setAttribute [focus] "selected" "selected" insert}
  765. .attributeMenu._hr add cascade -label {size (StΣrke)} -menu .attributeMenu._hr._size
  766. # Definition .attributeMenu._hr._size:
  767. menu .attributeMenu._hr._size -tearoff 0
  768. .attributeMenu._hr._size add command -label {1} -command {setAttribute [focus] "size" "1" insert}
  769. .attributeMenu._hr._size add command -label {2} -command {setAttribute [focus] "size" "2" insert}
  770. .attributeMenu._hr._size add command -label {3} -command {setAttribute [focus] "size" "3" insert}
  771. .attributeMenu._hr._size add command -label {4} -command {setAttribute [focus] "size" "4" insert}
  772. .attributeMenu._hr._size add command -label {5} -command {setAttribute [focus] "size" "5" insert}
  773. .attributeMenu._input add cascade -label {size (Gr÷▀e)} -menu .attributeMenu._input._size
  774. # Definition .attributeMenu._input._size:
  775. menu .attributeMenu._input._size -tearoff 0
  776. .attributeMenu._input._size add command -label {10} -command {setAttribute [focus] "size" "10" insert}
  777. .attributeMenu._input._size add command -label {20} -command {setAttribute [focus] "size" "20" insert}
  778. .attributeMenu._input._size add command -label {30} -command {setAttribute [focus] "size" "30" insert}
  779. .attributeMenu._col add cascade -label {span} -menu .attributeMenu._col._span
  780. # Definition .attributeMenu._col._span:
  781. menu .attributeMenu._col._span -tearoff 0
  782. .attributeMenu._col._span add command -label {1} -command {setAttribute [focus] "span" "1" insert}
  783. .attributeMenu._col._span add command -label {2} -command {setAttribute [focus] "span" "2" insert}
  784. .attributeMenu._col._span add command -label {3} -command {setAttribute [focus] "span" "3" insert}
  785. .attributeMenu._col._span add command -label {4} -command {setAttribute [focus] "span" "4" insert}
  786. .attributeMenu._col._span add command -label {5} -command {setAttribute [focus] "span" "5" insert}
  787. .attributeMenu._img add cascade -label {src (Quelldatei)} -menu .attributeMenu._img._src
  788. # Definition .attributeMenu._img._src:
  789. menu .attributeMenu._img._src -tearoff 0
  790. .attributeMenu._img._src add command -label {uri} -command {setAttribute [focus] "src" "uri" insert}
  791. .attributeMenu._img._src add command -label {[fileChoice]} -command {setAttribute [focus] "src" "[fileChoice]" insert}
  792. .attributeMenu._ol add cascade -label {start (Startwert)} -menu .attributeMenu._ol._start
  793. # Definition .attributeMenu._ol._start:
  794. menu .attributeMenu._ol._start -tearoff 0
  795. .attributeMenu._ol._start add command -label {1} -command {setAttribute [focus] "start" "1" insert}
  796. .attributeMenu._ol._start add command -label {10} -command {setAttribute [focus] "start" "10" insert}
  797. .attributeMenu._ol._start add command -label {100} -command {setAttribute [focus] "start" "100" insert}
  798. .attributeMenu._ol._start add command -label {1000} -command {setAttribute [focus] "start" "1000" insert}
  799. .attributeMenu._table add cascade -label {summary (Beschreibung fⁿr Browser ohne Grafik)} -menu .attributeMenu._table._summary
  800. # Definition .attributeMenu._table._summary:
  801. menu .attributeMenu._table._summary -tearoff 0
  802. .attributeMenu._table._summary add command -label {text} -command {setAttribute [focus] "summary" "text" insert}
  803. .attributeMenu._textarea add cascade -label {tabindex} -menu .attributeMenu._textarea._tabindex
  804. # Definition .attributeMenu._textarea._tabindex:
  805. menu .attributeMenu._textarea._tabindex -tearoff 0
  806. .attributeMenu._textarea._tabindex add command -label {0} -command {setAttribute [focus] "tabindex" "0" insert}
  807. .attributeMenu._textarea._tabindex add command -label {1} -command {setAttribute [focus] "tabindex" "1" insert}
  808. .attributeMenu._textarea._tabindex add command -label {2} -command {setAttribute [focus] "tabindex" "2" insert}
  809. .attributeMenu._textarea._tabindex add command -label {3} -command {setAttribute [focus] "tabindex" "3" insert}
  810. .attributeMenu._textarea._tabindex add command -label {4} -command {setAttribute [focus] "tabindex" "4" insert}
  811. .attributeMenu._textarea._tabindex add command -label {5} -command {setAttribute [focus] "tabindex" "5" insert}
  812. .attributeMenu._textarea._tabindex add command -label {6} -command {setAttribute [focus] "tabindex" "6" insert}
  813. .attributeMenu._button add cascade -label {tabindex} -menu .attributeMenu._textarea._tabindex
  814. .attributeMenu._input add cascade -label {tabindex} -menu .attributeMenu._textarea._tabindex
  815. .attributeMenu._select add cascade -label {tabindex} -menu .attributeMenu._textarea._tabindex
  816. .attributeMenu._area add cascade -label {tabindex} -menu .attributeMenu._textarea._tabindex
  817. .attributeMenu._a add cascade -label {target (Zielframe)} -menu .attributeMenu._a._target
  818. # Definition .attributeMenu._a._target:
  819. menu .attributeMenu._a._target -tearoff 0
  820. .attributeMenu._a._target add command -label {_self} -command {setAttribute [focus] "target" "_self" insert}
  821. .attributeMenu._a._target add command -label {_blank} -command {setAttribute [focus] "target" "_blank" insert}
  822. .attributeMenu._a._target add command -label {_top} -command {setAttribute [focus] "target" "_top" insert}
  823. .attributeMenu._area add cascade -label {target (Zielframe)} -menu .attributeMenu._a._target
  824. .attributeMenu._link add cascade -label {target (Zielframe)} -menu .attributeMenu._a._target
  825. .attributeMenu._form add cascade -label {target (Zielframe)} -menu .attributeMenu._a._target
  826. .attributeMenu._body add cascade -label {text (Textfarbe)} -menu .attributeMenu._body._text
  827. # Definition .attributeMenu._body._text:
  828. menu .attributeMenu._body._text -tearoff 0
  829. .attributeMenu._body._text add command -label {black} -command {setAttribute [focus] "text" "black" insert}
  830. .attributeMenu._body._text add command -label {maroon} -command {setAttribute [focus] "text" "maroon" insert}
  831. .attributeMenu._body._text add command -label {green} -command {setAttribute [focus] "text" "green" insert}
  832. .attributeMenu._body._text add command -label {olive} -command {setAttribute [focus] "text" "olive" insert}
  833. .attributeMenu._body._text add command -label {navy} -command {setAttribute [focus] "text" "navy" insert}
  834. .attributeMenu._body._text add command -label {purple} -command {setAttribute [focus] "text" "purple" insert}
  835. .attributeMenu._body._text add command -label {teal} -command {setAttribute [focus] "text" "teal" insert}
  836. .attributeMenu._body._text add command -label {gray} -command {setAttribute [focus] "text" "gray" insert}
  837. .attributeMenu._body._text add command -label {silver} -command {setAttribute [focus] "text" "silver" insert}
  838. .attributeMenu._body._text add command -label {red} -command {setAttribute [focus] "text" "red" insert}
  839. .attributeMenu._body._text add command -label {lime} -command {setAttribute [focus] "text" "lime" insert}
  840. .attributeMenu._body._text add command -label {yellow} -command {setAttribute [focus] "text" "yellow" insert}
  841. .attributeMenu._body._text add command -label {blue} -command {setAttribute [focus] "text" "blue" insert}
  842. .attributeMenu._body._text add command -label {fuchsia} -command {setAttribute [focus] "text" "fuchsia" insert}
  843. .attributeMenu._body._text add command -label {aqua} -command {setAttribute [focus] "text" "aqua" insert}
  844. .attributeMenu._body._text add command -label {white} -command {setAttribute [focus] "text" "white" insert}
  845. .attributeMenu._body._text add command -label {[colorChoice]} -command {setAttribute [focus] "text" "[colorChoice]" insert}
  846. .attributeMenu._a add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  847. # Definition .attributeMenu._a._title:
  848. menu .attributeMenu._a._title -tearoff 0
  849. .attributeMenu._a._title add command -label {text} -command {setAttribute [focus] "title" "text" insert}
  850. .attributeMenu._acronym add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  851. .attributeMenu._address add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  852. .attributeMenu._b add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  853. .attributeMenu._big add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  854. .attributeMenu._blockquote add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  855. .attributeMenu._body add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  856. .attributeMenu._br add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  857. .attributeMenu._button add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  858. .attributeMenu._caption add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  859. .attributeMenu._center add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  860. .attributeMenu._cite add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  861. .attributeMenu._code add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  862. .attributeMenu._col add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  863. .attributeMenu._colgroup add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  864. .attributeMenu._dd add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  865. .attributeMenu._del add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  866. .attributeMenu._dfn add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  867. .attributeMenu._dir add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  868. .attributeMenu._div add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  869. .attributeMenu._dl add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  870. .attributeMenu._dt add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  871. .attributeMenu._em add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  872. .attributeMenu._fieldset add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  873. .attributeMenu._form add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  874. .attributeMenu._h1 add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  875. .attributeMenu._h2 add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  876. .attributeMenu._h3 add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  877. .attributeMenu._h4 add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  878. .attributeMenu._h5 add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  879. .attributeMenu._h6 add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  880. .attributeMenu._hr add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  881. .attributeMenu._i add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  882. .attributeMenu._img add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  883. .attributeMenu._input add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  884. .attributeMenu._ins add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  885. .attributeMenu._isindex add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  886. .attributeMenu._kbd add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  887. .attributeMenu._label add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  888. .attributeMenu._legend add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  889. .attributeMenu._li add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  890. .attributeMenu._link add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  891. .attributeMenu._map add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  892. .attributeMenu._menu add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  893. .attributeMenu._object add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  894. .attributeMenu._ol add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  895. .attributeMenu._option add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  896. .attributeMenu._p add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  897. .attributeMenu._pre add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  898. .attributeMenu._q add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  899. .attributeMenu._s add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  900. .attributeMenu._samp add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  901. .attributeMenu._select add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  902. .attributeMenu._small add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  903. .attributeMenu._span add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  904. .attributeMenu._strike add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  905. .attributeMenu._strong add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  906. .attributeMenu._sub add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  907. .attributeMenu._sup add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  908. .attributeMenu._table add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  909. .attributeMenu._tbody add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  910. .attributeMenu._td add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  911. .attributeMenu._textarea add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  912. .attributeMenu._tfoot add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  913. .attributeMenu._th add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  914. .attributeMenu._thead add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  915. .attributeMenu._tr add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  916. .attributeMenu._tt add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  917. .attributeMenu._u add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  918. .attributeMenu._ul add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  919. .attributeMenu._var add cascade -label {title (Titel)} -menu .attributeMenu._a._title
  920. .attributeMenu._ul add cascade -label {type (Listenzeichen)} -menu .attributeMenu._ul._type
  921. # Definition .attributeMenu._ul._type:
  922. menu .attributeMenu._ul._type -tearoff 0
  923. .attributeMenu._ul._type add command -label {circle} -command {setAttribute [focus] "type" "circle" insert}
  924. .attributeMenu._ul._type add command -label {square} -command {setAttribute [focus] "type" "square" insert}
  925. .attributeMenu._ul._type add command -label {disc} -command {setAttribute [focus] "type" "disc" insert}
  926. .attributeMenu._ol add cascade -label {type (AufzΣhlungsart)} -menu .attributeMenu._ol._type
  927. # Definition .attributeMenu._ol._type:
  928. menu .attributeMenu._ol._type -tearoff 0
  929. .attributeMenu._ol._type add command -label {1} -command {setAttribute [focus] "type" "1" insert}
  930. .attributeMenu._ol._type add command -label {a} -command {setAttribute [focus] "type" "a" insert}
  931. .attributeMenu._ol._type add command -label {A} -command {setAttribute [focus] "type" "A" insert}
  932. .attributeMenu._ol._type add command -label {i} -command {setAttribute [focus] "type" "i" insert}
  933. .attributeMenu._ol._type add command -label {I} -command {setAttribute [focus] "type" "I" insert}
  934. .attributeMenu._li add cascade -label {type (Listenart)} -menu .attributeMenu._li._type
  935. # Definition .attributeMenu._li._type:
  936. menu .attributeMenu._li._type -tearoff 0
  937. .attributeMenu._li._type add command -label {circle} -command {setAttribute [focus] "type" "circle" insert}
  938. .attributeMenu._li._type add command -label {square} -command {setAttribute [focus] "type" "square" insert}
  939. .attributeMenu._li._type add command -label {disc} -command {setAttribute [focus] "type" "disc" insert}
  940. .attributeMenu._li._type add command -label {1} -command {setAttribute [focus] "type" "1" insert}
  941. .attributeMenu._li._type add command -label {a} -command {setAttribute [focus] "type" "a" insert}
  942. .attributeMenu._li._type add command -label {A} -command {setAttribute [focus] "type" "A" insert}
  943. .attributeMenu._li._type add command -label {i} -command {setAttribute [focus] "type" "i" insert}
  944. .attributeMenu._li._type add command -label {I} -command {setAttribute [focus] "type" "I" insert}
  945. .attributeMenu._input add cascade -label {type} -menu .attributeMenu._input._type
  946. # Definition .attributeMenu._input._type:
  947. menu .attributeMenu._input._type -tearoff 0
  948. .attributeMenu._input._type add command -label {button} -command {setAttribute [focus] "type" "button" insert}
  949. .attributeMenu._input._type add command -label {checkbox} -command {setAttribute [focus] "type" "checkbox" insert}
  950. .attributeMenu._input._type add command -label {file} -command {setAttribute [focus] "type" "file" insert}
  951. .attributeMenu._input._type add command -label {hidden} -command {setAttribute [focus] "type" "hidden" insert}
  952. .attributeMenu._input._type add command -label {image} -command {setAttribute [focus] "type" "image" insert}
  953. .attributeMenu._input._type add command -label {password} -command {setAttribute [focus] "type" "password" insert}
  954. .attributeMenu._input._type add command -label {radio} -command {setAttribute [focus] "type" "radio" insert}
  955. .attributeMenu._input._type add command -label {reset} -command {setAttribute [focus] "type" "reset" insert}
  956. .attributeMenu._input._type add command -label {submit} -command {setAttribute [focus] "type" "submit" insert}
  957. .attributeMenu._input._type add command -label {text} -command {setAttribute [focus] "type" "text" insert}
  958. .attributeMenu._button add cascade -label {type} -menu .attributeMenu._button._type
  959. # Definition .attributeMenu._button._type:
  960. menu .attributeMenu._button._type -tearoff 0
  961. .attributeMenu._button._type add command -label {button} -command {setAttribute [focus] "type" "button" insert}
  962. .attributeMenu._button._type add command -label {submit} -command {setAttribute [focus] "type" "submit" insert}
  963. .attributeMenu._button._type add command -label {reset} -command {setAttribute [focus] "type" "reset" insert}
  964. .attributeMenu._img add cascade -label {usemap (verwendete Image-Map)} -menu .attributeMenu._img._usemap
  965. # Definition .attributeMenu._img._usemap:
  966. menu .attributeMenu._img._usemap -tearoff 0
  967. .attributeMenu._img._usemap add command -label {#id} -command {setAttribute [focus] "usemap" "#id" insert}
  968. .attributeMenu._col add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  969. # Definition .attributeMenu._col._valign:
  970. menu .attributeMenu._col._valign -tearoff 0
  971. .attributeMenu._col._valign add command -label {top} -command {setAttribute [focus] "valign" "top" insert}
  972. .attributeMenu._col._valign add command -label {middle} -command {setAttribute [focus] "valign" "middle" insert}
  973. .attributeMenu._col._valign add command -label {bottom} -command {setAttribute [focus] "valign" "bottom" insert}
  974. .attributeMenu._col._valign add command -label {baseline} -command {setAttribute [focus] "valign" "baseline" insert}
  975. .attributeMenu._colgroup add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  976. .attributeMenu._tbody add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  977. .attributeMenu._td add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  978. .attributeMenu._tfoot add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  979. .attributeMenu._th add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  980. .attributeMenu._thead add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  981. .attributeMenu._tr add cascade -label {valign (Vertikale Ausrichtung)} -menu .attributeMenu._col._valign
  982. .attributeMenu._li add cascade -label {value (ZΣhlerstand)} -menu .attributeMenu._li._value
  983. # Definition .attributeMenu._li._value:
  984. menu .attributeMenu._li._value -tearoff 0
  985. .attributeMenu._li._value add command -label {1} -command {setAttribute [focus] "value" "1" insert}
  986. .attributeMenu._li._value add command -label {10} -command {setAttribute [focus] "value" "10" insert}
  987. .attributeMenu._li._value add command -label {100} -command {setAttribute [focus] "value" "100" insert}
  988. .attributeMenu._param add cascade -label {value} -menu .attributeMenu._param._value
  989. # Definition .attributeMenu._param._value:
  990. menu .attributeMenu._param._value -tearoff 0
  991. .attributeMenu._param._value add command -label {text} -command {setAttribute [focus] "value" "text" insert}
  992. .attributeMenu._button add cascade -label {value} -menu .attributeMenu._param._value
  993. .attributeMenu._option add cascade -label {value} -menu .attributeMenu._param._value
  994. .attributeMenu._input add cascade -label {value} -menu .attributeMenu._input._value
  995. # Definition .attributeMenu._input._value:
  996. menu .attributeMenu._input._value -tearoff 0
  997. .attributeMenu._input._value add command -label {checked} -command {setAttribute [focus] "value" "checked" insert}
  998. .attributeMenu._input._value add command -label {text} -command {setAttribute [focus] "value" "text" insert}
  999. .attributeMenu._body add cascade -label {vlink (Farbe besuchter Ziele)} -menu .attributeMenu._body._vlink
  1000. # Definition .attributeMenu._body._vlink:
  1001. menu .attributeMenu._body._vlink -tearoff 0
  1002. .attributeMenu._body._vlink add command -label {black} -command {setAttribute [focus] "vlink" "black" insert}
  1003. .attributeMenu._body._vlink add command -label {maroon} -command {setAttribute [focus] "vlink" "maroon" insert}
  1004. .attributeMenu._body._vlink add command -label {green} -command {setAttribute [focus] "vlink" "green" insert}
  1005. .attributeMenu._body._vlink add command -label {olive} -command {setAttribute [focus] "vlink" "olive" insert}
  1006. .attributeMenu._body._vlink add command -label {navy} -command {setAttribute [focus] "vlink" "navy" insert}
  1007. .attributeMenu._body._vlink add command -label {purple} -command {setAttribute [focus] "vlink" "purple" insert}
  1008. .attributeMenu._body._vlink add command -label {teal} -command {setAttribute [focus] "vlink" "teal" insert}
  1009. .attributeMenu._body._vlink add command -label {gray} -command {setAttribute [focus] "vlink" "gray" insert}
  1010. .attributeMenu._body._vlink add command -label {silver} -command {setAttribute [focus] "vlink" "silver" insert}
  1011. .attributeMenu._body._vlink add command -label {red} -command {setAttribute [focus] "vlink" "red" insert}
  1012. .attributeMenu._body._vlink add command -label {lime} -command {setAttribute [focus] "vlink" "lime" insert}
  1013. .attributeMenu._body._vlink add command -label {yellow} -command {setAttribute [focus] "vlink" "yellow" insert}
  1014. .attributeMenu._body._vlink add command -label {blue} -command {setAttribute [focus] "vlink" "blue" insert}
  1015. .attributeMenu._body._vlink add command -label {fuchsia} -command {setAttribute [focus] "vlink" "fuchsia" insert}
  1016. .attributeMenu._body._vlink add command -label {aqua} -command {setAttribute [focus] "vlink" "aqua" insert}
  1017. .attributeMenu._body._vlink add command -label {white} -command {setAttribute [focus] "vlink" "white" insert}
  1018. .attributeMenu._body._vlink add command -label {[colorChoice]} -command {setAttribute [focus] "vlink" "[colorChoice]" insert}
  1019. .attributeMenu._img add cascade -label {vspace (Vertikaler Abstand)} -menu .attributeMenu._img._vspace
  1020. # Definition .attributeMenu._img._vspace:
  1021. menu .attributeMenu._img._vspace -tearoff 0
  1022. .attributeMenu._img._vspace add command -label {0} -command {setAttribute [focus] "vspace" "0" insert}
  1023. .attributeMenu._img._vspace add command -label {1} -command {setAttribute [focus] "vspace" "1" insert}
  1024. .attributeMenu._img._vspace add command -label {2} -command {setAttribute [focus] "vspace" "2" insert}
  1025. .attributeMenu._img._vspace add command -label {3} -command {setAttribute [focus] "vspace" "3" insert}
  1026. .attributeMenu._img._vspace add command -label {4} -command {setAttribute [focus] "vspace" "4" insert}
  1027. .attributeMenu._img._vspace add command -label {5} -command {setAttribute [focus] "vspace" "5" insert}
  1028. .attributeMenu._table add cascade -label {vspace (Vertikaler Abstand)} -menu .attributeMenu._img._vspace
  1029. .attributeMenu._table add cascade -label {width (Breite)} -menu .attributeMenu._table._width
  1030. # Definition .attributeMenu._table._width:
  1031. menu .attributeMenu._table._width -tearoff 0
  1032. .attributeMenu._table._width add command -label {100} -command {setAttribute [focus] "width" "100" insert}
  1033. .attributeMenu._table._width add command -label {200} -command {setAttribute [focus] "width" "200" insert}
  1034. .attributeMenu._table._width add command -label {590} -command {setAttribute [focus] "width" "590" insert}
  1035. .attributeMenu._table._width add command -label {20%} -command {setAttribute [focus] "width" "20%" insert}
  1036. .attributeMenu._table._width add command -label {25%} -command {setAttribute [focus] "width" "25%" insert}
  1037. .attributeMenu._table._width add command -label {33%} -command {setAttribute [focus] "width" "33%" insert}
  1038. .attributeMenu._table._width add command -label {50%} -command {setAttribute [focus] "width" "50%" insert}
  1039. .attributeMenu._table._width add command -label {100%} -command {setAttribute [focus] "width" "100%" insert}
  1040. .attributeMenu._td add cascade -label {width (Breite)} -menu .attributeMenu._table._width
  1041. .attributeMenu._th add cascade -label {width (Breite)} -menu .attributeMenu._table._width
  1042. .attributeMenu._img add cascade -label {width (Breite)} -menu .attributeMenu._table._width
  1043. .attributeMenu._hr add cascade -label {width (Breite)} -menu .attributeMenu._table._width
  1044. .attributeMenu._col add cascade -label {width (Breite)} -menu .attributeMenu._table._width
  1045. .attributeMenu._textarea add cascade -label {wrap (Zeilenumbruch)} -menu .attributeMenu._textarea._wrap
  1046. # Definition .attributeMenu._textarea._wrap:
  1047. menu .attributeMenu._textarea._wrap -tearoff 0
  1048. .attributeMenu._textarea._wrap add command -label {virtual} -command {setAttribute [focus] "wrap" "virtual" insert}
  1049. .attributeMenu._textarea._wrap add command -label {physical} -command {setAttribute [focus] "wrap" "physical" insert}
  1050. .attributeMenu._textarea._wrap add command -label {off} -command {setAttribute [focus] "wrap" "off" insert}
  1051. .attributeMenu._tag add cascade -label {label} -menu .attributeMenu._tag._label
  1052. # Definition .attributeMenu._tag._label:
  1053. menu .attributeMenu._tag._label -tearoff 0
  1054. .attributeMenu._tag._label add command -label {Sprechende Bezeichnung} -command {setAttribute [focus] "label" "Sprechende Bezeichnung" insert}
  1055. .attributeMenu._attribute add cascade -label {label} -menu .attributeMenu._tag._label
  1056. .attributeMenu._cascade add cascade -label {label} -menu .attributeMenu._tag._label
  1057. .attributeMenu._command add cascade -label {label} -menu .attributeMenu._tag._label
  1058. .attributeMenu._existingmenu add cascade -label {label} -menu .attributeMenu._tag._label
  1059. .attributeMenu._existingattmenu add cascade -label {label} -menu .attributeMenu._tag._label
  1060. .attributeMenu._tag add cascade -label {tagname} -menu .attributeMenu._tag._tagname
  1061. # Definition .attributeMenu._tag._tagname:
  1062. menu .attributeMenu._tag._tagname -tearoff 0
  1063. .attributeMenu._tag._tagname add command -label {Tag-Name} -command {setAttribute [focus] "tagname" "Tag-Name" insert}
  1064. .attributeMenu._tag add cascade -label {semantics} -menu .attributeMenu._tag._semantics
  1065. # Definition .attributeMenu._tag._semantics:
  1066. menu .attributeMenu._tag._semantics -tearoff 0
  1067. .attributeMenu._tag._semantics add command -label {headline} -command {setAttribute [focus] "semantics" "headline" insert}
  1068. .attributeMenu._tag._semantics add command -label {linebreak} -command {setAttribute [focus] "semantics" "linebreak" insert}
  1069. .attributeMenu._tag._semantics add command -label {structonly} -command {setAttribute [focus] "semantics" "structonly" insert}
  1070. .attributeMenu._tag._semantics add command -label {textbutton} -command {setAttribute [focus] "semantics" "textbutton" insert}
  1071. .attributeMenu._tag._semantics add command -label {paragraphcombo} -command {setAttribute [focus] "semantics" "paragraphcombo" insert}
  1072. .attributeMenu._tag add cascade -label {empty} -menu .attributeMenu._tag._empty
  1073. # Definition .attributeMenu._tag._empty:
  1074. menu .attributeMenu._tag._empty -tearoff 0
  1075. .attributeMenu._tag._empty add command -label {empty} -command {setAttribute [focus] "empty" "empty" insert}
  1076. .attributeMenu._cascade add cascade -label {id} -menu .attributeMenu._cascade._id
  1077. # Definition .attributeMenu._cascade._id:
  1078. menu .attributeMenu._cascade._id -tearoff 0
  1079. .attributeMenu._cascade._id add command -label {.attributeMenu} -command {setAttribute [focus] "id" ".attributeMenu" insert}
  1080. .attributeMenu._cascade._id add command -label {.attributeMenu.child} -command {setAttribute [focus] "id" ".attributeMenu.child" insert}
  1081. .attributeMenu._cascade._id add command -label {.tagMenu} -command {setAttribute [focus] "id" ".tagMenu" insert}
  1082. .attributeMenu._existingattmenu add cascade -label {id} -menu .attributeMenu._existingattmenu._id
  1083. # Definition .attributeMenu._existingattmenu._id:
  1084. menu .attributeMenu._existingattmenu._id -tearoff 0
  1085. .attributeMenu._existingattmenu._id add command -label {.attributeDateTimeMenu} -command {setAttribute [focus] "id" ".attributeDateTimeMenu" insert}
  1086. .attributeMenu._command add cascade -label {procedure} -menu .attributeMenu._command._procedure
  1087. # Definition .attributeMenu._command._procedure:
  1088. menu .attributeMenu._command._procedure -tearoff 0
  1089. .attributeMenu._command._procedure add command -label {insertNewTag $::EditWindow::activeTextWindow} -command {setAttribute [focus] "procedure" "insertNewTag $::EditWindow::activeTextWindow" insert}
  1090. .attributeMenu._existingmenu add cascade -label {menu} -menu .attributeMenu._existingmenu._menu
  1091. # Definition .attributeMenu._existingmenu._menu:
  1092. menu .attributeMenu._existingmenu._menu -tearoff 0
  1093. .attributeMenu._existingmenu._menu add command -label {.tableconstruction} -command {setAttribute [focus] "menu" ".tableconstruction" insert}
  1094. .attributeMenu._attribute add cascade -label {name} -menu .attributeMenu._attribute._name
  1095. # Definition .attributeMenu._attribute._name:
  1096. menu .attributeMenu._attribute._name -tearoff 0
  1097. .attributeMenu._attribute._name add command -label {Attributname} -command {setAttribute [focus] "name" "Attributname" insert}
  1098. .attributeMenu._attribute add cascade -label {values} -menu .attributeMenu._attribute._values
  1099. # Definition .attributeMenu._attribute._values:
  1100. menu .attributeMenu._attribute._values -tearoff 0
  1101. .attributeMenu._attribute._values add command -label {Attributwerte} -command {setAttribute [focus] "values" "Attributwerte" insert}
  1102.