forked from fpc/Lazarus
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsqlitecomponenteditor.pas
More file actions
335 lines (297 loc) · 8.28 KB
/
Copy pathsqlitecomponenteditor.pas
File metadata and controls
335 lines (297 loc) · 8.28 KB
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit SqliteComponentEditor;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LazFileUtils, LResources, Forms, Controls, Dialogs, StdCtrls,
Buttons, customsqliteds, ComponentEditors, LazarusPackageIntf, LazIdeIntf,
FieldsEditor, SqliteCompStrings;
type
{TSqliteEditor}
TSqliteEditor = class(TFieldsComponentEditor)
private
FVerbOffset: Integer;
public
procedure ExecuteVerb(Index: Integer); override;
function GetVerb(Index: Integer): string; override;
function GetVerbCount: Integer; override;
procedure Edit; override;
end;
{ TSqliteTableEditorForm }
TSqliteTableEditorForm = class(TForm)
butCreate: TButton;
butClose: TButton;
butAdd: TButton;
butDelete: TButton;
comboFieldType: TComboBox;
editFieldName: TEdit;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
lblFilePath: TLabel;
listFields: TListBox;
DataSet: TCustomSqliteDataSet;
procedure FormCreate(Sender: TObject);
procedure LoadCurrentFields;
procedure FillComboValues;
procedure SetComboValue(AObject: TObject);
procedure SqliteTableEditorFormShow(Sender: TObject);
procedure butAddClick(Sender: TObject);
procedure butCancelClick(Sender: TObject);
procedure butDeleteClick(Sender: TObject);
procedure butOkClick(Sender: TObject);
procedure comboFieldTypeChange(Sender: TObject);
procedure editFieldNameEditingDone(Sender: TObject);
procedure listFieldsSelectionChange(Sender: TObject; User: boolean);
private
{ private declarations }
public
{ public declarations }
end;
implementation
{$R sqlitecomponenteditor.lfm}
uses
db;
function StringListHasDuplicates(const List:TStrings):boolean;
var
i,j:Integer;
begin
Result:=False;
for i := 0 to List.Count - 1 do
for j:= i+1 to List.Count - 1 do
if AnsiCompareText(List[i],List[j]) = 0 then
begin
Result:=True;
Exit;
end;
end;
{TSqliteEditor}
procedure TSqliteEditor.ExecuteVerb(Index: Integer);
begin
case Index - FVerbOffset of
0: Edit;
else
inherited ExecuteVerb(Index);
end;
end;
function TSqliteEditor.GetVerb(Index: Integer): string;
begin
case Index - FVerbOffset of
0:
begin
Result := sCreateEditTable
end;
else
Result := inherited GetVerb(Index);
end;
end;
function TSqliteEditor.GetVerbCount: Integer;
begin
FVerbOffset := inherited GetVerbCount;
Result := FVerbOffset + 1;
end;
procedure TSqliteEditor.Edit;
var
ADataSet:TCustomSqliteDataSet;
OldDir, ProjectDir:String;
begin
ADataSet:=TCustomSqliteDataSet(GetComponent);
if ADataSet.Filename = '' then
begin
ShowMessage(sFileNameNotSetItSNotPossibleToCreateEditATable);
exit;
end;
if ADataSet.TableName = '' then
begin
ShowMessage(sTableNameNotSetItSNotPossibleToCreateEditATable);
exit;
end;
with TSqliteTableEditorForm.Create(Application) do
begin
try
// In case Filename is a relative one, change dir to project dir
// so the datafile will be created in the right place
OldDir := GetCurrentDirUTF8;
ProjectDir := ExtractFilePath (LazarusIDE.ActiveProject.MainFile.FileName);
if ProjectDir <> '' then
SetCurrentDirUTF8(ProjectDir);
Dataset := ADataset;
ShowModal;
finally
SetCurrentDirUTF8(OldDir);
Free;
end;
end;
end;
{ TSqliteTableEditorForm }
procedure TSqliteTableEditorForm.butAddClick(Sender: TObject);
begin
//In the case there's no items
editFieldName.Enabled:=True;
comboFieldType.Enabled:=True;
listFields.Items.AddObject('AFieldName',TObject(ftString));
listFields.ItemIndex:=listFields.Items.Count-1;
editFieldName.Text:='AFieldName';
editFieldName.SetFocus;
end;
procedure TSqliteTableEditorForm.LoadCurrentFields;
var
OldSql:String;
OldActive:Boolean;
i:Integer;
begin
with Dataset do
begin
OldSql:=Sql;
OldActive:=Active;
Sql:='Select * from '+TableName+' where 1 = 0';//dummy sql
Close;
Open;
for i:=0 to FieldDefs.Count - 1 do
listFields.Items.AddObject(FieldDefs[i].Name,
TObject(PtrInt(FieldDefs[i].DataType)));
listFields.ItemIndex:=0;
Sql:=OldSql;
Active:=OldActive;
end;
end;
procedure TSqliteTableEditorForm.FormCreate(Sender: TObject);
begin
Label1.Caption := sFieldName;
Label2.Caption := sFieldType;
butCreate.Caption := sCreateTable;
butClose.Caption := sClose;
butAdd.Caption := sAdd;
butDelete.Caption := sDelete;
end;
procedure TSqliteTableEditorForm.FillComboValues;
begin
with comboFieldType.Items do
begin
Clear;
AddObject('String',TObject(ftString));
AddObject('Integer',TObject(ftInteger));
AddObject('LargeInt',TObject(ftLargeInt));
AddObject('AutoInc',TObject(ftAutoInc));
AddObject('Word',TObject(ftWord));
AddObject('Float',TObject(ftFloat));
AddObject('Currency',TObject(ftCurrency));
AddObject('Boolean',TObject(ftBoolean));
AddObject('DateTime',TObject(ftDateTime));
AddObject('Date',TObject(ftDate));
AddObject('Time',TObject(ftTime));
AddObject('Memo',TObject(ftMemo));
end;
end;
procedure TSqliteTableEditorForm.SetComboValue(AObject: TObject);
var
AIndex:Integer;
begin
AIndex:=comboFieldType.Items.IndexOfObject(AObject);
if AIndex <> -1 then
comboFieldType.ItemIndex:=AIndex
else
raise Exception.Create(sTableEditorFieldTypeNotRecognized);
end;
procedure TSqliteTableEditorForm.SqliteTableEditorFormShow(Sender: TObject);
begin
FillComboValues;
if Dataset.TableExists then
begin
LoadCurrentFields;
end
else
begin
editFieldName.Enabled:=False;
comboFieldType.Enabled:=False;
end;
lblFilePath.Caption := Format(sFilePath, [ExpandFileNameUTF8(DataSet.FileName)]);
label3.caption := Format(sTableName, [DataSet.TableName]);
end;
procedure TSqliteTableEditorForm.butCancelClick(Sender: TObject);
begin
Close;
end;
procedure TSqliteTableEditorForm.butDeleteClick(Sender: TObject);
var
AIndex: Integer;
begin
AIndex:=listFields.ItemIndex;
if AIndex <> -1 then
begin
listFields.Items.Delete(AIndex);
if listFields.Items.Count = 0 then
begin
editFieldName.Text:='';
editFieldName.Enabled:=False;
comboFieldType.ItemIndex:=-1;
comboFieldType.Enabled:=False;
end
else
begin
if AIndex <> 0 then
listFields.ItemIndex:=Pred(AIndex)
else
listFields.ItemIndex:=AIndex;
end;
end;
end;
procedure TSqliteTableEditorForm.butOkClick(Sender: TObject);
var
i:Integer;
begin
if listFields.Items.Count = 0 then
begin
ShowMessage(sNoFieldsAddedTableWillNotBeCreated);
Exit;
end;
if StringListHasDuplicates(listFields.Items) then
begin
ShowMessage(sItSNotAllowedFieldsWithTheSameName);
Exit;
end;
if Dataset.TableExists then
begin
if MessageDlg(Format(sATableNamedAlreadyExistsAreYouSureYouWantToReplace, [Dataset.TableName, LineEnding]),
mtWarning,[mbYes,mbNo],0) <> mrYes then
exit
else
DataSet.ExecSQL('DROP TABLE '+DataSet.TableName+';');
end;
with DataSet.FieldDefs do
begin
Clear;
for i:= 0 to listFields.Items.Count - 1 do
Add(listFields.Items[i],TFieldType(PtrInt(listFields.Items.Objects[i])));
end;
DataSet.CreateTable;
if Dataset.TableExists then
ShowMessage(sTableCreatedSuccessfully)
else
ShowMessage(sItWasNotPossibleToCreateTheTable);
end;
procedure TSqliteTableEditorForm.comboFieldTypeChange(Sender: TObject);
begin
if listFields.ItemIndex <> -1 then
listFields.Items.Objects[listFields.ItemIndex]:=TObject(comboFieldType.Items.Objects[comboFieldType.ItemIndex]);
end;
procedure TSqliteTableEditorForm.editFieldNameEditingDone(Sender: TObject);
begin
if listFields.ItemIndex <> -1 then
listFields.Items[listFields.ItemIndex]:=editFieldName.Text;
end;
procedure TSqliteTableEditorForm.listFieldsSelectionChange(Sender: TObject;
User: boolean);
begin
if (listFields.ItemIndex <> -1) then
begin
editFieldName.Text:=listFields.Items[listFields.ItemIndex];
SetComboValue(listFields.Items.Objects[listFields.ItemIndex]);
end;
end;
end.