Exemplo n.º 1
0
		public ActionEntry Copy()
		{
			ActionEntry e = new ActionEntry();
			e.pluginName = pluginName;
			e.actionParam = actionParam;
			return e;
		}
Exemplo n.º 2
0
 public HilightEntry(string searchText, Color fgColor, Color bgColor, bool isWordMatch)
 {
     this.searchText      = searchText;
     this.fgColor         = fgColor;
     this.bgColor         = bgColor;
     this.isRegEx         = false;
     this.isCaseSensitive = false;
     this.isLedSwitch     = false;
     this.isStopTail      = false;
     this.isSetBookmark   = false;
     this.isActionEntry   = false;
     this.actionEntry     = null;
     this.IsWordMatch     = isWordMatch;
 }
Exemplo n.º 3
0
		public HilightEntry(string searchText, Color fgColor, Color bgColor,
			bool isRegEx, bool isCaseSensitive, bool isLedSwitch,
			bool isStopTail, bool isSetBookmark, bool isActionEntry, ActionEntry actionEntry, bool isWordMatch)
		{
			SearchText = searchText;
			ForegroundColor = fgColor;
			BackgroundColor = bgColor;
			IsRegEx = isRegEx;
			IsCaseSensitive = isCaseSensitive;
			IsLedSwitch = isLedSwitch;
			IsStopTail = isStopTail;
			IsSetBookmark = isSetBookmark;
			IsActionEntry = isActionEntry;
			ActionEntry = actionEntry;
			IsWordMatch = isWordMatch;
		}
Exemplo n.º 4
0
 public HilightEntry(string searchText, Color fgColor, Color bgColor,
                     bool isRegEx, bool isCaseSensitive, bool isLedSwitch,
                     bool isStopTail, bool isSetBookmark, bool isActionEntry, ActionEntry actionEntry, bool isWordMatch)
 {
     this.searchText      = searchText;
     this.fgColor         = fgColor;
     this.bgColor         = bgColor;
     this.isRegEx         = isRegEx;
     this.isCaseSensitive = isCaseSensitive;
     this.isLedSwitch     = isLedSwitch;
     this.isStopTail      = isStopTail;
     this.isSetBookmark   = isSetBookmark;
     this.isActionEntry   = isActionEntry;
     this.actionEntry     = actionEntry;
     this.IsWordMatch     = isWordMatch;
 }
Exemplo n.º 5
0
 public HilightEntry(string searchText, Color fgColor, Color bgColor,
                     bool isRegEx, bool isCaseSensitive, bool isLedSwitch,
                     bool isStopTail, bool isSetBookmark, bool isActionEntry, ActionEntry actionEntry, bool isWordMatch)
 {
     SearchText      = searchText;
     ForegroundColor = fgColor;
     BackgroundColor = bgColor;
     IsRegEx         = isRegEx;
     IsCaseSensitive = isCaseSensitive;
     IsLedSwitch     = isLedSwitch;
     IsStopTail      = isStopTail;
     IsSetBookmark   = isSetBookmark;
     IsActionEntry   = isActionEntry;
     ActionEntry     = actionEntry;
     IsWordMatch     = isWordMatch;
 }