-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathEventHandelers.cs
42 lines (34 loc) · 1.08 KB
/
EventHandelers.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
using System;
using System.Collections.Generic;
using OpenTK.Input;
namespace OpenTKGUI
{
/// <summary>
/// Handler for a text changed event from a textbox.
/// </summary>
public delegate void TextChangedHandler(string Text);
/// <summary>
/// Handler for a text entered event from a textbox.
/// </summary>
public delegate void TextEnteredHandler(string Text);
/// <summary>
/// Value has changed
/// </summary>
public delegate void ValueChangedHandeler(double Value);
/// <summary>
/// Handles a click event from a button.
/// </summary>
public delegate void ClickHandler();
/// <summary>
/// Handles a click event from a checkbox.
/// </summary>
public delegate void CheckboxClickHandler(bool Value);
/// <summary>
/// Handles a popup created event from a popup container.
/// </summary>
public delegate void PopupCreatedHandler(Popup Popup);
/// <summary>
/// Handles a dismissed event from a form or other layer control.
/// </summary>
public delegate void DismissedHandler();
}