diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-09-26 14:09:58 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-09-26 14:09:58 +0000 |
commit | b39c96ad311ad56492cf414637697885ebd2035b (patch) | |
tree | 90d80d027e18f87dd0acccef982881409e424475 | |
parent | befa5bf777395e45ba4e925a2e18ac76cfdc7aed (diff) | |
download | fpGUI-b39c96ad311ad56492cf414637697885ebd2035b.tar.xz |
* Added copyright information in the GUI units.
-rw-r--r-- | src/gui/gui_basegrid.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_bevel.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_button.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_checkbox.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_combobox.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_customgrid.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_dialogs.pas | 15 | ||||
-rw-r--r-- | src/gui/gui_edit.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_form.pas | 18 | ||||
-rw-r--r-- | src/gui/gui_grid.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_label.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_listbox.pas | 18 | ||||
-rw-r--r-- | src/gui/gui_listview.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_memo.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_menu.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_progressbar.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_radiobutton.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_scrollbar.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_style.pas | 19 | ||||
-rw-r--r-- | src/gui/gui_tab.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_trackbar.pas | 17 | ||||
-rw-r--r-- | src/gui/gui_tree.pas | 17 |
22 files changed, 373 insertions, 3 deletions
diff --git a/src/gui/gui_basegrid.pas b/src/gui/gui_basegrid.pas index 539e2415..7ee60031 100644 --- a/src/gui/gui_basegrid.pas +++ b/src/gui/gui_basegrid.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Base Grid control. +} + unit gui_basegrid; {$mode objfpc}{$H+} diff --git a/src/gui/gui_bevel.pas b/src/gui/gui_bevel.pas index a68b1e3b..84406a46 100644 --- a/src/gui/gui_bevel.pas +++ b/src/gui/gui_bevel.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Bevel control. Also known as a Panel or Frame control. +} + unit gui_bevel; {$mode objfpc}{$H+} diff --git a/src/gui/gui_button.pas b/src/gui/gui_button.pas index d9156199..060cb4c7 100644 --- a/src/gui/gui_button.pas +++ b/src/gui/gui_button.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a push button control. +} + unit gui_button; {$mode objfpc}{$H+} diff --git a/src/gui/gui_checkbox.pas b/src/gui/gui_checkbox.pas index f9cb6cbe..00347b51 100644 --- a/src/gui/gui_checkbox.pas +++ b/src/gui/gui_checkbox.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a CheckBox control. Also known as a Check Button control. +} + unit gui_checkbox; {$mode objfpc}{$H+} diff --git a/src/gui/gui_combobox.pas b/src/gui/gui_combobox.pas index debec7db..3834bb3c 100644 --- a/src/gui/gui_combobox.pas +++ b/src/gui/gui_combobox.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a ComboBox control. Also known as a Choice List control. +} + unit gui_combobox; {$mode objfpc}{$H+} diff --git a/src/gui/gui_customgrid.pas b/src/gui/gui_customgrid.pas index be589e7c..2e253dad 100644 --- a/src/gui/gui_customgrid.pas +++ b/src/gui/gui_customgrid.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Custom Grid control and basic Column class. +} + unit gui_customgrid; {$mode objfpc}{$H+} diff --git a/src/gui/gui_dialogs.pas b/src/gui/gui_dialogs.pas index 49303f17..4637b9a0 100644 --- a/src/gui/gui_dialogs.pas +++ b/src/gui/gui_dialogs.pas @@ -1,5 +1,18 @@ { - General dialogs used by fpGUI based applications + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + General dialogs used by fpGUI based applications. } unit gui_dialogs; diff --git a/src/gui/gui_edit.pas b/src/gui/gui_edit.pas index 41b9cddc..1d11b6c4 100644 --- a/src/gui/gui_edit.pas +++ b/src/gui/gui_edit.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Text Edit control. Also known a Text Entry control. +} + unit gui_edit; {$mode objfpc}{$H+} diff --git a/src/gui/gui_form.pas b/src/gui/gui_form.pas index 0bb25567..40bc1a4c 100644 --- a/src/gui/gui_form.pas +++ b/src/gui/gui_form.pas @@ -1,3 +1,21 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Form control. Also known as a Window which holds other + controls. +} + unit gui_form; {$mode objfpc}{$H+} diff --git a/src/gui/gui_grid.pas b/src/gui/gui_grid.pas index be619194..81441965 100644 --- a/src/gui/gui_grid.pas +++ b/src/gui/gui_grid.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a File Grid and String Grid. Both are decendants of Custom Grid. +} + unit gui_grid; {$mode objfpc}{$H+} diff --git a/src/gui/gui_label.pas b/src/gui/gui_label.pas index 6478ae7b..4f877792 100644 --- a/src/gui/gui_label.pas +++ b/src/gui/gui_label.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a basic Label control. Also known as a Caption component. +} + unit gui_label; {$mode objfpc}{$H+} diff --git a/src/gui/gui_listbox.pas b/src/gui/gui_listbox.pas index 7b27c5b6..c4bbd0b6 100644 --- a/src/gui/gui_listbox.pas +++ b/src/gui/gui_listbox.pas @@ -1,3 +1,21 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines various ListBox controls. A basic text (string) listbox + control has been implemented. +} + unit gui_listbox; {$mode objfpc}{$H+} diff --git a/src/gui/gui_listview.pas b/src/gui/gui_listview.pas index 269ee9b8..c98352c3 100644 --- a/src/gui/gui_listview.pas +++ b/src/gui/gui_listview.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Listview control. +} + unit gui_listview; {$mode objfpc}{$H+} diff --git a/src/gui/gui_memo.pas b/src/gui/gui_memo.pas index 7339ab23..6789a643 100644 --- a/src/gui/gui_memo.pas +++ b/src/gui/gui_memo.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Memo control. Also known as a multi-line text edit control. +} + unit gui_memo; {$mode objfpc}{$H+} diff --git a/src/gui/gui_menu.pas b/src/gui/gui_menu.pas index 74ab2d6f..2aad7394 100644 --- a/src/gui/gui_menu.pas +++ b/src/gui/gui_menu.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a MainMenu Bar, Popup Menu and Menu Item controls. +} + unit gui_menu; {$mode objfpc}{$H+} diff --git a/src/gui/gui_progressbar.pas b/src/gui/gui_progressbar.pas index 4717efaa..b2f69d4f 100644 --- a/src/gui/gui_progressbar.pas +++ b/src/gui/gui_progressbar.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a component for a progress bar. +} + unit gui_progressbar; {$mode objfpc}{$H+} diff --git a/src/gui/gui_radiobutton.pas b/src/gui/gui_radiobutton.pas index 812596b2..443cde59 100644 --- a/src/gui/gui_radiobutton.pas +++ b/src/gui/gui_radiobutton.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Radio Button control. +} + unit gui_radiobutton; {$mode objfpc}{$H+} diff --git a/src/gui/gui_scrollbar.pas b/src/gui/gui_scrollbar.pas index 45bd12bb..7fd82285 100644 --- a/src/gui/gui_scrollbar.pas +++ b/src/gui/gui_scrollbar.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines Scrollbar controls. +} + unit gui_scrollbar; {$mode objfpc}{$H+} diff --git a/src/gui/gui_style.pas b/src/gui/gui_style.pas index c2dff33b..4fa62f25 100644 --- a/src/gui/gui_style.pas +++ b/src/gui/gui_style.pas @@ -1,7 +1,22 @@ { - This is where all style related types should be define. The base Style - class should also be defined here. + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + This is where all style related types should be defined. The base + Style class should also be defined here. + This is still work in progress! } + unit gui_style; {$mode objfpc}{$H+} diff --git a/src/gui/gui_tab.pas b/src/gui/gui_tab.pas index 68e2e28c..8b6ad21e 100644 --- a/src/gui/gui_tab.pas +++ b/src/gui/gui_tab.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a Page Control and Tab Sheets. +} + unit gui_tab; {$mode objfpc}{$H+} diff --git a/src/gui/gui_trackbar.pas b/src/gui/gui_trackbar.pas index 39d8ffe3..2117baca 100644 --- a/src/gui/gui_trackbar.pas +++ b/src/gui/gui_trackbar.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines two types of TrackBar controls. Also known as Slider controls. +} + unit gui_trackbar; {$mode objfpc}{$H+} diff --git a/src/gui/gui_tree.pas b/src/gui/gui_tree.pas index d8d4c287..7548d1a5 100644 --- a/src/gui/gui_tree.pas +++ b/src/gui/gui_tree.pas @@ -1,3 +1,20 @@ +{ + fpGUI - Free Pascal GUI Library + + Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this + distribution, for details of the copyright. + + 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: + Defines a basic Treeview control and Node classes. +} + unit gui_tree; {$mode objfpc}{$H+} |