1object MsgViewEditorDlg: TMsgViewEditorDlg
2  Left = 343
3  Height = 345
4  Top = 264
5  Width = 548
6  Caption = 'Messages Editor'
7  ClientHeight = 345
8  ClientWidth = 548
9  OnCreate = MsgViewEditorDlgCreate
10  LCLVersion = '1.1'
11  object FilterSetGroupBox: TGroupBox
12    Left = 8
13    Height = 112
14    Top = 8
15    Width = 534
16    Anchors = [akTop, akLeft, akRight]
17    Caption = 'Filter Set:'
18    ClientHeight = 91
19    ClientWidth = 526
20    TabOrder = 0
21    object FilterSetsListBox: TListBox
22      Left = 0
23      Height = 91
24      Top = 0
25      Width = 358
26      Align = alLeft
27      ItemHeight = 0
28      TabOrder = 0
29    end
30    object AddNewSetButton: TBitBtn
31      Left = 366
32      Height = 25
33      Top = 0
34      Width = 155
35      Caption = 'AddNewSetButton'
36      OnClick = AddNewSetButtonClick
37      TabOrder = 1
38    end
39    object DeleteSetButton: TBitBtn
40      Left = 366
41      Height = 25
42      Top = 31
43      Width = 155
44      Caption = 'DeleteSetButton'
45      OnClick = DeleteSetButtonClick
46      TabOrder = 2
47    end
48    object RenameSetButton: TBitBtn
49      Left = 366
50      Height = 25
51      Top = 63
52      Width = 155
53      Caption = 'RenameSetButton'
54      OnClick = RenameSetButtonClick
55      TabOrder = 3
56    end
57  end
58  object ActiveFilterSetGroupBox: TGroupBox
59    Left = 8
60    Height = 179
61    Top = 128
62    Width = 535
63    Anchors = [akTop, akLeft, akRight, akBottom]
64    Caption = 'ActiveFilterSetGroupBox'
65    ClientHeight = 158
66    ClientWidth = 527
67    TabOrder = 1
68    object RulesListView: TListView
69      Left = 0
70      Height = 158
71      Top = 0
72      Width = 527
73      Align = alClient
74      Columns = <
75        item
76          Caption = 'Rule'
77          Width = 250
78        end
79        item
80        end
81        item
82          Caption = 'Action'
83        end
84        item
85        end
86        item
87        end
88        item
89        end>
90      SortType = stText
91      TabOrder = 0
92      ViewStyle = vsReport
93    end
94  end
95  object CancelButton: TBitBtn
96    Left = 299
97    Height = 25
98    Top = 312
99    Width = 133
100    Anchors = [akLeft, akBottom]
101    Caption = 'CancelButton'
102    ModalResult = 2
103    TabOrder = 2
104  end
105  object OkButton: TBitBtn
106    Left = 128
107    Height = 25
108    Top = 312
109    Width = 131
110    Anchors = [akLeft, akBottom]
111    Caption = 'OkButton'
112    OnClick = OkButtonClick
113    TabOrder = 3
114  end
115end
116