diff options
Diffstat (limited to 'files/ja/archive/mozilla/xul/editor/index.html')
-rw-r--r-- | files/ja/archive/mozilla/xul/editor/index.html | 129 |
1 files changed, 0 insertions, 129 deletions
diff --git a/files/ja/archive/mozilla/xul/editor/index.html b/files/ja/archive/mozilla/xul/editor/index.html deleted file mode 100644 index 0ef30fba44..0000000000 --- a/files/ja/archive/mozilla/xul/editor/index.html +++ /dev/null @@ -1,129 +0,0 @@ ---- -title: editor -slug: Archive/Mozilla/XUL/editor -tags: - - XUL Elements - - XUL Reference -translation_of: Archive/Mozilla/XUL/editor ---- -<div class="noinclude"><span class="breadcrumbs XULRef_breadcrumbs"> - « <a href="/ja/docs/XUL/XUL_Reference">XUL リファレンス HOME</a> [ - <a href="#Examples">例</a> | - <a href="#Attributes">属性</a> | - <a href="#Properties">プロパティ</a> | - <a href="#Methods">メソッド</a> | - <a href="#Related">関連項目</a> ] -</span></div> -<p>編集可能なドキュメントが含まれるフレーム。editor ドキュメントを作成するには、<code id="a-editortype"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/editortype">editortype</a></code> 属性の値を <code>html</code> に設定します。Mozilla は HTML editor と plaintext editor の二通りの editor を提供しています。editor は編集ユーザインタフェースを提供しないため、あなた自身がそれを備えることになります。しかし、テキスト編集および画像のサイズ変更、table の行とセルの編集は可能です。editor に <code id="a-editortype"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/editortype">editortype</a></code> 属性を設定しないときは、<span id="m-makeEditable"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/makeEditable">makeEditable</a></code></span> メソッドを使用して編集を有効にしなければなりません。</p> -<p>editor に読み込ませる document を指定するには <code id="a-src"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> 属性を使用します。しかし、<code id="a-src"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> 属性をはじめから XUL ファイル内の <code>editor</code> タグに指定しておくと問題が起こるため、次のいずれかのようにしてください:</p> -<ol> <li>外側の window が読み込まれた後、editor 上に <code id="a-src"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> 属性を設定する。例えば <code>onload</code> ハンドラ内など。また、ファイルダイアログからユーザが選択したものを <code id="a-src"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> 属性に設定するかもしれません。この場合は editor 上に editortype 属性を設定してください。</li> <li>editor に読み込まれた document を編集可能にするために <span id="m-makeEditable"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/makeEditable">makeEditable</a></code></span> メソッドを呼び出す。</li> <li>editor に読み込まれた document の design モードを有効にする。</li> -</ol> -<p>新しいドキュメントを編集するには、<code>about:blank</code> に <code id="a-src"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> 属性を設定します。</p> -<p>editor の多くの機能へアクセスするには、あなたのアプリケーションが拡張機能や chrome の一部でなければなりません。Web サーバからの URL を通して読み込まれる XUL アプリケーションは、editor のほとんどの機能へアクセスすることができません。</p> -<p>Gecko の埋め込みリッチテキストエディタについての詳しい情報は、<a href="/ja/Rich-Text_Editing_in_Mozilla" title="ja/Rich-Text_Editing_in_Mozilla">Rich text editing</a> および <a href="/ja/Midas" title="ja/Midas">Midas</a> ページを参照してください。</p> -<dl><dt> 属性 </dt><dd> <a href="#a-editortype">editortype</a>, <a href="#a-src">src</a>, <a href="#a-editor.type">type</a> </dd></dl> <dl><dt> プロパティ </dt><dd> <a href="#p-accessibleType">accessibleType</a>, <a href="#p-commandManager">commandManager</a>, <a href="#p-contentDocument">contentDocument</a>, <a href="#p-contentWindow">contentWindow</a>, <a href="#p-docShell">docShell</a>, <a href="#p-editingSession">editingSession</a>, <a href="#p-editortype">editortype</a>, <a href="#p-webBrowserFind">webBrowserFind</a>, <a href="#p-webNavigation">webNavigation</a> </dd></dl> <dl><dt> メソッド </dt><dd> <a href="#m-getEditor">getEditor</a>, <a href="#m-getHTMLEditor">getHTMLEditor</a>, <a href="#m-makeEditable">makeEditable</a> </dd></dl> -<h3 id="Examples" name="Examples">例</h3> -<p>この例は、読み込まれた HTML ドキュメントの designMode プロパティを設定して editor を編集可能にする方法です:</p> -<pre><script language="javascript"> -function initEditor(){ - // この関数は editor をセットアップするために呼び出される - var editor = document.getElementById("myEditor"); - editor.contentDocument.designMode = 'on'; -} -</script> -<editor id="myEditor" editortype="html" src="about:blank" flex="1" type="content-primary"/> -</pre> -<p>一度編集可能になると、document は特別な書式設定を持ち、document.execCommand メソッドを使用して他の HTML 片をそこに追加することができます:</p> -<pre> var editor = document.getElementById("myEditor"); - - // 現在の選択範囲をボールド体に切り替える - editor.contentDocument.execCommand("bold", false, null); -</pre> -<p>詳しい command 文字列は <a href="/ja/Midas" title="ja/Midas">Midas</a> の概要をご覧ください。</p> -<h3 id="Attributes" name="Attributes">属性</h3> -<p> </p><div id="a-editortype"> - -<dl><dt> <code id="a-editortype"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/editortype">editortype</a></code> </dt><dd> 型: <em>下記の値のいずれか一つ</em> </dd><dd> 使用する editor の種類。この値は、editor 内の document の content type に依存して優先されます。 </dd></dl> -<ul> <li><code>html</code>: HTML エディタ。</li> <li><code>text</code>: テキストのみのエディタ。</li> -</ul> - -</div> <div id="a-src"> - -<dl> - <dt> - <code id="a-src"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code></dt> - <dd> - 型: <em>URL</em></dd> - <dd> - 要素内に表示するコンテンツの URL。</dd> -</dl> - -</div> <div id="a-editor.type"> - -<dl><dt> <code id="a-editor.type"><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Attribute/editor.type">type</a></code> </dt><dd> 型: <em>文字列型</em> </dd><dd> 文字列を <code>content-primary</code> に設定すると、この editor はページの最初のコンテンツになります。最初のコンテンツを持つ window は、<code>window.content</code> を使用して、より便利に検索することができます。 </dd></dl> - -</div> -<h3 id="Properties" name="Properties">プロパティ</h3> -<p> </p><div id="p-accessibleType"> -<dl><dt> <code><span><a href="https://developer.mozilla.org/ja/docs/XUL/Property/accessibleType">accessibleType</a></span></code> </dt><dd> 型: <em>整数型</em> </dd><dd> 要素の accessibility オブジェクトの種類を示す値。 </dd></dl> - -</div> <div id="p-commandManager"> -<dl> - <dt> - <code><span><a href="http://api/ja/docs/XUL/Property/commandManager">commandManager</a></span></code></dt> - <dd> - 型: <em><a href="/ja/NsICommandManager" title="ja/NsICommandManager">nsICommandManager</a></em></dd> - <dd> - command manager は editor 上の操作を扱います。</dd> -</dl></div> <div id="p-contentDocument"> -<dl><dt> <code><span><a href="http://api/ja/docs/XUL/Property/contentDocument">contentDocument</a></span></code> </dt><dd> 型: <em>document</em> </dd><dd> この読み取り専用のプロパティは要素内の document オブジェクトを含みます。 </dd></dl> -</div> <div id="p-contentWindow"> -<dl> - <dt> - <code><span><a href="https://developer.mozilla.org/ja/docs/XUL/Property/contentWindow">contentWindow</a></span></code></dt> - <dd> - 型: <em>window</em></dd> - <dd> - この読み取り専用のプロパティは要素内の window オブジェクトを含みます。</dd> -</dl> - -<p> </p></div> <div id="p-docShell"> -<dl><dt> <code><span><a href="http://api/ja/docs/XUL/Property/docShell">docShell</a></span></code> </dt><dd> 型: <em><a href="/ja/NsIDocShell" title="ja/NsIDocShell">nsIDocShell</a></em> </dd><dd> この読み取り専用のプロパティは document の <a href="/ja/NsIDocShell" title="ja/NsIDocShell">nsIDocShell</a> オブジェクトを含みます。 </dd></dl> -</div> <div id="p-editingSession"> -<dl><dt> <code><span><a href="http://api/ja/docs/XUL/Property/editingSession">editingSession</a></span></code> </dt><dd> 型: <em><a href="/ja/NsIEditingSession" title="ja/NsIEditingSession">nsIEditingSession</a></em> </dd><dd> editor の初期化に使用される editing session。通常、これを使用する必要はありません。 </dd></dl> -</div> <div id="p-editortype"> -<dl><dt> <code><span><a href="http://api/ja/docs/XUL/Property/editortype">editortype</a></span></code> </dt><dd> 型: <em>下記の値のいずれか一つ</em> </dd><dd> 使用する editor の種類。この値は、editor 内の document の content type に依存して優先されます。 </dd></dl> -<ul> <li><code>html</code>: HTML エディタ。</li> <li><code>text</code>: テキストのみのエディタ。</li> -</ul> -</div> <div id="p-webBrowserFind"> -<dl><dt> <code><span><a href="https://developer.mozilla.org/ja/docs/XUL/Property/webBrowserFind">webBrowserFind</a></span></code> </dt><dd> 型: <em><a href="/ja/NsIWebBrowserFind" title="ja/NsIWebBrowserFind">nsIWebBrowserFind</a></em> </dd><dd> この読み取り専用のプロパティは、document 内のテキストの検索に使用することができる <a href="/ja/NsIWebBrowserFind" title="ja/NsIWebBrowserFind">nsIWebBrowserFind</a> オブジェクトを含みます。 </dd></dl> -</div> <div id="p-webNavigation"> -<dl><dt> <code><span><a href="https://developer.mozilla.org/ja/docs/XUL/Property/webNavigation">webNavigation</a></span></code> </dt><dd> 型: <em><a href="/ja/NsIWebNavigation" title="ja/NsIWebNavigation">nsIWebNavigation</a></em> </dd><dd> この読み取り専用のプロパティは document の <a href="/ja/NsIWebNavigation" title="ja/NsIWebNavigation">nsIWebNavigation</a> オブジェクトを含みます。このメソッドのほとんどは、<span id="m-goBack"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/goBack">goBack</a></code></span> や <span id="m-goForward"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/goForward">goForward</a></code></span> のように要素自身から直接呼び出せます。また、<span id="m-reloadWithFlags"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/reloadWithFlags">reloadWithFlags</a></code></span> および <span id="m-loadURIWithFlags"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/loadURIWithFlags">loadURIWithFlags</a></code></span> によって使用される読み込み定数を含みます。 </dd></dl> -</div> -<h3 id="Methods" name="Methods">メソッド</h3> -<dl> - <dt><span id="m-getEditor"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/getEditor">getEditor( window )</a></code></span></dt> - <dd>戻り値の型: <em><a href="/ja/docs/NsIEditor" title="NsIEditor">nsIEditor</a></em></dd> - <dd>document を操作するための多くのメソッドを含む、 editor のための編集インタフェースを返します。引数として editor の <code>contentWindow</code> を渡してください。</dd> -</dl> <dl> - <dt> - <span id="m-getHTMLEditor"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/getHTMLEditor">getHTMLEditor( window )</a></code></span></dt> - <dd> - 戻り値の型: <em><code><a href="/ja/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIHTMLEditor" title="">nsIHTMLEditor</a></code></em></dd> - <dd> - HTML document を操作するための<a href="http://www.xulplanet.com/references/xpcomref/comps/c_editorhtmleditor1.html">メソッド</a>を含む、 editor のための HTML 編集インタフェースを返します。引数として editor の <code>contentWindow</code> を渡してください。</dd> -</dl> <dl> - <dt><span id="m-makeEditable"><code><a href="http://api/ja/docs/Mozilla/Tech/XUL/Method/makeEditable">makeEditable( editortype, waitForLoad )</a></code></span></dt> - <dd>戻り値の型: <em>戻り値無し</em></dd> - <dd>この関数は editor による編集を有効にします。<code id="a-editortype"><a href="http://api/ja/docs/Mozilla/Tech/XUL/Attribute/editortype">editortype</a></code> として <code>text</code> または <code>html</code> を指定してください。</dd> -</dl> <div style="border: 1px solid rgb(204, 204, 204); margin: 0px 0px 10px 10px; padding: 0px 10px; background: rgb(238, 238, 238) none repeat scroll 0% 50%;"> -<p><strong>XUL 要素からの継承</strong><br> -<small> <span id="m-blur"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/blur">blur</a></code></span>, <span id="m-click"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/click">click</a></code></span>, <span id="m-doCommand"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/doCommand">doCommand</a></code></span>, <span id="m-focus"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/focus">focus</a></code></span>, <span id="m-getElementsByAttribute"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/getElementsByAttribute">getElementsByAttribute</a></code></span>, <span id="m-getElementsByAttributeNS"><code><a href="https://developer.mozilla.org/ja/docs/Mozilla/Tech/XUL/Method/getElementsByAttributeNS">getElementsByAttributeNS</a></code></span> </small></p> -<p><strong>DOM 要素からの継承</strong><br> -<small> <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.addEventListener">addEventListener()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.appendChild">appendChild()</a></code>, <a class="internal" href="/ja/DOM/Node.compareDocumentPosition" title="ja/DOM/Node.compareDocumentPosition">compareDocumentPosition</a>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.dispatchEvent">dispatchEvent()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.getAttribute">getAttribute()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.getAttributeNode">getAttributeNode()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.getAttributeNodeNS">getAttributeNodeNS()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.getAttributeNS">getAttributeNS()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.getElementsByTagName">getElementsByTagName()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.getElementsByTagNameNS">getElementsByTagNameNS()</a></code>, <a class="internal" href="/ja/DOM/Node.getFeature" title="ja/DOM/Node.getFeature">getFeature</a>, <a class="internal" href="/ja/DOM/Node.getUserData" title="ja/DOM/Node.getUserData">getUserData</a>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.hasAttribute">hasAttribute()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.hasAttributeNS">hasAttributeNS()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.hasAttributes">hasAttributes()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.hasChildNodes">hasChildNodes()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.insertBefore">insertBefore()</a></code>, <a class="internal" href="/ja/DOM/Node.isEqualNode" title="ja/DOM/Node.isEqualNode">isEqualNode</a>, <a class="internal" href="/ja/DOM/Node.isSameNode" title="ja/DOM/Node.isSameNode">isSameNode</a>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.isSupported">isSupported()</a></code>, <a class="internal" href="/ja/DOM/Node.lookupNamespaceURI" title="ja/DOM/Node.lookupNamespaceURI">lookupNamespaceURI</a>, <a class="internal" href="/ja/DOM/Node.lookupPrefix" title="ja/DOM/Node.lookupPrefix">lookupPrefix</a>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.normalize">normalize()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.removeAttribute">removeAttribute()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.removeAttributeNode">removeAttributeNode()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.removeAttributeNS">removeAttributeNS()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.removeChild">removeChild()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.removeEventListener">removeEventListener()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.replaceChild">replaceChild()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.setAttribute">setAttribute()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.setAttributeNode">setAttributeNode()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.setAttributeNodeNS">setAttributeNodeNS()</a></code>, <code><a href="https://developer.mozilla.org/ja/docs/DOM/element.setAttributeNS">setAttributeNS()</a></code>, <a class="internal" href="/ja/DOM/Node.setUserData" title="ja/DOM/Node.setUserData">setUserData</a></small></p> -</div> -<h3 id="Related" name="Related">関連項目</h3> -<dl><dt> インタフェース </dt><dd> <a href="/ja/nsIAccessibleProvider" title="ja/nsIAccessibleProvider">nsIAccessibleProvider</a> </dd></dl> -<div class="noinclude"> - -</div> |