~ubuntu-branches/ubuntu/quantal/gnash/quantal-proposed

« back to all changes in this revision

Viewing changes to doc/C/BackLash/contextmenu.xml

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-10-14 16:06:54 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081014160654-0anbl2mi098aee2h
Tags: 0.8.4-0ubuntu1
* LP: #84526 - Gnash menu launcher (/usr/share/applications/gnash.desktop
  file) doesn't start any application, also gnash isn't asociated with SWF
  mimetype; we dont show gnash in the .desktop launcher; we add
  NoDisplay=true, add a GenericName and Comment for the sake of
  completeness. Also we add the proper MimeType value, remove Encoding,
  don't use absolute paths for icon and exec and dont use specific icon
  file format suffix.
  - update debian/gnash.desktop

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<sect4 id="ascontextmenu">
2
 
  <title>ContextMenu ActionScript Class</title>
3
 
 
4
 
  <para>
5
 
    This class implements an ContextMenu object.
6
 
  </para>
7
 
 
8
 
    <sect5 id="contextmenumethods">
9
 
        <title>The Methods of the  Class</title>
10
 
        <para>
11
 
            <variablelist>
12
 
 
13
 
                <varlistentry>
14
 
                    <term>copy()</term>
15
 
                    <listitem>
16
 
                    <para>
17
 
                      Return a copy of the menu.
18
 
                    </para>
19
 
                    </listitem>
20
 
            </varlistentry>
21
 
 
22
 
                <varlistentry>
23
 
                    <term>hideBuiltInItems()</term>
24
 
                    <listitem>
25
 
                    <para>
26
 
                      Hide most menu items.
27
 
                    </para>
28
 
                    </listitem>
29
 
            </varlistentry>
30
 
        </variablelist>
31
 
        </para>
32
 
    </sect5>
33
 
  <sect5 id="contextmenuprops">
34
 
    <title>The Properties of the ContextMenu Class</title>
35
 
    
36
 
    <para>
37
 
      <variablelist>
38
 
 
39
 
        <varlistentry>
40
 
          <term>builtInItems</term>
41
 
          <listitem>
42
 
            <para>
43
 
              Returns an array of the built-in menu items.
44
 
            </para>
45
 
          </listitem>
46
 
        </varlistentry>
47
 
 
48
 
        <varlistentry>
49
 
          <term>customItems</term>
50
 
          <listitem>
51
 
            <para>
52
 
              An undefined array to contain menu item names.
53
 
            </para>
54
 
          </listitem>
55
 
        </varlistentry>
56
 
 
57
 
        <varlistentry>
58
 
          <term>onSelect</term>
59
 
          <listitem>
60
 
            <para>
61
 
              Called before the menu is displayed.
62
 
            </para>
63
 
          </listitem>
64
 
        </varlistentry>
65
 
 
66
 
      </variablelist>
67
 
    </para>
68
 
  </sect5>
69
 
 
70
 
  <sect5 id="contextmenuconf">
71
 
    <title>ContextMenu Class Conformance</title>
72
 
    
73
 
    <para>
74
 
      <informaltable frame="all">
75
 
        <?dbhtml table-width="75%" ?>
76
 
        <tgroup cols="2">
77
 
          <thead>
78
 
            <row>
79
 
              <entry valign="top">
80
 
                <para>Class Name</para>
81
 
              </entry>
82
 
              <entry valign="top">
83
 
                <para>Conformance</para>
84
 
              </entry>
85
 
            </row>
86
 
          </thead>
87
 
          <tbody>
88
 
            <row>
89
 
              <entry valign="top" align="left">
90
 
                <para>copy()</para>
91
 
              </entry>
92
 
              <entry valign="top" align="center">
93
 
                <para>
94
 
                  This method is unimplemented.
95
 
                </para>
96
 
              </entry>
97
 
            </row>
98
 
            <row>
99
 
              <entry valign="top" align="left">
100
 
                <para>hideBuiltInItems()</para>
101
 
              </entry>
102
 
              <entry valign="top" align="center">
103
 
                <para>
104
 
                  This method is unimplemented.
105
 
                </para>
106
 
              </entry>
107
 
            </row>
108
 
            <row>
109
 
              <entry valign="top" align="left">
110
 
                <para>builtInItems</para>
111
 
              </entry>
112
 
              <entry valign="top" align="center">
113
 
                <para>
114
 
                  This property is unimplemented.
115
 
                </para>
116
 
              </entry>
117
 
            </row>
118
 
            <row>
119
 
              <entry valign="top" align="left">
120
 
                <para>customItems</para>
121
 
              </entry>
122
 
              <entry valign="top" align="center">
123
 
                <para>
124
 
                  This property is unimplemented.
125
 
                </para>
126
 
              </entry>
127
 
            </row>
128
 
            <row>
129
 
              <entry valign="top" align="left">
130
 
                <para>onSelect</para>
131
 
              </entry>
132
 
              <entry valign="top" align="center">
133
 
                <para>
134
 
                  This property is unimplemented.
135
 
                </para>
136
 
              </entry>
137
 
            </row>
138
 
          </tbody>
139
 
        </tgroup>
140
 
      </informaltable>
141
 
    </para>
142
 
  </sect5>  
143
 
</sect4>