-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added main classes for the toolbar wrapper.
- Loading branch information
1 parent
5de7fa5
commit 2227cc8
Showing
9 changed files
with
2,086 additions
and
2 deletions.
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
src/BetterControls/BetterToolbar/BetterToolbar.Collection.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* COPYRIGHT NOTICE | ||
MIT License | ||
Copyright (c) 2022 SharpVNC Limited | ||
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 BetterControls.Collections; | ||
using System; | ||
using System.ComponentModel; | ||
using System.Runtime.InteropServices; | ||
|
||
namespace BetterControls | ||
{ | ||
partial class BetterToolbar | ||
{ | ||
/// <summary> | ||
/// This method is raised when the items collection is changed. | ||
/// </summary> | ||
/// <param name="changeType">The way the items collection was changed.</param> | ||
/// <param name="startIndex">The index that the items were changed at.</param> | ||
/// <param name="items">One or more items that were changed in the items collection as instances of <see cref="BetterToolbarItem"/>.</param> | ||
internal void PerformItemsCollectionChanged(ElementCollectionChangeType changeType, int startIndex, params BetterToolbarItem[] items) | ||
{ | ||
if (items is null) | ||
{ | ||
throw new ArgumentNullException(nameof(items)); | ||
} | ||
|
||
switch (changeType) | ||
{ | ||
case ElementCollectionChangeType.Add: | ||
for (int x = 0; x < items.Length;) | ||
Insert(items[x++]); | ||
|
||
break; | ||
case ElementCollectionChangeType.Remove: | ||
for (int i = startIndex, x = 0; x < items.Length;) | ||
Remove(i++, items[x++]); | ||
|
||
break; | ||
} | ||
} | ||
|
||
/// <summary> | ||
/// Inserts the specified toolbar item to the specified position on the toolbar. This item must already be added to the collection. | ||
/// </summary> | ||
/// <param name="item">The item to insert as an instance of <see cref="BetterToolbarItem"/>.</param> | ||
[Browsable(false)] | ||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
private protected void Insert(BetterToolbarItem item) | ||
{ | ||
if (item is null) | ||
{ | ||
throw new ArgumentNullException(nameof(item)); | ||
} | ||
|
||
if (IsHandleCreated) | ||
{ | ||
NativeMethods.TBBUTTON structure = item.ComputeTbButton(); | ||
UnsafeNativeMethods.SendMessage(new HandleRef(this, Handle), NativeMethods.TB_INSERTBUTTON, item.UniqueIdentifier, ref structure); | ||
|
||
SendMessage(NativeMethods.TB_AUTOSIZE, 0, 0); | ||
UpdateItemDimensions(); | ||
} | ||
} | ||
|
||
/// <summary> | ||
/// Removes the specified toolbar item from the specified position on the toolbar. This item must already be removed from the collection. | ||
/// </summary> | ||
/// <param name="index">The index to remove the item from.</param> | ||
/// <param name="item">The item to remove as an instance of <see cref="BetterToolbarItem"/>.</param> | ||
[Browsable(false)] | ||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
private protected void Remove(int index, BetterToolbarItem item) | ||
{ | ||
if (item is null) | ||
{ | ||
throw new ArgumentNullException(nameof(item)); | ||
} | ||
|
||
if (IsHandleCreated) | ||
UnsafeNativeMethods.SendMessage(new HandleRef(this, Handle), NativeMethods.TB_DELETEBUTTON, index, 0); | ||
} | ||
|
||
/// <summary> | ||
/// This method is raised when one ore more items are changed. | ||
/// </summary> | ||
/// <param name="flags"></param> | ||
/// <param name="items">One or more items that were changed as instances of <see cref="BetterToolbarItem"/>.</param> | ||
internal void PerformItemsChanged(CollectionElementItemChangedFlags flags, params BetterToolbarItem[] items) | ||
{ | ||
if (items is null) | ||
{ | ||
throw new ArgumentNullException(nameof(items)); | ||
} | ||
|
||
SendMessage(NativeMethods.TB_AUTOSIZE, 0, 0); | ||
if (!AutoSizeItems) | ||
{ | ||
UnsafeNativeMethods.SendMessage(new HandleRef(this, Handle), NativeMethods.TB_SETBUTTONSIZE, 0, NativeMethods.Util.MAKELPARAM(0, ItemHeight)); | ||
} | ||
SendMessage(NativeMethods.TB_AUTOSIZE, 0, 0); | ||
|
||
if ((flags & CollectionElementItemChangedFlags.RecreateHandle) != 0) | ||
RecreateHandle(); | ||
} | ||
} | ||
} |
Oops, something went wrong.