diff options
Diffstat (limited to 'files/ko/mozilla/tech/xul/splitter/index.html')
-rw-r--r-- | files/ko/mozilla/tech/xul/splitter/index.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/files/ko/mozilla/tech/xul/splitter/index.html b/files/ko/mozilla/tech/xul/splitter/index.html new file mode 100644 index 0000000000..863f3c76db --- /dev/null +++ b/files/ko/mozilla/tech/xul/splitter/index.html @@ -0,0 +1,79 @@ +--- +title: splitter +slug: Mozilla/Tech/XUL/splitter +translation_of: Archive/Mozilla/XUL/splitter +--- +<p><?xml version="1.0"?> <?xml-stylesheet href="<a class="external" rel="freelink">chrome://global/skin</a>" type="text/css"?></p> +<p><window title="XUL Splitters"</p> +<pre class="eval"> xmlns:html="<a class="external" href="http://www.w3.org/1999/xhtml" rel="freelink">http://www.w3.org/1999/xhtml</a>" + xmlns="<a class="external" href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" rel="freelink">http://www.mozilla.org/keymaster/gat...re.is.only.xul</a>"> +</pre> +<p><script> <![CDATA[</p> +<p>]]> </script></p> +<p><description><html:h1>XUL Splitters</html:h1></description></p> +<pre class="eval"><vbox flex="1" style="overflow: auto"> +</pre> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="collapse before" /> + <groupbox flex="1"><label flex="1" value="Left side" /></groupbox> + <splitter collapse="before" ><grippy /></splitter> + <groupbox flex="1"><label flex="1" value="Right side" /></groupbox> + </groupbox> +</pre> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="collapse after" /> + <groupbox flex="1"><label flex="1" value="Left side" /></groupbox> + <splitter collapse="after" ><grippy /></splitter> + <groupbox flex="1"><label flex="1" value="Right side" /></groupbox> + </groupbox> +</pre> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="no collapse" /> + <groupbox flex="1"><label flex="1" value="Left side" /></groupbox> + <splitter collapse="none" /> + <groupbox flex="1"><label flex="1" value="Right side" /></groupbox> + </groupbox> +</pre> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="resize the closest widgets on both sides" /> + <groupbox flex="1"><description>Left most side</description></groupbox> + <groupbox flex="1"><description>Middle Left side</description></groupbox> + <groupbox flex="1"><description>Closest Left side</description></groupbox> + <splitter collapse="none" resizebefore="closest" resizeafter="closest" /> + <groupbox flex="1"><description>Closest Right side</description></groupbox> + <groupbox flex="1"><description>Middle Right side</description></groupbox> + <groupbox flex="1"><description>Right most side</description></groupbox> + </groupbox> +</pre> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="resize the farthest widgets on both sides" /> + <groupbox flex="1"><description>Left most side</description></groupbox> + <groupbox flex="1"><description>Middle Left side</description></groupbox> + <groupbox flex="1"><description>Closest Left side</description></groupbox> + <splitter collapse="none" resizebefore="farthest" resizeafter="farthest" /> + <groupbox flex="1"><description>Closest Right side</description></groupbox> + <groupbox flex="1"><description>Middle Right side</description></groupbox> + <groupbox flex="1"><description>Right most side</description></groupbox> + </groupbox> +</pre> +<p> </p> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="grow the widgets on the right side" /> + <groupbox flex="1"><description>Left side</description></groupbox> + <splitter collapse="none" resizebefore="grow" resizeafter="grow" /> + <groupbox flex="1"><description>Closest Right side</description></groupbox> + <groupbox flex="1"><description>Middle Right side</description></groupbox> + <groupbox flex="1"><description>Right most side</description></groupbox> + </groupbox> +</pre> +<pre class="eval"> <groupbox orient="horizontal" flex="1"> + <caption label="double splitters" /> + <groupbox flex="1"><label flex="1" value="Left side" /></groupbox> + <splitter collapse="before" ><grippy /></splitter> + <groupbox flex="1"><label flex="1" value="Middle" /></groupbox> + <splitter collapse="after" ><grippy /></splitter> + <groupbox flex="1"><label flex="1" value="Right side" /></groupbox> + </groupbox> +</pre> +<p></vbox></p> +<p></window></p> |