25 lines
897 B
VB.net
25 lines
897 B
VB.net
Imports DigitalData.Modules.ZooFlow.Params
|
|
|
|
Namespace ClipboardWatcher
|
|
Public Class State
|
|
Public Enum EnumStatus
|
|
OK
|
|
NoProfilesConfigured
|
|
Exception
|
|
End Enum
|
|
|
|
Public UserProfiles As DataTable = Nothing
|
|
Public ProfileProcesses As DataTable = Nothing
|
|
Public ProfileWindows As DataTable = Nothing
|
|
Public ProfileControls As DataTable = Nothing
|
|
|
|
Public MatchTreeView As TreeView = New TreeView()
|
|
|
|
Public Property CurrentMatchingProfiles As List(Of ProfileData) = New List(Of ProfileData)
|
|
Public Property CurrentProfilesWithResults As List(Of ProfileData) = New List(Of ProfileData)
|
|
Public Property CurrentClipboardContents As String = String.Empty
|
|
|
|
Public Property MonitoringActive As Boolean = False
|
|
Public Property Status As EnumStatus
|
|
End Class
|
|
End Namespace |