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
|
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit CheckListboxEditorDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
// LCL
LCLType, Forms, Controls, Dialogs, CheckLst, Buttons, ComCtrls, ButtonPanel,
ActnList,
// IdeIntf
IDEImagesIntf, ObjInspStrConsts, IDEWindowIntf;
type
{ TCheckListBoxEditorDlg }
TCheckListBoxEditorDlg = class(TForm)
actAdd: TAction;
actDel: TAction;
actEdit: TAction;
actMoveUp: TAction;
actMoveDown: TAction;
ActionList1: TActionList;
BtnPanel: TButtonPanel;
FCheck: TCheckListBox;
aCheck: TCheckListBox;
ToolBar: TToolBar;
tbAdd: TToolButton;
tbDelete: TToolButton;
ToolButton3: TToolButton;
tbUp: TToolButton;
tbDown: TToolButton;
ToolButton6: TToolButton;
tbEdit: TToolButton;
procedure actAddExecute(Sender: TObject);
procedure actDelExecute(Sender: TObject);
procedure actEditExecute(Sender: TObject);
procedure actMoveDownExecute(Sender: TObject);
procedure actMoveUpExecute(Sender: TObject);
procedure FCheckClick(Sender: TObject);
procedure FormClose(Sender: TObject; var {%H-}CloseAction: TCloseAction);
procedure FormCreate(Sender: TObject);
procedure ApplyCheck(Sender: TObject);
private
FModified: Boolean;
procedure Change;
public
property Modified: Boolean read FModified write FModified;
end;
procedure AssignCheckList(dstCheck, srcCheck: TCheckListBox);
implementation
{$R *.lfm}
procedure AssignCheckList(dstCheck, srcCheck: TCheckListBox);
var
i: integer;
begin
dstCheck.Items.Clear;
dstCheck.AllowGrayed := srcCheck.AllowGrayed;
dstCheck.Items := srcCheck.Items;
dstCheck.ItemHeight := srcCheck.ItemHeight;
for i := 0 to srcCheck.Items.Count - 1 do
begin
if srcCheck.Items[i] <> dstCheck.Items[i] then
dstCheck.Items[i] := srcCheck.Items[i];
dstCheck.State[i] := srcCheck.State[i]
end;
end;
{ TCheckListBoxEditorDlg }
procedure TCheckListBoxEditorDlg.FormCreate(Sender: TObject);
begin
ToolBar.Images := IDEImages.Images_16;
actAdd.ImageIndex := IDEImages.LoadImage('laz_add');
actDel.ImageIndex := IDEImages.LoadImage('laz_delete');
actMoveUp.ImageIndex := IDEImages.LoadImage('arrow_up');
actMoveDown.ImageIndex := IDEImages.LoadImage('arrow_down');
actEdit.ImageIndex := IDEImages.LoadImage('laz_edit');
Caption := clbCheckListBoxEditor;
BtnPanel.OKButton.Caption := oisOk;
BtnPanel.CancelButton.Caption := oisCancel;
BtnPanel.HelpButton.Caption := cActionListEditorHelpCategory;
BtnPanel.CloseButton.Kind := bkCustom;
BtnPanel.CloseButton.LoadGlyphFromStock(idButtonYes);
BtnPanel.CloseButton.Caption := sccsTrEdtApply;
BtnPanel.CloseButton.OnClick := @ApplyCheck;
actAdd.Hint := clbAdd;
actDel.Hint := clbDeleteHint;
actMoveUp.Hint := clbUp;
actMoveDown.Hint := clbDown;
actEdit.Hint := clbModify;
actMoveUp.ShortCut := scCtrl or VK_UP;
actMoveDown.ShortCut := scCtrl or VK_DOWN;
Modified := False;
IDEDialogLayoutList.ApplyLayout(Self);
end;
procedure TCheckListBoxEditorDlg.FormClose(Sender: TObject; var CloseAction: TCloseAction);
begin
IDEDialogLayoutList.SaveLayout(Self);
end;
procedure TCheckListBoxEditorDlg.actAddExecute(Sender: TObject);
var
strItem: string;
begin
strItem:='';
if InputQuery(clbCheckListBoxEditor, clbAdd, strItem) then
begin
FCheck.Items.Add(strItem);
Change;
end;
end;
procedure TCheckListBoxEditorDlg.actDelExecute(Sender: TObject);
var
OldIndex : integer;
begin
if FCheck.ItemIndex = -1 then exit;
if MessageDlg(clbCheckListBoxEditor, Format(clbDeleteQuest, [FCheck.ItemIndex, FCheck.Items[FCheck.ItemIndex]]),
mtConfirmation, mbYesNo, 0) = mrYes then
begin
// save old index
OldIndex := FCheck.ItemIndex;
FCheck.Items.Delete(FCheck.ItemIndex);
if (FCheck.Count-1<OldIndex) then
FCheck.ItemIndex := FCheck.Count-1
else
FCheck.ItemIndex := OldIndex;
Change;
end;
end;
procedure TCheckListBoxEditorDlg.actEditExecute(Sender: TObject);
begin
if FCheck.ItemIndex = -1 then exit;
FCheck.Items[FCheck.ItemIndex]:=InputBox(clbCheckListBoxEditor,clbModify,FCheck.Items[FCheck.ItemIndex]);
end;
procedure TCheckListBoxEditorDlg.actMoveDownExecute(Sender: TObject);
var
itemtmp: string;
checkedtmp: boolean;
begin
if (FCheck.Items.Count<=1)or(FCheck.ItemIndex=FCheck.Items.Count-1)or(FCheck.ItemIndex=-1) then exit;
itemtmp:=FCheck.Items[FCheck.ItemIndex+1];
checkedtmp:=FCheck.Checked[FCheck.ItemIndex+1];
FCheck.Items[FCheck.ItemIndex+1]:=FCheck.Items[FCheck.ItemIndex];
FCheck.Checked[FCheck.ItemIndex+1]:=FCheck.Checked[FCheck.ItemIndex];
FCheck.Items[FCheck.ItemIndex]:=itemtmp;
FCheck.Checked[FCheck.ItemIndex]:=checkedtmp;
FCheck.ItemIndex:=FCheck.ItemIndex+1;
Change;
end;
procedure TCheckListBoxEditorDlg.actMoveUpExecute(Sender: TObject);
var
itemtmp: string;
checkedtmp: boolean;
begin
if (FCheck.Items.Count<=1)or(FCheck.ItemIndex<1) then exit;
itemtmp:=FCheck.Items[FCheck.ItemIndex-1];
checkedtmp:=FCheck.Checked[FCheck.ItemIndex-1];
FCheck.Items[FCheck.ItemIndex-1]:=FCheck.Items[FCheck.ItemIndex];
FCheck.Checked[FCheck.ItemIndex-1]:=FCheck.Checked[FCheck.ItemIndex];
FCheck.Items[FCheck.ItemIndex]:=itemtmp;
FCheck.Checked[FCheck.ItemIndex]:=checkedtmp;
FCheck.ItemIndex:=FCheck.ItemIndex-1;
Change;
end;
procedure TCheckListBoxEditorDlg.FCheckClick(Sender: TObject);
begin
Change;
end;
procedure TCheckListBoxEditorDlg.ApplyCheck(Sender:TObject);
begin
if Assigned(FCheck) then
begin
AssignCheckList(aCheck, FCheck);
FModified := True;
end;
end;
procedure TCheckListBoxEditorDlg.Change;
begin
actDel.Enabled := FCheck.ItemIndex <> -1;
actEdit.Enabled := FCheck.ItemIndex <> -1;
actMoveUp.Enabled := (FCheck.ItemIndex <> -1) and (FCheck.ItemIndex > 0);
actMoveDown.Enabled := (FCheck.ItemIndex <> -1) and (FCheck.ItemIndex < FCheck.Count - 1);
end;
end.
|