diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-03-18 10:34:56 +0000 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2013-03-18 10:34:56 +0000 |
commit | bd19c7d966bcf7b1f7cf5f91eaae0347d5b29b39 (patch) | |
tree | b20ad3e772cc705db02a206bd893af2433903379 /examples | |
parent | 56d6631a25ec08834b11bc911321a0c233cdf1e6 (diff) | |
download | fpGUI-bd19c7d966bcf7b1f7cf5f91eaae0347d5b29b39.tar.xz |
ide: added copyright notices to the source code units.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/apps/ide/src/builderthread.pas | 18 | ||||
-rw-r--r-- | examples/apps/ide/src/filemonitor.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/frm_configureide.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/frm_debug.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/frm_find.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/frm_main.pas | 18 | ||||
-rw-r--r-- | examples/apps/ide/src/frm_procedurelist.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/frm_projectoptions.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/ideconst.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/ideimages.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/idemacros.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/ideutils.pas | 20 | ||||
-rw-r--r-- | examples/apps/ide/src/maximus.lpr | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/project.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/stringhelpers.pas | 16 | ||||
-rw-r--r-- | examples/apps/ide/src/unitlist.pas | 16 |
16 files changed, 261 insertions, 3 deletions
diff --git a/examples/apps/ide/src/builderthread.pas b/examples/apps/ide/src/builderthread.pas index bfdc48b1..b5a1ad6f 100644 --- a/examples/apps/ide/src/builderthread.pas +++ b/examples/apps/ide/src/builderthread.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit BuilderThread; {$mode objfpc}{$H+} @@ -115,7 +131,7 @@ begin finally FreeAndNil(p); end; - + end; procedure TBuilderThread.DoOutputLine; diff --git a/examples/apps/ide/src/filemonitor.pas b/examples/apps/ide/src/filemonitor.pas index 1c97185a..6d28642c 100644 --- a/examples/apps/ide/src/filemonitor.pas +++ b/examples/apps/ide/src/filemonitor.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit filemonitor; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/frm_configureide.pas b/examples/apps/ide/src/frm_configureide.pas index 2b2e42c1..fad0418f 100644 --- a/examples/apps/ide/src/frm_configureide.pas +++ b/examples/apps/ide/src/frm_configureide.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit frm_configureide; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/frm_debug.pas b/examples/apps/ide/src/frm_debug.pas index 267871c2..6991b916 100644 --- a/examples/apps/ide/src/frm_debug.pas +++ b/examples/apps/ide/src/frm_debug.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit frm_debug; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/frm_find.pas b/examples/apps/ide/src/frm_find.pas index 652d104d..3ec856f7 100644 --- a/examples/apps/ide/src/frm_find.pas +++ b/examples/apps/ide/src/frm_find.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit frm_find; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/frm_main.pas b/examples/apps/ide/src/frm_main.pas index dacacc2a..48e5b8b1 100644 --- a/examples/apps/ide/src/frm_main.pas +++ b/examples/apps/ide/src/frm_main.pas @@ -1,3 +1,21 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + Maximus IDE is an example application, to showcase a bit more of + what fpGUI can do in a larger project. It also ties in a lot of + various fpGUI widgets and framework functionality. +} + unit frm_main; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/frm_procedurelist.pas b/examples/apps/ide/src/frm_procedurelist.pas index b62e9a7f..14eb77dd 100644 --- a/examples/apps/ide/src/frm_procedurelist.pas +++ b/examples/apps/ide/src/frm_procedurelist.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit frm_procedurelist; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/frm_projectoptions.pas b/examples/apps/ide/src/frm_projectoptions.pas index 74178090..1e1c318a 100644 --- a/examples/apps/ide/src/frm_projectoptions.pas +++ b/examples/apps/ide/src/frm_projectoptions.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit frm_projectoptions; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/ideconst.pas b/examples/apps/ide/src/ideconst.pas index 03c43ec4..38973457 100644 --- a/examples/apps/ide/src/ideconst.pas +++ b/examples/apps/ide/src/ideconst.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit ideconst; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/ideimages.pas b/examples/apps/ide/src/ideimages.pas index 6963e6e9..929267af 100644 --- a/examples/apps/ide/src/ideimages.pas +++ b/examples/apps/ide/src/ideimages.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit ideimages; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/idemacros.pas b/examples/apps/ide/src/idemacros.pas index deee6507..e7632a07 100644 --- a/examples/apps/ide/src/idemacros.pas +++ b/examples/apps/ide/src/idemacros.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit idemacros; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/ideutils.pas b/examples/apps/ide/src/ideutils.pas index 672103f3..3a75dc0b 100644 --- a/examples/apps/ide/src/ideutils.pas +++ b/examples/apps/ide/src/ideutils.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit ideutils; {$mode objfpc}{$H+} @@ -101,7 +117,7 @@ type constructor Create(var AWidget: TfpgWidget); destructor Destroy; override; end; - + constructor TTempHourClassCursor.Create(var AWidget: TfpgWidget); begin inherited Create; @@ -115,7 +131,7 @@ begin FWidget.MouseCursor := FOldCursor; inherited Destroy; end; - + function TempHourGlassCursor(var AWidget: TfpgWidget): IInterface; diff --git a/examples/apps/ide/src/maximus.lpr b/examples/apps/ide/src/maximus.lpr index d481ba4a..1f758a43 100644 --- a/examples/apps/ide/src/maximus.lpr +++ b/examples/apps/ide/src/maximus.lpr @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + program maximus; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/project.pas b/examples/apps/ide/src/project.pas index cde77fdf..a337b81b 100644 --- a/examples/apps/ide/src/project.pas +++ b/examples/apps/ide/src/project.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit Project; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/stringhelpers.pas b/examples/apps/ide/src/stringhelpers.pas index 35fb9060..6e563da5 100644 --- a/examples/apps/ide/src/stringhelpers.pas +++ b/examples/apps/ide/src/stringhelpers.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit stringhelpers; {$mode objfpc}{$H+} diff --git a/examples/apps/ide/src/unitlist.pas b/examples/apps/ide/src/unitlist.pas index b8ca59ad..827326e7 100644 --- a/examples/apps/ide/src/unitlist.pas +++ b/examples/apps/ide/src/unitlist.pas @@ -1,3 +1,19 @@ +{ + fpGUI IDE - Maximus + + Copyright (C) 2012 - 2013 Graeme Geldenhuys + + See the file COPYING.modifiedLGPL, included in this distribution, + for details about redistributing fpGUI. + + 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. + + Description: + --- +} + unit UnitList; {$mode objfpc}{$H+} |