Example #1
0
 public match_item(BitArray matches, font_info font, line line, int line_idx, log_view parent) : base(matches, font, line, line_idx) {
 }
Example #2
0
 public void copy_from(font_info other)
 {
     fg = other.fg;
     bg = other.bg;
 }
Example #3
0
 public full_log_match_item(BitArray matches, font_info font, line line, int line_idx, log_view parent) : base(matches, font, line, line_idx, parent) {
     Debug.Assert(parent != null);
     parent_ = parent;
 }
Example #4
0
 protected bool Equals(font_info other)
 {
     return(fg.Equals(other.fg) && bg.Equals(other.bg));
 }
Example #5
0
 public match_item(BitArray matches, font_info font, line line, int line_idx, log_view parent) : base(matches, font, line, line_idx)
 {
 }
Example #6
0
 public full_log_match_item(BitArray matches, font_info font, line line, int line_idx, log_view parent) : base(matches, font, line, line_idx, parent)
 {
     Debug.Assert(parent != null);
     parent_ = parent;
 }
Example #7
0
 protected bool Equals(font_info other)
 {
     return fg.Equals(other.fg) && bg.Equals(other.bg);
 }
Example #8
0
 public void copy_from(font_info other)
 {
     fg = other.fg;
     bg = other.bg;
 }