summaryrefslogtreecommitdiff
path: root/extras/lazarus_ide/fpguilazideintf.pas
blob: 9c797ec273a7101ae35b238a5acab0c16a999f3a (plain)
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
{
  Copyright (C) 2009-2015 by Graeme Geldenhuys

  This library is free software; you can redistribute it and/or modify it
  under the terms of the GNU Library General Public License as published by
  the Free Software Foundation; either version 2 of the License, or (at your
  option) any later version.

  This program is distributed in the hope that it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  for more details.

  You should have received a copy of the GNU Library General Public License
  along with this library; if not, write to the Free Software Foundation,
  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  
  
  Abstract:
    This unit adds a new project type to the Lazarus IDE.

    New Project Type:
      fpGUI Application - A pure fpGUI Toolkit based application.
      fpGUI+Agg2D Application - An fpGUI application with a TAgg2D instance.

}

unit fpGUILazIDEIntf;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, LazIDEIntf, ProjectIntf, Controls, Forms;

type

  TfpGUIApplicationDescriptor = class(TProjectDescriptor)
  public
    constructor Create; override;
    function GetLocalizedName: string; override;
    function GetLocalizedDescription: string; override;
    function InitProject(AProject: TLazProject): TModalResult; override;
  end;
  
  TfpGUIAgg2dApplicationDescriptor = class(TProjectDescriptor)
  public
    constructor Create; override;
    function GetLocalizedName: string; override;
    function GetLocalizedDescription: string; override;
    function InitProject(AProject: TLazProject): TModalResult; override;
  end;

var
  ProjectDescriptorfpGUIApplication: TfpGUIApplicationDescriptor;
  ProjectDescriptorfpGUIAgg2dApplication: TfpGUIAgg2dApplicationDescriptor;


procedure Register;


implementation

const
  le: string = LineEnding;


procedure Register;
begin
  ProjectDescriptorfpGUIApplication := TfpGUIApplicationDescriptor.Create;
  RegisterProjectDescriptor(ProjectDescriptorfpGUIApplication);

  ProjectDescriptorfpGUIAgg2dApplication := TfpGUIAgg2dApplicationDescriptor.Create;
  RegisterProjectDescriptor(ProjectDescriptorfpGUIAgg2dApplication);
end;

{ TfpGUIApplicationDescriptor }

constructor TfpGUIApplicationDescriptor.Create;
begin
  inherited Create;
  Name := 'fpGUI Application';
end;

function TfpGUIApplicationDescriptor.GetLocalizedName: string;
begin
  Result := 'fpGUI Toolkit Application';
end;

function TfpGUIApplicationDescriptor.GetLocalizedDescription: string;
begin
  Result := 'fpGUI Toolkit Application'+le+le
           +'An application based purely on the fpGUI Toolkit.';
end;

function TfpGUIApplicationDescriptor.InitProject(AProject: TLazProject): TModalResult;
var
  NewSource: String;
  MainFile: TLazProjectFile;
begin
  inherited InitProject(AProject);

  MainFile := AProject.CreateProjectFile('project1.lpr');
  MainFile.IsPartOfProject := true;
  AProject.AddFile(MainFile, false);
  AProject.MainFileID := 0;

  // create program source
  NewSource := 'program Project1;'+le
    +le
    +'{$mode objfpc}{$H+}'+le
    +le
    +'uses'+le
    +'  {$IFDEF UNIX}{$IFDEF UseCThreads}'+le
    +'  cthreads,'+le
    +'  {$ENDIF}{$ENDIF}'+le
    +'  Classes, fpg_base, fpg_main, fpg_form;'+le
    +le
    +'type'+le
    +le
    +'  TMainForm = class(TfpgForm)'+le
    +'  private'+le
    +'    {@VFD_HEAD_BEGIN: MainForm}'+le
    +'    {@VFD_HEAD_END: MainForm}'+le
    +'  public'+le
    +'    procedure AfterCreate; override;'+le
    +'  end;'+le
    +le
    +'{@VFD_NEWFORM_DECL}'+le
    +le
    +le
    +le
    +'{@VFD_NEWFORM_IMPL}'+le
    +le
    +'procedure TMainForm.AfterCreate;'+le
    +'begin'+le
    +'  {%region ''Auto-generated GUI code'' -fold}' + le
    +'  {@VFD_BODY_BEGIN: MainForm}'+le
    +'  Name := ''MainForm'';'+le
    +'  SetPosition(316, 186, 300, 250);'+le
    +'  WindowTitle := ''MainForm'';'+le
    +le
    +'  {@VFD_BODY_END: MainForm}'+le
    +'  {%endregion}' + le
    +'end;'+le
    +le
    +le
    +'procedure MainProc;'+le
    +'var'+le
    +'  frm: TMainForm;'+le
    +'begin'+le
    +'  fpgApplication.Initialize;'+le
    +'  fpgApplication.CreateForm(TMainForm, frm);'+le
    +'  try'+le
    +'    frm.Show;'+le
    +'    fpgApplication.Run;'+le
    +'  finally'+le
    +'    frm.Free;'+le
    +'  end;'+le
    +'end;'+le
    +le
    +'begin'+le
    +'  MainProc;'+le
    +'end.'+le
    +le;
    
  AProject.MainFile.SetSourceText(NewSource);
  AProject.AddPackageDependency('fpgui_toolkit');
  // compiler options
  AProject.LazCompilerOptions.UseLineInfoUnit := True;

  Result := mrOK;
end;

{ TfpGUIAgg2dApplicationDescriptor }

constructor TfpGUIAgg2dApplicationDescriptor.Create;
begin
  inherited Create;
  Name := 'fpGUI+Agg2D Application';
end;

function TfpGUIAgg2dApplicationDescriptor.GetLocalizedName: string;
begin
  Result := 'fpGUI+Agg2D Application';
end;

function TfpGUIAgg2dApplicationDescriptor.GetLocalizedDescription: string;
begin
  Result := 'fpGUI+Agg2D Application'+le+le
           +'An application based on the fpGUI Toolkit'+le
           +'and uses Agg2D to render to an image buffer. Great '
           +'for quick demos.';
end;

function TfpGUIAgg2dApplicationDescriptor.InitProject(AProject: TLazProject): TModalResult;
var
  NewSource: String;
  MainFile: TLazProjectFile;
begin
  inherited InitProject(AProject);

  MainFile := AProject.CreateProjectFile('project1.lpr');
  MainFile.IsPartOfProject := true;
  AProject.AddFile(MainFile, false);
  AProject.MainFileID := 0;

  // create program source
  NewSource := 'program Project1;'+le
    +le
    +'uses'+le
    +'  {$IFDEF UNIX}{$IFDEF UseCThreads}'+le
    +'  cthreads,'+le
    +'  {$ENDIF}{$ENDIF}'+le
    +'  Classes, SysUtils,'+le
    +'  fpg_base, fpg_main, fpg_form, Agg2D;'+le
    +le
    +'type'+le
    +''+le
    +'  TMainForm = class(TfpgForm)'+le
    +'  private'+le
    +'    {@VFD_HEAD_BEGIN: MainForm}'+le
    +'    {@VFD_HEAD_END: MainForm}'+le
    +'    FImg: TfpgImage;'+le
    +'    FAgg2D: TAgg2D;'+le
    +'    procedure InitComposedImage;'+le
    +'    procedure FormCreate(Sender: TObject);'+le
    +'    procedure DoAggPainting;'+le
    +'    procedure FormPaint(Sender: TObject);'+le
    +'  public'+le
    +'    destructor Destroy; override;'+le
    +'    procedure AfterCreate; override;'+le
    +'  end;'+le
    +le
    +'{@VFD_NEWFORM_DECL}'+le
    +le
    +le
    +le
    +'{@VFD_NEWFORM_IMPL}'+le
    +''+le
    +'procedure TMainForm.DoAggPainting;'+le
    +'begin'+le
    +'  // **** DO YOUR AGG2D PAINTING HERE ****'+le
    +le
    +'  // Paint composedimage white'+le
    +'  FAgg2D.ClearAll(255, 255, 255);'+le
    +'  // So some advanced painting to the ComposedImage'+le
    +'  FAgg2D.LineWidth(10);'+le
    +'  FAgg2D.LineColor($32, $cd, $32);'+le
    +'  FAgg2D.FillColor($ff, $d7, $00);'+le
    +'  FAgg2D.Star(100, 100, 30, 70, 55, 5);'+le
    +'end;'+le
    +le
    +'procedure TMainForm.InitComposedImage;'+le
    +'begin'+le
    +'  FImg := TfpgImage.Create;'+le
    +'  FImg.AllocateImage(32, Width, Height);'+le
    +'  FAgg2D.Attach(FImg);'+le
    +'end;'+le
    +le
    +'procedure TMainForm.FormCreate(Sender: TObject);'+le
    +'begin'+le
    +'  FAgg2D := TAgg2D.Create(self);'+le
    +'  InitComposedImage;'+le
    +'  DoAggPainting;'+le
    +'end;'+le
    +le
    +'procedure TMainForm.FormPaint(Sender: TObject);'+le
    +'begin'+le
    +'  // Finalise image internals, then paint it to the Window'+le
    +'  FImg.UpdateImage;'+le
    +'  Canvas.DrawImage(0, 0, FImg);'+le
    +'end;'+le
    +le
    +'destructor TMainForm.Destroy;'+le
    +'begin'+le
    +'  FAgg2D.Free;'+le
    +'  FImg.Free;'+le
    +'  inherited Destroy;'+le
    +'end;'+le
    +le
    +'procedure TMainForm.AfterCreate;'+le
    +'begin'+le
    +'  {%region ''Auto-generated GUI code''}'+le
    +'  {@VFD_BODY_BEGIN: MainForm}'+le
    +'  Name := ''MainForm'';'+le
    +'  SetPosition(316, 186, 501, 450);'+le
    +'  WindowTitle := ''TAgg2D.Attach() demo'';'+le
    +'  Hint := '''';'+le
    +'  WindowPosition := wpOneThirdDown;'+le
    +'  OnPaint := @FormPaint;'+le
    +'  OnCreate := @FormCreate;'+le
    +'  {@VFD_BODY_END: MainForm}'+le
    +'  {%endregion}'+le
    +'end;'+le
    +le
    +le
    +'procedure MainProc;'+le
    +'var'+le
    +'  frm: TMainForm;'+le
    +'begin'+le
    +'  fpgApplication.Initialize;'+le
    +'  fpgApplication.CreateForm(TMainForm, frm);'+le
    +'  try'+le
    +'    frm.Show;'+le
    +'    fpgApplication.Run;'+le
    +'  finally'+le
    +'    frm.Free;'+le
    +'  end;'+le
    +'end;'+le
    +le
    +'begin'+le
    +'  MainProc;'+le
    +'end.'+le;

  AProject.MainFile.SetSourceText(NewSource);
  AProject.AddPackageDependency('fpgui_toolkit');
  // compiler options
  AProject.LazCompilerOptions.UseLineInfoUnit := True;

  Result := mrOK;
end;

end.