1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit CheckGroupEditorDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
// LCL
Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, Buttons, Menus,
ComCtrls, ButtonPanel,
// IdeIntf
ObjInspStrConsts, IDEImagesIntf, IDEWindowIntf;
type
{ TCheckGroupEditorDlg }
TCheckGroupEditorDlg = class(TForm)
DuplicateCheckBox: TCheckBox;
ColumnsEdit: TEdit;
FCheck: TCheckGroup;
aCheck: TCheckGroup;
ColumnsLabel: TLabel;
BtnPanel: TButtonPanel;
FPopupMenu: TPopupMenu;
ColumnsUpDown: TUpDown;
LabelDisable: TLabel;
ToolBar: TToolBar;
tbAdd: TToolButton;
tbDelete: TToolButton;
ToolButton3: TToolButton;
tbUp: TToolButton;
tbDown: TToolButton;
ToolButton6: TToolButton;
tbEdit: TToolButton;
procedure AddItem(Sender:TObject);
procedure ColumnsEditChange(Sender: TObject);
procedure CreateItems(Sender: TObject);
procedure DeleteItem(Sender: TObject);
procedure FormClose(Sender: TObject; var {%H-}CloseAction: TCloseAction);
procedure FormCreate(Sender: TObject);
procedure ItemClick(Sender: TObject; Index: integer);
procedure ModifyItem(Sender: TObject);
procedure MoveDownItem(Sender: TObject);
procedure MoveUpItem(Sender: TObject);
procedure EnableDisable(Sender:TObject);
procedure ApplyCheck(Sender: TObject);
private
FItemIndex: Integer;
FModified: Boolean;
procedure Change;
procedure SetItemIndex(const AValue: Integer);
public
property ItemIndex: Integer read FItemIndex write SetItemIndex;
property Modified: Boolean read FModified write FModified;
end;
procedure AssignCheckGroup(dstCheck, srcCheck: TCheckGroup);
implementation
{$R *.lfm}
const
NormalColor = clBtnFace;
SelectedColor = clHighlight;
procedure AssignCheckGroup(dstCheck, srcCheck: TCheckGroup);
var
i: integer;
begin
dstCheck.Items.Assign(srcCheck.Items);
dstCheck.Caption := srcCheck.Caption;
dstCheck.Columns := srcCheck.Columns;
for i := 0 to srcCheck.Items.Count - 1 do
begin
dstCheck.Checked[i] := srcCheck.Checked[i];
dstCheck.CheckEnabled[i] := srcCheck.CheckEnabled[i]
end;
end;
{ TCheckGroupEditorDlg }
procedure TCheckGroupEditorDlg.FormCreate(Sender: TObject);
begin
ToolBar.Images := IDEImages.Images_16;
tbAdd.ImageIndex := IDEImages.LoadImage('laz_add');
tbDelete.ImageIndex := IDEImages.LoadImage('laz_delete');
tbUp.ImageIndex := IDEImages.LoadImage('arrow_up');
tbDown.ImageIndex := IDEImages.LoadImage('arrow_down');
tbEdit.ImageIndex := IDEImages.LoadImage('laz_edit');
Caption := cgCheckGroupEditor;
FItemIndex := -1;
ColumnsLabel.Caption := cgColumns;
DuplicateCheckBox.Caption := cgCheckDuplicate;
LabelDisable.Caption := cgDisable;
BtnPanel.CloseButton.Caption := sccsTrEdtApply;
BtnPanel.CloseButton.Kind := bkCustom;
BtnPanel.CloseButton.Glyph := nil;
BtnPanel.CloseButton.ModalResult := mrNone;
BtnPanel.CloseButton.OnClick := @ApplyCheck;
tbAdd.Hint := clbAdd;
tbDelete.Hint := clbDeleteHint;
tbUp.Hint := clbUp;
tbDown.Hint := clbDown;
tbEdit.Hint := clbModify;
Change;
IDEDialogLayoutList.ApplyLayout(Self);
end;
procedure TCheckGroupEditorDlg.FormClose(Sender: TObject; var CloseAction: TCloseAction);
begin
IDEDialogLayoutList.SaveLayout(Self);
end;
procedure TCheckGroupEditorDlg.AddItem(Sender:TObject);
var
strItem: string;
canAdd: boolean;
begin
strItem:='';
if not InputQuery(cgCheckGroupEditor, clbAdd, strItem) then
Exit;
canAdd := True;
if DuplicateCheckBox.Checked then
begin
canAdd := (FCheck.Items.IndexOf(strItem)= -1);
if not canAdd then
canAdd := MessageDlg(cgCheckGroupEditor, Format(cgCheckDuplicateMsg,[strItem]), mtConfirmation, mbYesNo, 0) = mrYes;
end;
if canAdd then
begin
FCheck.Items.Add(strItem);
Change;
end;
end;
procedure TCheckGroupEditorDlg.ColumnsEditChange(Sender: TObject);
begin
FCheck.Columns := ColumnsUpDown.Position;
end;
procedure TCheckGroupEditorDlg.DeleteItem(Sender:TObject);
begin
if (FCheck.Items.Count = 0) or (ItemIndex = -1) then
Exit;
if MessageDlg(cgCheckGroupEditor,
Format(clbDeleteQuest, [ItemIndex, FCheck.Items[ItemIndex]]),
mtConfirmation, mbYesNo, 0) = mrYes then
begin
FCheck.Items.Delete(ItemIndex);
if ItemIndex > FCheck.Items.Count - 1 then
ItemIndex := FCheck.Items.Count - 1;
if ItemIndex <> -1 then
FCheck.Controls[ItemIndex].Color := SelectedColor;
end;
end;
procedure TCheckGroupEditorDlg.MoveUpItem(Sender:TObject);
var
itemtmp: string;
checkedtmp: boolean;
begin
if (FCheck.Items.Count <= 1) or (ItemIndex < 1) then
Exit;
//swap the caption and the checked states
itemtmp := FCheck.Items[ItemIndex - 1];
checkedtmp := FCheck.Checked[ItemIndex - 1];
FCheck.Items[ItemIndex - 1] := FCheck.Items[ItemIndex];
FCheck.Checked[ItemIndex - 1] := FCheck.Checked[ItemIndex];
FCheck.Items[ItemIndex] := itemtmp;
FCheck.Checked[ItemIndex] := checkedtmp;
//swap the states enabled
checkedtmp := FCheck.CheckEnabled[ItemIndex - 1];
FCheck.CheckEnabled[ItemIndex - 1] := FCheck.CheckEnabled[ItemIndex];
FCheck.CheckEnabled[ItemIndex] := checkedtmp;
FCheck.Controls[ItemIndex].Color := NormalColor;
ItemIndex := ItemIndex - 1;
FCheck.Controls[ItemIndex].Color := SelectedColor;
end;
procedure TCheckGroupEditorDlg.MoveDownItem(Sender:TObject);
var
itemtmp: string;
checkedtmp: boolean;
begin
if (FCheck.Items.Count <= 1) or (ItemIndex = FCheck.Items.Count-1) or (ItemIndex=-1) then
Exit;
//swap the caption and the checked states
itemtmp := FCheck.Items[ItemIndex + 1];
checkedtmp := FCheck.Checked[ItemIndex + 1];
FCheck.Items[ItemIndex + 1] := FCheck.Items[ItemIndex];
FCheck.Checked[ItemIndex + 1] := FCheck.Checked[ItemIndex];
FCheck.Items[ItemIndex] := itemtmp;
FCheck.Checked[ItemIndex] := checkedtmp;
//swap the states enabled
checkedtmp := FCheck.CheckEnabled[ItemIndex + 1];
FCheck.CheckEnabled[ItemIndex + 1] := FCheck.CheckEnabled[ItemIndex];
FCheck.CheckEnabled[ItemIndex] := checkedtmp;
FCheck.Controls[ItemIndex].Color := NormalColor;
ItemIndex := ItemIndex + 1;
FCheck.Controls[ItemIndex].Color := SelectedColor;
end;
procedure TCheckGroupEditorDlg.ModifyItem(Sender:TObject);
begin
if (FCheck.Items.Count = 0) or (ItemIndex = -1) then
Exit;
FCheck.Items[ItemIndex] := InputBox(cgCheckGroupEditor, clbModify, FCheck.Items[ItemIndex]);
end;
procedure TCheckGroupEditorDlg.ItemClick(Sender: TObject; Index: integer);
begin
if ItemIndex <> -1 then
FCheck.Controls[ItemIndex].Color := NormalColor;
ItemIndex := Index;
if ItemIndex <> -1 then
FCheck.Controls[ItemIndex].Color := SelectedColor;
end;
procedure TCheckGroupEditorDlg.EnableDisable(Sender:TObject);
var i:integer;
begin
for i:=0 to FCheck.Items.Count-1 do begin
if (Sender=FPopupMenu.Items[i]) then
FCheck.CheckEnabled[i]:=not FCheck.CheckEnabled[i]
end;
end;
procedure TCheckGroupEditorDlg.CreateItems(Sender:TObject);
var
i: integer;
begin
FPopupMenu.Items.Clear;
for i := 0 to FCheck.Items.Count-1 do
begin
FPopupMenu.Items.Add(TMenuItem.Create(self));
FPopupMenu.Items[i].Caption := FCheck.Items[i];
FPopupMenu.Items[i].Checked := FCheck.CheckEnabled[i];
FPopupMenu.Items[i].OnClick := @EnableDisable;
end;
end;
procedure TCheckGroupEditorDlg.ApplyCheck(Sender:TObject);
begin
if Assigned(FCheck) then
begin
AssignCheckGroup(aCheck, FCheck);
FModified := True;
end;
end;
procedure TCheckGroupEditorDlg.Change;
begin
tbDelete.Enabled := ItemIndex <> -1;
tbEdit.Enabled := ItemIndex <> -1;
tbUp.Enabled := (ItemIndex <> -1) and (ItemIndex > 0);
tbDown.Enabled := (ItemIndex <> -1) and (ItemIndex < FCheck.Items.Count - 1);
end;
procedure TCheckGroupEditorDlg.SetItemIndex(const AValue: Integer);
begin
if FItemIndex <> AValue then
begin
FItemIndex := AValue;
Change;
end;
end;
end.
|