-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathMetroSetTabControlDesigner.cs
242 lines (197 loc) · 7.01 KB
/
MetroSetTabControlDesigner.cs
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
/*
* MetroSet UI - MetroSet UI Framework
*
* The MIT License (MIT)
* Copyright (c) 2017 Narwin, https://github.com/N-a-r-w-i-n
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in the
* Software without restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the
* following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Windows.Forms.Design;
using MetroSet_UI.Child;
using MetroSet_UI.Controls;
using MetroSet_UI.Native;
namespace MetroSet_UI.Design
{
/// <summary>
/// The below class designer is a part from : https://www.codeproject.com/Articles/38014/KRBTabControl after a few clean code clean up.
/// </summary>
public class MetroSetTabControlDesigner : ParentControlDesigner
{
#region Instance Members
private DesignerVerbCollection _verbs;
private IDesignerHost _designerHost;
private IComponentChangeService _changeService;
#endregion Instance Members
#region Constructor
#endregion Constructor
#region Property
public override DesignerVerbCollection Verbs
{
get
{
if (_verbs == null)
{
var addVerbs = new[]
{
new DesignerVerb("Add Tab", OnAddTab),
new DesignerVerb("Remove Tab", OnRemoveTab)
};
_verbs = new DesignerVerbCollection();
_verbs.AddRange(addVerbs);
if (!(Control is MetroSetTabControl parentControl))
return _verbs;
switch (parentControl.TabPages.Count)
{
case 0:
_verbs[1].Enabled = false;
break;
default:
_verbs[1].Enabled = true;
break;
}
}
return _verbs;
}
}
#endregion Property
#region Override Methods
public override void Initialize(IComponent component)
{
base.Initialize(component);
_designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
_changeService = (IComponentChangeService)GetService(typeof(IComponentChangeService));
// Update your designer verb whenever ComponentChanged event occurs.
if (_changeService != null)
_changeService.ComponentChanged += OnComponentChanged;
}
/// <summary>
/// Override this method to remove unused or inappropriate properties.
/// </summary>
/// <param name="properties">Properties collection of the control.</param>
protected override void PostFilterProperties(IDictionary properties)
{
properties.Remove("Margin");
properties.Remove("ImeMode");
properties.Remove("Padding");
properties.Remove("Enabled");
properties.Remove("RightToLeft");
properties.Remove("RightToLeftLayout");
properties.Remove("ApplicationSettings");
properties.Remove("DataBindings");
base.PostFilterProperties(properties);
}
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
if (m.Msg == (int)User32.Msgs.WM_NCHITTEST)
{
if (m.Result.ToInt32() == User32._HT_TRANSPARENT)
m.Result = (IntPtr)User32._HTCLIENT;
}
}
protected override bool GetHitTest(Point point)
{
var selectionService = (ISelectionService)GetService(typeof(ISelectionService));
var selectedObject = selectionService?.PrimarySelection;
if (selectedObject != null && selectedObject.Equals(Control))
{
var p = Control.PointToClient(point);
var hti = new User32.TCHITTESTINFO(p, User32.TabControlHitTest.TCHT_ONITEM);
var m = new Message
{
HWnd = Control.Handle,
Msg = User32._TCM_HITTEST
};
var lParam = Marshal.AllocHGlobal(Marshal.SizeOf(hti));
Marshal.StructureToPtr(hti, lParam, false);
m.LParam = lParam;
base.WndProc(ref m);
Marshal.FreeHGlobal(lParam);
if (m.Result.ToInt32() != -1)
return hti.flags != User32.TabControlHitTest.TCHT_NOWHERE;
}
return false;
}
protected override void Dispose(bool disposing)
{
if (disposing && _changeService != null)
_changeService.ComponentChanged -= OnComponentChanged;
base.Dispose(disposing);
}
#endregion Override Methods
#region Helper Methods
/* When the designer modifies the MetroSetTabControl.TabPages collection,
the Properties window is not updated until the control is deselected and then reselected. To
correct this defect, you need to explicitly notify the IDE that a change has been made by using
the PropertyDescriptor for the property. */
private void OnAddTab(Object sender, EventArgs e)
{
var parentControl = Control as MetroSetTabControl;
var oldTabs = parentControl?.TabPages;
// Notify the IDE that the TabPages collection property of the current tab control has changed.
RaiseComponentChanging(TypeDescriptor.GetProperties(parentControl)["TabPages"]);
var newTab = (MetroSetSetTabPage)_designerHost.CreateComponent(typeof(MetroSetSetTabPage));
newTab.Text = newTab.Name;
parentControl?.TabPages.Add(newTab);
if (parentControl == null)
return;
parentControl.SelectedTab = newTab;
RaiseComponentChanged(TypeDescriptor.GetProperties(parentControl)["TabPages"], oldTabs,
parentControl.TabPages);
}
private void OnRemoveTab(Object sender, EventArgs e)
{
var parentControl = Control as MetroSetTabControl;
if (parentControl != null && parentControl.SelectedIndex < 0)
return;
var oldTabs = parentControl?.TabPages;
// Notify the IDE that the TabPages collection property of the current tab control has changed.
RaiseComponentChanging(TypeDescriptor.GetProperties(parentControl)["TabPages"]);
_designerHost.DestroyComponent(parentControl?.SelectedTab);
RaiseComponentChanged(TypeDescriptor.GetProperties(parentControl)["TabPages"], oldTabs, parentControl?.TabPages);
}
private void OnComponentChanged(object sender, ComponentChangedEventArgs e)
{
if (!(e.Component is MetroSetTabControl parentControl) || e.Member.Name != "TabPages")
return;
foreach (DesignerVerb verb in Verbs)
{
if (verb.Text != "Remove Tab")
continue;
switch (parentControl.TabPages.Count)
{
case 0:
verb.Enabled = false;
break;
default:
verb.Enabled = true;
break;
}
break;
}
}
#endregion Helper Methods
}
}