@@ -359,6 +359,7 @@ private void LoadConditions()
359359 listBoxCondition . Items . Add ( new TriggerCondition ( TriggerConditionType . BeforeScreenshotTaken , "Before Screenshot Taken" ) . Description ) ;
360360 listBoxCondition . Items . Add ( new TriggerCondition ( TriggerConditionType . BeforeScreenshotReferencesSaved , "Before Screenshot References Saved" ) . Description ) ;
361361 listBoxCondition . Items . Add ( new TriggerCondition ( TriggerConditionType . AfterScreenshotReferencesSaved , "After Screenshot References Saved" ) . Description ) ;
362+ listBoxCondition . Items . Add ( new TriggerCondition ( TriggerConditionType . SystemTrayIconDoubleClick , "System Tray Icon Double Click" ) . Description ) ;
362363
363364 listBoxCondition . SelectedIndex = 0 ;
364365 }
@@ -404,6 +405,13 @@ private void LoadActions()
404405 listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . ShowSystemTrayIcon , "Show System Tray Icon" ) . Description ) ;
405406 listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . HideSystemTrayIcon , "Hide System Tray Icon" ) . Description ) ;
406407 listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . TakeScreenshot , "Take Screenshot" ) . Description ) ;
408+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . RegionSelectClipboard , "Region Select Clipboard" ) . Description ) ;
409+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . RegionSelectClipboardAutoSave , "Region Select Clipboard Auto Save" ) . Description ) ;
410+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . RegionSelectClipboardAutoSaveEdit , "Region Select Clipboard Auto Save Edit" ) . Description ) ;
411+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . RegionSelectClipboardFloatingScreenshot , "Region Select Clipboard Floating Screenshot" ) . Description ) ;
412+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . RegionSelectFloatingScreenshot , "Region Select Floating Screenshot" ) . Description ) ;
413+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . ShowOrHideInterface , "Show Interface or Hide Interface" ) . Description ) ;
414+ listBoxAction . Items . Add ( new TriggerAction ( TriggerActionType . StartOrStopScreenCapture , "Start Screen Capture or Stop Screen Capture" ) . Description ) ;
407415
408416 listBoxAction . SelectedIndex = 0 ;
409417 }
@@ -732,6 +740,11 @@ private void ShowConditionHelpText()
732740 case 14 :
733741 textBoxConditionHelp . Text = "When screenshot references have been saved to disk during a recurring five minute maintenance timer." ;
734742 break ;
743+
744+ // System Tray Icon Double Click
745+ case 15 :
746+ textBoxConditionHelp . Text = "When you double-click on the system tray icon." ;
747+ break ;
735748 }
736749 }
737750
@@ -876,6 +889,41 @@ private void ShowActionHelpText()
876889 case 26 :
877890 textBoxActionHelp . Text = "Take a set of screenshots." ;
878891 break ;
892+
893+ // Region Select->Clipboard.
894+ case 27 :
895+ textBoxActionHelp . Text = "Perform the same action as if you had selected Clipboard from Region Select." ;
896+ break ;
897+
898+ // Region Select->Clipboard/Auto Save.
899+ case 28 :
900+ textBoxActionHelp . Text = "Perform the same action as if you had selected Clipboard/Auto Save from Region Select." ;
901+ break ;
902+
903+ // Region Select->Clipboard/Auto Save/Edit.
904+ case 29 :
905+ textBoxActionHelp . Text = "Perform the same action as if you had selected Clipboard/Auto Save/Edit from Region Select." ;
906+ break ;
907+
908+ // Region Select->Clipboard/Floating Screenshot.
909+ case 30 :
910+ textBoxActionHelp . Text = "Perform the same action as if you had selected Clipboard/Floating Screenshot from Region Select." ;
911+ break ;
912+
913+ // Region Select->Floating Screenshot.
914+ case 31 :
915+ textBoxActionHelp . Text = "Perform the same action as if you had selected Floating Screenshot from Region Select." ;
916+ break ;
917+
918+ // Shows or hides the interface.
919+ case 32 :
920+ textBoxActionHelp . Text = "Show or hide the interface depending on its current visibility state." ;
921+ break ;
922+
923+ // Starts or stops screen capture.
924+ case 33 :
925+ textBoxActionHelp . Text = "Start or stop screen capture." ;
926+ break ;
879927 }
880928 }
881929 }
0 commit comments