Ignore:
Timestamp:
Nov 29, 2017, 3:45:03 PM (7 years ago)
Author:
chronos
Message:
  • Added: New rule item option to match any character except given one.
  • Added: Show file name in main window title.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/generator/Forms/UFormRuleItem.pas

    r122 r123  
    1616    ButtonCancel: TButton;
    1717    ButtonOk: TButton;
     18    CheckBoxAnyExcept: TCheckBox;
    1819    CheckBoxOptional: TCheckBox;
    1920    CheckBoxRepetitive: TCheckBox;
     
    134135  CheckBoxOptional.Checked := RuleItem.Optional;
    135136  CheckBoxRepetitive.Checked := RuleItem.Repetitive;
     137  CheckBoxAnyExcept.Checked := RuleItem.AnyExcept;
    136138  TFormRuleItems(FormRuleItems).LoadData(RuleItem.SubItems);
    137139  UpdateInterface;
     
    150152  RuleItem.Optional := CheckBoxOptional.Checked;
    151153  RuleItem.Repetitive := CheckBoxRepetitive.Checked;
     154  RuleItem.AnyExcept := CheckBoxAnyExcept.Checked;
    152155end;
    153156
Note: See TracChangeset for help on using the changeset viewer.