-
-
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.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,21 +1,60 @@ | ||
namespace Riverside.Toolkit.Controls.TitleBar | ||
{ | ||
/// <summary> | ||
/// Specifies the selected caption button. | ||
/// </summary> | ||
public enum SelectedCaptionButton | ||
{ | ||
/// <summary> | ||
/// No button is selected. | ||
/// </summary> | ||
None = 0, | ||
/// <summary> | ||
/// The minimize button is selected. | ||
/// </summary> | ||
Minimize = 1, | ||
/// <summary> | ||
/// The maximize button is selected. | ||
/// </summary> | ||
Maximize = 2, | ||
/// <summary> | ||
/// The close button is selected. | ||
/// </summary> | ||
Close = 3 | ||
} | ||
|
||
/// <summary> | ||
/// Specifies the state of the caption buttons. | ||
/// </summary> | ||
public enum ButtonsState | ||
{ | ||
/// <summary> | ||
/// No button state. | ||
/// </summary> | ||
None, | ||
/// <summary> | ||
/// The minimize button is in the pointer over state. | ||
/// </summary> | ||
MinimizePointerOver, | ||
/// <summary> | ||
/// The minimize button is in the pressed state. | ||
/// </summary> | ||
MinimizePressed, | ||
/// <summary> | ||
/// The maximize button is in the pointer over state. | ||
/// </summary> | ||
MaximizePointerOver, | ||
/// <summary> | ||
/// The maximize button is in the pressed state. | ||
/// </summary> | ||
MaximizePressed, | ||
/// <summary> | ||
/// The close button is in the pointer over state. | ||
/// </summary> | ||
ClosePointerOver, | ||
/// <summary> | ||
/// The close button is in the pressed state. | ||
/// </summary> | ||
ClosePressed | ||
} | ||
} |