File: RadioActionEntry.xml

package info (click to toggle)
gnome-subtitles 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 103,144 kB
  • sloc: xml: 406,395; cs: 364,495; ansic: 3,104; perl: 1,477; sh: 769; python: 545; javascript: 500; makefile: 49
file content (186 lines) | stat: -rw-r--r-- 9,274 bytes parent folder | download | duplicates (5)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<Type Name="RadioActionEntry" FullName="Gtk.RadioActionEntry">
  <TypeSignature Language="C#" Maintainer="auto" Value="public struct RadioActionEntry" />
  <TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit RadioActionEntry extends System.ValueType" />
  <AssemblyInfo>
    <AssemblyName>gtk-sharp</AssemblyName>
    <AssemblyPublicKey>[00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 71 EB 6C 55 75 52 9C BF 72 44 F7 A6 EA 05 62 84 F9 EA E0 3B CF F2 CC 13 2C 9C 49 0A B3 09 EA B0 B5 6B CE 44 9D F5 03 D9 C0 A8 1E 52 05 85 CD BE 70 E2 FB 90 43 4B AC 04 FA 62 22 A8 00 98 B7 A1 A7 B3 AF 99 1A 41 23 24 BB 43 25 F6 B8 65 BB 64 EB F6 D1 C2 06 D5 73 2D DF BC 70 A7 38 9E E5 3E 0C 24 6E 32 79 74 1A D0 05 03 E4 98 42 E1 9B F3 7B 19 8B 40 21 26 CB 36 89 C2 EA 64 96 A4 7C B4]</AssemblyPublicKey>
  </AssemblyInfo>
  <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
  <Base>
    <BaseTypeName>System.ValueType</BaseTypeName>
  </Base>
  <Interfaces />
  <Docs>
    <summary>A struct containing all the info necessary for creating an <see cref="T:Gtk.RadioAction" /></summary>
    <remarks>
      <para>The ActionEntry struct is C# "syntactic sugar", designed to make it easier for developers to add <see cref="T:Gtk.RadioAction" />s to their code.</para>
      <para>Instead of creating a new <see cref="T:Gtk.RadioAction" /> object for each action, a developer can create an array of RadioActionEntry's and add them to an <see cref="T:Gtk.ActionGroup" /> all at once using the <see cref="M:Gtk.ActionGroup.Add" /> method.</para>
    </remarks>
    <since version="Gtk# 2.4" />
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public RadioActionEntry (string name, string stock_id);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string name, string stock_id) cil managed" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="stock_id" Type="System.String" />
      </Parameters>
      <Docs>
        <param name="name">a <see cref="T:System.String" /></param>
        <param name="stock_id">a <see cref="T:System.String" /></param>
        <summary>Basic constructor.</summary>
        <remarks>
        </remarks>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public RadioActionEntry (string name, string stock_id, string label, string accelerator, string tooltip);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string name, string stock_id, string label, string accelerator, string tooltip) cil managed" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="stock_id" Type="System.String" />
        <Parameter Name="label" Type="System.String" />
        <Parameter Name="accelerator" Type="System.String" />
        <Parameter Name="tooltip" Type="System.String" />
      </Parameters>
      <Docs>
        <param name="name">a <see cref="T:System.String" />, a unique name 
	  for the action</param>
        <param name="stock_id">a <see cref="T:System.String" />, the stock 
	  icon to use.</param>
        <param name="label">a <see cref="T:System.String" />, the label to 
	  display on menu items and buttons</param>
        <param name="accelerator">a <see cref="T:System.String" />,the 
	  accelerator string (see notes below)</param>
        <param name="tooltip">a <see cref="T:System.String" />, a tooltip 
	  for this action</param>
        <summary>Public constructor with accelerator.</summary>
        <remarks>The accelerator given should be in the format understood
	  <see cref="M:Gtk.Accelerator.Parse" />, or "" for no accelerator, or 
	  <see langword="null" /> to use the stock accelerator  </remarks>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public RadioActionEntry (string name, string stock_id, string label, string accelerator, string tooltip, int value);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string name, string stock_id, string label, string accelerator, string tooltip, int32 value) cil managed" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="stock_id" Type="System.String" />
        <Parameter Name="label" Type="System.String" />
        <Parameter Name="accelerator" Type="System.String" />
        <Parameter Name="tooltip" Type="System.String" />
        <Parameter Name="value" Type="System.Int32" />
      </Parameters>
      <Docs>
        <param name="name">a <see cref="T:System.String" />, a unique name 
	  for the action</param>
        <param name="stock_id">a <see cref="T:System.String" />, the stock 
	  icon to use.</param>
        <param name="label">a <see cref="T:System.String" />, the label to 
	  display on menu items and buttons</param>
        <param name="accelerator">a <see cref="T:System.String" />,the 
	  accelerator string (see notes below)</param>
        <param name="tooltip">a <see cref="T:System.String" />, a tooltip 
	  for this action</param>
        <param name="value">a <see cref="T:System.Int32" />, the value that 
	  <see cref="M:Gtk.RadioAction.CurrentValue" /> should return if this 
	  action is activated.</param>
        <summary>Public constructor with accelerator and value.</summary>
        <remarks>The accelerator given should be in the format understood
	  <see cref="M:Gtk.Accelerator.Parse" />, or "" for no accelerator, or 
	  <see langword="null" /> to use the stock accelerator  </remarks>
      </Docs>
    </Member>
    <Member MemberName="accelerator">
      <MemberSignature Language="C#" Value="public string accelerator;" />
      <MemberSignature Language="ILAsm" Value=".field public string accelerator" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
      </Parameters>
      <Docs>
        <summary>The accelerator for the action, in the format understood by <see cref="M:Gtk.Accelerator.Parse()" />, or "" for no accelerator, or <see langword="null" /> to use the stock accelerator.</summary>
        <remarks />
      </Docs>
    </Member>
    <Member MemberName="label">
      <MemberSignature Language="C#" Value="public string label;" />
      <MemberSignature Language="ILAsm" Value=".field public string label" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
      </Parameters>
      <Docs>
        <summary>The label used for menu items and buttons that activate this action.</summary>
        <remarks />
      </Docs>
    </Member>
    <Member MemberName="name">
      <MemberSignature Language="C#" Value="public string name;" />
      <MemberSignature Language="ILAsm" Value=".field public string name" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
      </Parameters>
      <Docs>
        <summary>A unique name for the action.</summary>
        <remarks />
      </Docs>
    </Member>
    <Member MemberName="stock_id">
      <MemberSignature Language="C#" Value="public string stock_id;" />
      <MemberSignature Language="ILAsm" Value=".field public string stock_id" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
      </Parameters>
      <Docs>
        <summary>The stock icon displayed in widgets representing this action.</summary>
        <remarks />
      </Docs>
    </Member>
    <Member MemberName="tooltip">
      <MemberSignature Language="C#" Value="public string tooltip;" />
      <MemberSignature Language="ILAsm" Value=".field public string tooltip" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
      </Parameters>
      <Docs>
        <summary>A tooltip for this action.</summary>
        <remarks />
      </Docs>
    </Member>
    <Member MemberName="value">
      <MemberSignature Language="C#" Value="public int value;" />
      <MemberSignature Language="ILAsm" Value=".field public int32 value" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
      </Parameters>
      <Docs>
        <summary>Integer representing the value of the <see cref="T:Gtk.RadioAction" />.</summary>
        <remarks />
      </Docs>
    </Member>
  </Members>
</Type>