forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuBase.cs
More file actions
297 lines (278 loc) · 10.1 KB
/
MenuBase.cs
File metadata and controls
297 lines (278 loc) · 10.1 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/********
* @version : 2.1.1 - Ext.NET Pro License
* @author : Ext.NET, Inc. http://www.ext.net/
* @date : 2012-12-10
* @copyright : Copyright (c) 2007-2012, Ext.NET, Inc. (http://www.ext.net/). All rights reserved.
* @license : See license.txt and http://www.ext.net/license/.
********/
using System.ComponentModel;
namespace Ext.Net
{
/// <summary>
///
/// </summary>
[Meta]
[Description("")]
public abstract partial class MenuBase : AbstractPanel, INoneContentable
{
/// <summary>
///
/// </summary>
[Description("")]
protected override bool RemoveContainer
{
get
{
return this.Floating;
}
}
/// <summary>
///
/// </summary>
[Description("")]
public override bool IsDefault
{
get
{
return this.Items.Count == 0 && !this.RenderEmptyMenu;
}
}
/// <summary>
///
/// </summary>
protected internal bool RenderEmptyMenu
{
get;
set;
}
/// <summary>
/// True to allow multiple menus to be displayed at the same time (defaults to false).
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("True to allow multiple menus to be displayed at the same time (defaults to false).")]
public virtual bool AllowOtherMenus
{
get
{
return this.State.Get<bool>("AllowOtherMenus", false);
}
set
{
this.State.Set("AllowOtherMenus", value);
}
}
/// <summary>
/// The default Ext.Element#getAlignToXY anchor position value for this menu relative to its element of origin. Defaults to: "tl-bl?"
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue("tl-bl?")]
[NotifyParentProperty(true)]
[Description("The default Ext.Element#getAlignToXY anchor position value for this menu relative to its element of origin. Defaults to: \"tl-bl?\"")]
public virtual string DefaultAlign
{
get
{
return this.State.Get<string>("DefaultAlign", "tl-bl?");
}
set
{
this.State.Set("DefaultAlign", value);
}
}
/// <summary>
/// The default type of content Container represented by this object as registered in Ext.ComponentMgr (defaults to 'panel').
/// </summary>
[ConfigOption]
[Category("5. Container")]
[DefaultValue("menuitem")]
[NotifyParentProperty(true)]
[Description("The default type of content Container represented by this object as registered in Ext.ComponentMgr (defaults to 'panel').")]
public override string DefaultType
{
get
{
return this.State.Get<string>("DefaultType", "menuitem");
}
set
{
this.State.Set("DefaultType", value);
}
}
/// <summary>
/// A Menu configured as floating: true (the default) will be rendered as an absolutely positioned, floating Component. If configured as floating: false, the Menu may be used as a child item of another Container. Defaults to: true
/// </summary>
[Category("6. Menu")]
[DefaultValue(true)]
[NotifyParentProperty(true)]
[Description("A Menu configured as floating: true (the default) will be rendered as an absolutely positioned, floating Component. If configured as floating: false, the Menu may be used as a child item of another Container. Defaults to: true")]
public override bool Floating
{
get
{
return this.State.Get<bool>("Floating", true);
}
set
{
this.State.Set("Floating", value);
}
}
/// <summary>
///
/// </summary>
[DefaultValue(true)]
[ConfigOption("floating")]
protected override bool FloatingProxy
{
get
{
return this.Floating && (this.FloatingConfig == null || this.FloatingConfig.Serialize(false) == Const.EmptyObject) ? true : false;
}
}
/// <summary>
/// True to ignore clicks on any item in this menu that is a parent item (displays a submenu) so that the submenu is not dismissed when clicking the parent item. Defaults to: false
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("True to ignore clicks on any item in this menu that is a parent item (displays a submenu) so that the submenu is not dismissed when clicking the parent item. Defaults to: false")]
public virtual bool IgnoreParentClicks
{
get
{
return this.State.Get<bool>("IgnoreParentClicks", false);
}
set
{
this.State.Set("IgnoreParentClicks", value);
}
}
/// <summary>
/// True to remove the incised line down the left side of the menu and to not indent general Component items. Defaults to: false
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("True to remove the incised line down the left side of the menu and to not indent general Component items. Defaults to: false")]
public virtual bool Plain
{
get
{
return this.State.Get<bool>("Plain", false);
}
set
{
this.State.Set("Plain", value);
}
}
/// <summary>
/// True to show the icon separator. (defaults to true).
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue(true)]
[NotifyParentProperty(true)]
[Description("True to show the icon separator. (defaults to true).")]
public virtual bool ShowSeparator
{
get
{
return this.State.Get<bool>("ShowSeparator", true);
}
set
{
this.State.Set("ShowSeparator", value);
}
}
/// <summary>
/// True to enable keyboard navigation for controlling the menu. This option should generally be disabled when form fields are being used inside the menu. Defaults to true.
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue(true)]
[NotifyParentProperty(true)]
[Description("True to enable keyboard navigation for controlling the menu. This option should generally be disabled when form fields are being used inside the menu. Defaults to true.")]
public virtual bool EnableKeyNav
{
get
{
return this.State.Get<bool>("EnableKeyNav", true);
}
set
{
this.State.Set("EnableKeyNav", value);
}
}
/// <summary>
///
/// </summary>
[Meta]
[ConfigOption]
[Category("6. Menu")]
[DefaultValue(false)]
[NotifyParentProperty(true)]
[Description("")]
public virtual bool RenderToForm
{
get
{
return this.State.Get<bool>("RenderToForm", false);
}
set
{
this.State.Set("RenderToForm", value);
}
}
/* Public Methods
-----------------------------------------------------------------------------------------------*/
/// <summary>
/// Deactivates the current active item on the menu, if one exists.
/// </summary>
[Meta]
public virtual void DeactivateActiveItem()
{
this.Call("deactivateActiveItem");
}
/// <summary>
/// Shows the floating menu by the specified Component or Element.
/// </summary>
/// <param name="element">The Ext.Component or Ext.Element to show the menu by.</param>
/// <param name="position">Alignment position as used by Ext.Element.getAlignToXY. Defaults to defaultAlign.</param>
/// <param name="offsets">Alignment offsets as used by Ext.Element.getAlignToXY. Defaults to undefined.</param>
[Meta]
public virtual void ShowBy(string element, string position, int[] offsets)
{
this.Call("show", new JRawValue(element), position, offsets);
}
/// <summary>
/// Shows the floating menu by the specified Component or Element.
/// </summary>
/// <param name="element">The Ext.Component or Ext.Element to show the menu by.</param>
/// <param name="position">Alignment position as used by Ext.Element.getAlignToXY. Defaults to defaultAlign.</param>
[Meta]
public virtual void ShowBy(string element, string position)
{
this.Call("show", new JRawValue(element), position);
}
/// <summary>
/// Shows the floating menu by the specified Component or Element.
/// </summary>
/// <param name="element">The Ext.Component or Ext.Element to show the menu by.</param>
[Meta]
public virtual void ShowBy(string element)
{
this.Call("show", new JRawValue(element));
}
}
}