From 8237f03930a50406db0337659690240c86b780a3 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Tue, 25 Aug 2026 21:40:58 +0300 Subject: [PATCH] docs: add GPL license and source headers --- AlertOverlay.pas | 19 +++++ AndromedaMap.pas | 19 +++++ AndromedaPanel.pas | 19 +++++ AppTheme.pas | 19 +++++ AudioInput.pas | 19 +++++ AudioOutput.pas | 19 +++++ BandPlanOverlay.pas | 19 +++++ BeaconDecoder.pas | 19 +++++ BeaconFEC.pas | 19 +++++ BeaconScopeForm.pas | 19 +++++ BoardUtils.pas | 19 +++++ CATAdapter.pas | 19 +++++ CATEngine.pas | 19 +++++ CATSerial.pas | 19 +++++ CATSliceEndpoint.pas | 19 +++++ CATTcp.pas | 19 +++++ CWDecoder.pas | 19 +++++ CWKeyer.pas | 19 +++++ CWMessagesForm.pas | 19 +++++ CWMorse.pas | 19 +++++ CWTerminalForm.pas | 19 +++++ ChannelController.pas | 19 +++++ ChannelStore.pas | 19 +++++ ChannelsForm.pas | 19 +++++ DMRBindings.pas | 19 +++++ DMRDecoder.pas | 19 +++++ DMRProtocol.pas | 19 +++++ DXClusterClient.pas | 19 +++++ DXClusterForm.pas | 19 +++++ DXSpotOverlay.pas | 19 +++++ DXSpotStore.pas | 19 +++++ DeviceForm.pas | 19 +++++ DeviceStore.pas | 19 +++++ DpiUtils.pas | 19 +++++ EqualizerControl.pas | 19 +++++ FMRepeater.pas | 19 +++++ FilterPopup.pas | 19 +++++ FlatButton.pas | 19 +++++ FlatCheckBox.pas | 19 +++++ FlatComboBox.pas | 19 +++++ FlatDropDown.pas | 19 +++++ FlatEdit.pas | 19 +++++ FlatFloatSpinEdit.pas | 19 +++++ FlatListBox.pas | 19 +++++ FlatMemo.pas | 19 +++++ FlatPopupMenu.pas | 19 +++++ FlatProgressBar.pas | 19 +++++ FlatRadioButton.pas | 19 +++++ FlatSlider.pas | 19 +++++ FlatSpinEdit.pas | 19 +++++ FreqDisplay.pas | 19 +++++ HPSDRNetwork.pas | 19 +++++ HPSDRProtocol.pas | 19 +++++ IIOBindings.pas | 19 +++++ LICENSE | 117 +++++++++++++++++++++++++++ MacScale.pas | 19 +++++ MainForm.pas | 19 +++++ OverlayScrollBar.pas | 19 +++++ PanDisplayPopup.pas | 19 +++++ PanZoomBar.pas | 19 +++++ PanafallPanel.pas | 19 +++++ PlatformUtils.pas | 19 +++++ PlutoBackend.pas | 19 +++++ PowerInhibit.pas | 19 +++++ PureSignalPopup.pas | 19 +++++ README.md | 13 +++ README_RU.md | 15 ++++ RadioBackend.pas | 19 +++++ RadioController.pas | 19 +++++ RadioModes.pas | 19 +++++ RulerView.pas | 19 +++++ SMeterView.pas | 19 +++++ SampleRateOverlay.pas | 19 +++++ SerialPort.pas | 19 +++++ Settings.pas | 19 +++++ SettingsForm.pas | 19 +++++ SpectrumView.pas | 19 +++++ SpectrumViewOpengl.pas | 19 +++++ StatusBar.pas | 19 +++++ TCIAdapter.pas | 19 +++++ TCIProtocol.pas | 19 +++++ TCIServer.pas | 19 +++++ TCIStreams.pas | 19 +++++ UISync.pas | 19 +++++ VfoOverlay.pas | 19 +++++ WDSP.pas | 19 +++++ WDSPEngine.pas | 19 +++++ WaterfallView.pas | 19 +++++ WaterfallViewOpengl.pas | 19 +++++ WebAdapter.pas | 19 +++++ WebPageHtml.pas | 19 +++++ WebServer.pas | 19 +++++ WebUtils.pas | 19 +++++ WidebandView.pas | 19 +++++ WinFirewall.pas | 19 +++++ WindowsDPI.pas | 19 +++++ WisdomBuilder.pas | 19 +++++ WsClient.pas | 19 +++++ ewsdr.lpr | 19 +++++ ewsdrd.lpr | 19 +++++ test/cat/cattest.pas | 19 +++++ test/platform/win_probe/winprobe.pas | 19 +++++ test/platform/win_stub/Serial.pas | 19 +++++ test/platform/win_stub/Windows.pas | 19 +++++ test/serial/serialtest.pas | 19 +++++ test/tci/tcitest.pas | 19 +++++ 106 files changed, 2102 insertions(+) create mode 100644 LICENSE create mode 100644 README_RU.md diff --git a/AlertOverlay.pas b/AlertOverlay.pas index 1103131..a038159 100644 --- a/AlertOverlay.pas +++ b/AlertOverlay.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit AlertOverlay; { diff --git a/AndromedaMap.pas b/AndromedaMap.pas index 78cbfd3..faa86a5 100644 --- a/AndromedaMap.pas +++ b/AndromedaMap.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit AndromedaMap; { diff --git a/AndromedaPanel.pas b/AndromedaPanel.pas index c14ee57..6055dc2 100644 --- a/AndromedaPanel.pas +++ b/AndromedaPanel.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit AndromedaPanel; { diff --git a/AppTheme.pas b/AppTheme.pas index 144376a..07307eb 100644 --- a/AppTheme.pas +++ b/AppTheme.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit AppTheme; { Цветовые темы приложения EWSDR. diff --git a/AudioInput.pas b/AudioInput.pas index 82bc9bf..d697809 100644 --- a/AudioInput.pas +++ b/AudioInput.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit AudioInput; { diff --git a/AudioOutput.pas b/AudioOutput.pas index da264de..d3334ff 100644 --- a/AudioOutput.pas +++ b/AudioOutput.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit AudioOutput; { diff --git a/BandPlanOverlay.pas b/BandPlanOverlay.pas index b1e3f0f..e5464ed 100644 --- a/BandPlanOverlay.pas +++ b/BandPlanOverlay.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit BandPlanOverlay; { diff --git a/BeaconDecoder.pas b/BeaconDecoder.pas index 658d778..7bdeaea 100644 --- a/BeaconDecoder.pas +++ b/BeaconDecoder.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit BeaconDecoder; { diff --git a/BeaconFEC.pas b/BeaconFEC.pas index 1739c4a..36017bf 100644 --- a/BeaconFEC.pas +++ b/BeaconFEC.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit BeaconFEC; { diff --git a/BeaconScopeForm.pas b/BeaconScopeForm.pas index fe6c931..912e8c9 100644 --- a/BeaconScopeForm.pas +++ b/BeaconScopeForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit BeaconScopeForm; { TBeaconScopeForm — окно QO-100 beacon-декодера. diff --git a/BoardUtils.pas b/BoardUtils.pas index d35a361..11b8095 100644 --- a/BoardUtils.pas +++ b/BoardUtils.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit BoardUtils; {$IFDEF FPC} diff --git a/CATAdapter.pas b/CATAdapter.pas index 92e0541..ee98e37 100644 --- a/CATAdapter.pas +++ b/CATAdapter.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CATAdapter; // ----------------------------------------------------------------------------- diff --git a/CATEngine.pas b/CATEngine.pas index e47478e..65473f5 100644 --- a/CATEngine.pas +++ b/CATEngine.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CATEngine; { CATEngine.pas — CAT command engine (Kenwood + Thetis ZZ* extensions). diff --git a/CATSerial.pas b/CATSerial.pas index 1ac7ea1..02fd4da 100644 --- a/CATSerial.pas +++ b/CATSerial.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CATSerial; { CATSerial.pas — CAT через последовательные порты (до 4 штук). diff --git a/CATSliceEndpoint.pas b/CATSliceEndpoint.pas index 2c2ec41..e1a01f6 100644 --- a/CATSliceEndpoint.pas +++ b/CATSliceEndpoint.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CATSliceEndpoint; // ----------------------------------------------------------------------------- diff --git a/CATTcp.pas b/CATTcp.pas index 1faef61..e49fd95 100644 --- a/CATTcp.pas +++ b/CATTcp.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CATTcp; { CATTcp.pas — TCP CAT сервер (аналог TCPIPcatServer.cs из Thetis). diff --git a/CWDecoder.pas b/CWDecoder.pas index 5478f61..6225bd7 100644 --- a/CWDecoder.pas +++ b/CWDecoder.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CWDecoder; {$mode objfpc}{$H+} diff --git a/CWKeyer.pas b/CWKeyer.pas index e935309..7444ef8 100644 --- a/CWKeyer.pas +++ b/CWKeyer.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CWKeyer; {$mode objfpc}{$H+} diff --git a/CWMessagesForm.pas b/CWMessagesForm.pas index 0485687..e1a4463 100644 --- a/CWMessagesForm.pas +++ b/CWMessagesForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CWMessagesForm; { TCWMessagesForm — память телеграфных сообщений (CW_MSG_COUNT ячеек). diff --git a/CWMorse.pas b/CWMorse.pas index eed3249..d7e107b 100644 --- a/CWMorse.pas +++ b/CWMorse.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CWMorse; {$mode objfpc}{$H+} diff --git a/CWTerminalForm.pas b/CWTerminalForm.pas index 095a57c..960e864 100644 --- a/CWTerminalForm.pas +++ b/CWTerminalForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit CWTerminalForm; { TCWTerminalForm — телеграфный терминал: лента связи + набор с клавиатуры. diff --git a/ChannelController.pas b/ChannelController.pas index e0dae70..01ee1f4 100644 --- a/ChannelController.pas +++ b/ChannelController.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit ChannelController; // ----------------------------------------------------------------------------- diff --git a/ChannelStore.pas b/ChannelStore.pas index cd8dd61..8e7794b 100644 --- a/ChannelStore.pas +++ b/ChannelStore.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit ChannelStore; { TChannelStore — хранилище каналов (channel memory). diff --git a/ChannelsForm.pas b/ChannelsForm.pas index 7368c5c..d8c56e6 100644 --- a/ChannelsForm.pas +++ b/ChannelsForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit ChannelsForm; { TChannelsForm — редактор списка каналов (channel memory). diff --git a/DMRBindings.pas b/DMRBindings.pas index 443153b..cccb3e9 100644 --- a/DMRBindings.pas +++ b/DMRBindings.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DMRBindings; {$IFDEF FPC} diff --git a/DMRDecoder.pas b/DMRDecoder.pas index 3c0f7f5..902bf07 100644 --- a/DMRDecoder.pas +++ b/DMRDecoder.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DMRDecoder; { diff --git a/DMRProtocol.pas b/DMRProtocol.pas index 3c66862..f26fa78 100644 --- a/DMRProtocol.pas +++ b/DMRProtocol.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DMRProtocol; { diff --git a/DXClusterClient.pas b/DXClusterClient.pas index f3d0047..3278743 100644 --- a/DXClusterClient.pas +++ b/DXClusterClient.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DXClusterClient; { diff --git a/DXClusterForm.pas b/DXClusterForm.pas index 3268278..e756e6d 100644 --- a/DXClusterForm.pas +++ b/DXClusterForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DXClusterForm; { diff --git a/DXSpotOverlay.pas b/DXSpotOverlay.pas index 1e6f489..6661ba8 100644 --- a/DXSpotOverlay.pas +++ b/DXSpotOverlay.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DXSpotOverlay; { diff --git a/DXSpotStore.pas b/DXSpotStore.pas index 90c4fa5..49714e4 100644 --- a/DXSpotStore.pas +++ b/DXSpotStore.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DXSpotStore; { diff --git a/DeviceForm.pas b/DeviceForm.pas index b65fcd6..4b957dd 100644 --- a/DeviceForm.pas +++ b/DeviceForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DeviceForm; {$mode objfpc}{$H+} diff --git a/DeviceStore.pas b/DeviceStore.pas index 8f0dcae..aa4fba7 100644 --- a/DeviceStore.pas +++ b/DeviceStore.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DeviceStore; {$mode objfpc}{$H+} diff --git a/DpiUtils.pas b/DpiUtils.pas index 6615fcb..7218122 100644 --- a/DpiUtils.pas +++ b/DpiUtils.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit DpiUtils; { diff --git a/EqualizerControl.pas b/EqualizerControl.pas index 9f09cc0..8923265 100644 --- a/EqualizerControl.pas +++ b/EqualizerControl.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit EqualizerControl; {$mode objfpc}{$H+} diff --git a/FMRepeater.pas b/FMRepeater.pas index 9b28356..a12b180 100644 --- a/FMRepeater.pas +++ b/FMRepeater.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FMRepeater; { FM repeater offset helpers — constants, default offsets, auto-direction logic. } diff --git a/FilterPopup.pas b/FilterPopup.pas index 53481ed..b0d91f4 100644 --- a/FilterPopup.pas +++ b/FilterPopup.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FilterPopup; { diff --git a/FlatButton.pas b/FlatButton.pas index 1e6e1fd..4b51bf9 100644 --- a/FlatButton.pas +++ b/FlatButton.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatButton; { Кнопка с полным контролем цвета на Windows и Linux. diff --git a/FlatCheckBox.pas b/FlatCheckBox.pas index a6707ac..36475db 100644 --- a/FlatCheckBox.pas +++ b/FlatCheckBox.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatCheckBox; { Custom checkbox with canvas rendering. diff --git a/FlatComboBox.pas b/FlatComboBox.pas index df55b72..d5a69a6 100644 --- a/FlatComboBox.pas +++ b/FlatComboBox.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatComboBox; { Custom drop-down list with canvas rendering. diff --git a/FlatDropDown.pas b/FlatDropDown.pas index 7826406..54592b1 100644 --- a/FlatDropDown.pas +++ b/FlatDropDown.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatDropDown; { Выпадающий список на основе TFlatButton. diff --git a/FlatEdit.pas b/FlatEdit.pas index 936ad67..cc94ee6 100644 --- a/FlatEdit.pas +++ b/FlatEdit.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatEdit; { Custom single-line edit with canvas rendering. diff --git a/FlatFloatSpinEdit.pas b/FlatFloatSpinEdit.pas index e48b6d2..b551dc5 100644 --- a/FlatFloatSpinEdit.pas +++ b/FlatFloatSpinEdit.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatFloatSpinEdit; { Custom floating-point spin edit with canvas rendering. diff --git a/FlatListBox.pas b/FlatListBox.pas index ffa9569..38e49f2 100644 --- a/FlatListBox.pas +++ b/FlatListBox.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatListBox; { Custom list box with canvas rendering. diff --git a/FlatMemo.pas b/FlatMemo.pas index 9cf60b9..171b804 100644 --- a/FlatMemo.pas +++ b/FlatMemo.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatMemo; { diff --git a/FlatPopupMenu.pas b/FlatPopupMenu.pas index 3e621c4..c3d8d4d 100644 --- a/FlatPopupMenu.pas +++ b/FlatPopupMenu.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatPopupMenu; { diff --git a/FlatProgressBar.pas b/FlatProgressBar.pas index c9228cb..3bf413b 100644 --- a/FlatProgressBar.pas +++ b/FlatProgressBar.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatProgressBar; { Custom progress bar with canvas rendering. diff --git a/FlatRadioButton.pas b/FlatRadioButton.pas index 5ed774c..60808be 100644 --- a/FlatRadioButton.pas +++ b/FlatRadioButton.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatRadioButton; { Custom radio button with canvas rendering. diff --git a/FlatSlider.pas b/FlatSlider.pas index 28fa5e1..5894ede 100644 --- a/FlatSlider.pas +++ b/FlatSlider.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatSlider; { Кастомный горизонтальный ползунок — замена TTrackBar. diff --git a/FlatSpinEdit.pas b/FlatSpinEdit.pas index 14f71c7..8426b96 100644 --- a/FlatSpinEdit.pas +++ b/FlatSpinEdit.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FlatSpinEdit; { Custom integer spin edit with canvas rendering. diff --git a/FreqDisplay.pas b/FreqDisplay.pas index 9b9833d..dbd3110 100644 --- a/FreqDisplay.pas +++ b/FreqDisplay.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit FreqDisplay; { diff --git a/HPSDRNetwork.pas b/HPSDRNetwork.pas index 4b4f7f0..2866118 100644 --- a/HPSDRNetwork.pas +++ b/HPSDRNetwork.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit HPSDRNetwork; { diff --git a/HPSDRProtocol.pas b/HPSDRProtocol.pas index 6f4e239..f7edf0c 100644 --- a/HPSDRProtocol.pas +++ b/HPSDRProtocol.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit HPSDRProtocol; { diff --git a/IIOBindings.pas b/IIOBindings.pas index f26aa75..0089bab 100644 --- a/IIOBindings.pas +++ b/IIOBindings.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit IIOBindings; { diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..17cb286 --- /dev/null +++ b/LICENSE @@ -0,0 +1,117 @@ +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + + c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + + one line to give the program's name and an idea of what it does. Copyright (C) yyyy name of author + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. + +signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice diff --git a/MacScale.pas b/MacScale.pas index febd4ec..4af1360 100644 --- a/MacScale.pas +++ b/MacScale.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit MacScale; { diff --git a/MainForm.pas b/MainForm.pas index 89b445e..56109c0 100644 --- a/MainForm.pas +++ b/MainForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit MainForm; { diff --git a/OverlayScrollBar.pas b/OverlayScrollBar.pas index 741c96e..ca790a6 100644 --- a/OverlayScrollBar.pas +++ b/OverlayScrollBar.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit OverlayScrollBar; { diff --git a/PanDisplayPopup.pas b/PanDisplayPopup.pas index 41663be..2fe416b 100644 --- a/PanDisplayPopup.pas +++ b/PanDisplayPopup.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PanDisplayPopup; { diff --git a/PanZoomBar.pas b/PanZoomBar.pas index a47ebfa..18ae5e0 100644 --- a/PanZoomBar.pas +++ b/PanZoomBar.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PanZoomBar; { diff --git a/PanafallPanel.pas b/PanafallPanel.pas index 794ddf9..660877d 100644 --- a/PanafallPanel.pas +++ b/PanafallPanel.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PanafallPanel; { diff --git a/PlatformUtils.pas b/PlatformUtils.pas index 89c8a38..b52ce74 100644 --- a/PlatformUtils.pas +++ b/PlatformUtils.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PlatformUtils; { diff --git a/PlutoBackend.pas b/PlutoBackend.pas index a00241f..8405a3e 100644 --- a/PlutoBackend.pas +++ b/PlutoBackend.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PlutoBackend; { diff --git a/PowerInhibit.pas b/PowerInhibit.pas index b4361d7..d816048 100644 --- a/PowerInhibit.pas +++ b/PowerInhibit.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PowerInhibit; {$IFDEF FPC} diff --git a/PureSignalPopup.pas b/PureSignalPopup.pas index 3a8f546..097f5c1 100644 --- a/PureSignalPopup.pas +++ b/PureSignalPopup.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit PureSignalPopup; { diff --git a/README.md b/README.md index 92abdbb..bff2952 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,15 @@ # EWSDR +[Russian version](README_RU.md) + +EWSDR is a cross-platform SDR transceiver application for OpenHPSDR and +PlutoSDR devices. It is written in Free Pascal using Lazarus and supports +Linux, Windows, and macOS. + +## Building + +See [BUILD.MD](BUILD.MD) for build instructions. + +## License + +This project is licensed under the [GNU General Public License v2.0](LICENSE). diff --git a/README_RU.md b/README_RU.md new file mode 100644 index 0000000..34bf3dc --- /dev/null +++ b/README_RU.md @@ -0,0 +1,15 @@ +# EWSDR + +[English version](README.md) + +EWSDR — кроссплатформенное приложение SDR-трансивера для устройств +OpenHPSDR и PlutoSDR. Проект написан на Free Pascal с использованием Lazarus +и поддерживает Linux, Windows и macOS. + +## Сборка + +Инструкции по сборке находятся в файле [BUILD.MD](BUILD.MD). + +## Лицензия + +Проект распространяется на условиях [GNU General Public License v2.0](LICENSE). diff --git a/RadioBackend.pas b/RadioBackend.pas index c8003b9..667ae5e 100644 --- a/RadioBackend.pas +++ b/RadioBackend.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit RadioBackend; { diff --git a/RadioController.pas b/RadioController.pas index babcc53..3301b51 100644 --- a/RadioController.pas +++ b/RadioController.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit RadioController; { diff --git a/RadioModes.pas b/RadioModes.pas index 4099bbc..6b39e5d 100644 --- a/RadioModes.pas +++ b/RadioModes.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit RadioModes; {$mode objfpc}{$H+} diff --git a/RulerView.pas b/RulerView.pas index 20942c6..cb02560 100644 --- a/RulerView.pas +++ b/RulerView.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit RulerView; { diff --git a/SMeterView.pas b/SMeterView.pas index 58e2384..b89180d 100644 --- a/SMeterView.pas +++ b/SMeterView.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit SMeterView; { diff --git a/SampleRateOverlay.pas b/SampleRateOverlay.pas index e9fb73d..42d6256 100644 --- a/SampleRateOverlay.pas +++ b/SampleRateOverlay.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit SampleRateOverlay; { diff --git a/SerialPort.pas b/SerialPort.pas index 7368415..2c6b8bf 100644 --- a/SerialPort.pas +++ b/SerialPort.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit SerialPort; { diff --git a/Settings.pas b/Settings.pas index 7a9180c..db7d58a 100644 --- a/Settings.pas +++ b/Settings.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit Settings; { Settings.pas — JSON-конфигурация HPSDR SDR приложения. diff --git a/SettingsForm.pas b/SettingsForm.pas index aeb0ee8..95869e2 100644 --- a/SettingsForm.pas +++ b/SettingsForm.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit SettingsForm; { diff --git a/SpectrumView.pas b/SpectrumView.pas index f2a68e8..8584da5 100644 --- a/SpectrumView.pas +++ b/SpectrumView.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit SpectrumView; { diff --git a/SpectrumViewOpengl.pas b/SpectrumViewOpengl.pas index 50104cc..2507719 100644 --- a/SpectrumViewOpengl.pas +++ b/SpectrumViewOpengl.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit SpectrumViewOpengl; { diff --git a/StatusBar.pas b/StatusBar.pas index 835f86e..b92c2a4 100644 --- a/StatusBar.pas +++ b/StatusBar.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit StatusBar; {$IFDEF FPC} diff --git a/TCIAdapter.pas b/TCIAdapter.pas index 891a347..b768305 100644 --- a/TCIAdapter.pas +++ b/TCIAdapter.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit TCIAdapter; { diff --git a/TCIProtocol.pas b/TCIProtocol.pas index eac6468..2884592 100644 --- a/TCIProtocol.pas +++ b/TCIProtocol.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit TCIProtocol; { diff --git a/TCIServer.pas b/TCIServer.pas index c17ad70..c825a3a 100644 --- a/TCIServer.pas +++ b/TCIServer.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit TCIServer; { diff --git a/TCIStreams.pas b/TCIStreams.pas index 5a4a0a6..401418e 100644 --- a/TCIStreams.pas +++ b/TCIStreams.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit TCIStreams; { diff --git a/UISync.pas b/UISync.pas index 557cef7..3d3154b 100644 --- a/UISync.pas +++ b/UISync.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit UISync; {$IFDEF FPC} diff --git a/VfoOverlay.pas b/VfoOverlay.pas index 7ef6f0e..9425429 100644 --- a/VfoOverlay.pas +++ b/VfoOverlay.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit VfoOverlay; {$mode objfpc}{$H+} diff --git a/WDSP.pas b/WDSP.pas index c47992d..43c85f7 100644 --- a/WDSP.pas +++ b/WDSP.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WDSP; { diff --git a/WDSPEngine.pas b/WDSPEngine.pas index 26c9209..2cb23ae 100644 --- a/WDSPEngine.pas +++ b/WDSPEngine.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WDSPEngine; { diff --git a/WaterfallView.pas b/WaterfallView.pas index aeaf4f4..76d8c3e 100644 --- a/WaterfallView.pas +++ b/WaterfallView.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WaterfallView; { diff --git a/WaterfallViewOpengl.pas b/WaterfallViewOpengl.pas index 02f4a07..1f2a346 100644 --- a/WaterfallViewOpengl.pas +++ b/WaterfallViewOpengl.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WaterfallViewOpengl; { diff --git a/WebAdapter.pas b/WebAdapter.pas index 93680f6..0b9f9c0 100644 --- a/WebAdapter.pas +++ b/WebAdapter.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WebAdapter; {$mode objfpc}{$H+} diff --git a/WebPageHtml.pas b/WebPageHtml.pas index 71ef9fb..18183eb 100644 --- a/WebPageHtml.pas +++ b/WebPageHtml.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WebPageHtml; { diff --git a/WebServer.pas b/WebServer.pas index d51d98a..c8f0cc6 100644 --- a/WebServer.pas +++ b/WebServer.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WebServer; { diff --git a/WebUtils.pas b/WebUtils.pas index 45ee581..d9d2056 100644 --- a/WebUtils.pas +++ b/WebUtils.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WebUtils; { diff --git a/WidebandView.pas b/WidebandView.pas index 520a8e1..df97851 100644 --- a/WidebandView.pas +++ b/WidebandView.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WidebandView; { diff --git a/WinFirewall.pas b/WinFirewall.pas index 0f14dd1..276e05f 100644 --- a/WinFirewall.pas +++ b/WinFirewall.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WinFirewall; { diff --git a/WindowsDPI.pas b/WindowsDPI.pas index ed1a460..0468c99 100644 --- a/WindowsDPI.pas +++ b/WindowsDPI.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WindowsDPI; {$IFDEF FPC} diff --git a/WisdomBuilder.pas b/WisdomBuilder.pas index 906cf75..87a6af5 100644 --- a/WisdomBuilder.pas +++ b/WisdomBuilder.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WisdomBuilder; {$IFDEF FPC} diff --git a/WsClient.pas b/WsClient.pas index eea7ac2..cc9a9d8 100644 --- a/WsClient.pas +++ b/WsClient.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit WsClient; { diff --git a/ewsdr.lpr b/ewsdr.lpr index 317be48..eee9445 100644 --- a/ewsdr.lpr +++ b/ewsdr.lpr @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + program ewsdr; {$IFDEF FPC} diff --git a/ewsdrd.lpr b/ewsdrd.lpr index f04e51c..fed9f76 100644 --- a/ewsdrd.lpr +++ b/ewsdrd.lpr @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + program ewsdrd; {$IFDEF FPC}{$MODE objfpc}{$H+}{$ENDIF} diff --git a/test/cat/cattest.pas b/test/cat/cattest.pas index a1b9024..590d210 100644 --- a/test/cat/cattest.pas +++ b/test/cat/cattest.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + program cattest; { diff --git a/test/platform/win_probe/winprobe.pas b/test/platform/win_probe/winprobe.pas index 64ca3a2..5ef52f8 100644 --- a/test/platform/win_probe/winprobe.pas +++ b/test/platform/win_probe/winprobe.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + program winprobe; { diff --git a/test/platform/win_stub/Serial.pas b/test/platform/win_stub/Serial.pas index 572bc6d..baa8df6 100644 --- a/test/platform/win_stub/Serial.pas +++ b/test/platform/win_stub/Serial.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit Serial; { diff --git a/test/platform/win_stub/Windows.pas b/test/platform/win_stub/Windows.pas index 0eabea6..5135ecf 100644 --- a/test/platform/win_stub/Windows.pas +++ b/test/platform/win_stub/Windows.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + unit Windows; { diff --git a/test/serial/serialtest.pas b/test/serial/serialtest.pas index 953f446..532fd0a 100644 --- a/test/serial/serialtest.pas +++ b/test/serial/serialtest.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + program serialtest; { diff --git a/test/tci/tcitest.pas b/test/tci/tcitest.pas index e448fb7..86cf934 100644 --- a/test/tci/tcitest.pas +++ b/test/tci/tcitest.pas @@ -1,3 +1,22 @@ +{ + Copyright (C) + 2026 - Uladzimir Karpenka, EW8BAK + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +} + program tcitest; {