blob: 4fdcc5d1c95821524e41dc2b71b6a288ff02d4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
---
title: Instantiating Views
slug: Places/Instantiating_Views
tags:
- Places
---
<p>여러분의 확장이나 애플리케이션에서 북마크나 히스토리의 내용을 보여주려면 내장 플레이스 뷰를 사용할 수 있습니다. 이는 포괄적이며, 기본 기능을 작성하는 시간을 많이 아껴주므로 여러분은 애플리케이션을 작성하는데 집중할 수 있습니다.</p>
<p>다른 콘트롤 형식을 위해서 또는 더욱 사용자 정의된 뷰를 얻기 위해서 여러분 자신의 뷰를 구현할 수도 있습니다. <a href="ko/Places/Views">Places:Views</a>는 이 주제에 대해서 다룹니다.</p>
<h3 id="보기">보기</h3>
<p>플레이스에서는 다음과 같은 내장 뷰를 이용할 수 있습니다.</p>
<ul>
<li>트리</li>
<li>메뉴</li>
<li>도구 막대 - 포함된 폴더는 메뉴 뷰를 사용</li>
</ul>
<h3 id="XUL에서_생성하기">XUL에서 생성하기</h3>
<pre> <!-- include the places stylesheet to get the XBL bindings -->
<?xml-stylesheet href="chrome://browser/content/places/places.css"?>
<!-- include the required .js files -->
<script type="application/x-javascript"
src="chrome://global/content/globalOverlay.js"/>
<script type="application/x-javascript"
src="chrome://browser/content/places/utils.js"/>
<script type="application/x-javascript"
src="chrome://browser/content/places/controller.js"/>
<script type="application/x-javascript"
src="chrome://browser/content/places/treeView.js"/>
<!-- Tree View -->
<tree type="places" id="your_tree" place="place:..." ...>
<treecols>
<treecol id="title" flex="1" primary="true" .../>
...
</treecols>
<treechildren flex="1"/>
</tree>
<!-- Menu View -->
<menu label="Your Menu">
<menupopup type="places" place="place:..."/>
</menu>
<!-- Toolbar View -->
<toolbaritem type="places" id="your_item" place="place:..."
.../>
</pre>
<p>스크립트에서 DOM 개체를 생성할 수도 있습니다.</p>
<h3 id="스크립트_가로채기Hookup">스크립트 가로채기(Hookup)</h3>
<pre>var view = document.getElementById("your_view");
view.init(null);
view.appendController(PlacesController);
</pre>
<p>뷰는 null로 초기화되고(기본 뷰 구성입니다. ViewConfig 개체를 사용하여 뷰의 기능을 수정하는 것에 대한 자세한 정보는 <a href="ko/Places/View_Configurations">Places:View Configurations</a>를 참고하십시오.) 콘트롤러가 붙습니다. 뷰는 이제 사용할 준비가 되었습니다.</p>
<h3 id="플레이스뷰_인터페이스">플레이스뷰 인터페이스</h3>
<p>플레이스뷰 인터페이스를 통하여 뷰와 상호작용하는 것에 대한 정보는 <a href="ko/Places/PlacesView_Interface">Places:PlacesView Interface</a>를 참고하시기 바랍니다.</p>
<div class="noinclude"></div>
|