Skip to content

Commit 3c5127f

Browse files
committed
Add license statement to source files
1 parent fb58425 commit 3c5127f

21 files changed

Lines changed: 372 additions & 9 deletions

designer/QHexEditPlugin.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#include "QHexEditPlugin.h"
220
#include "qhexedit.h"
321

designer/QHexEditPlugin.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#ifndef QHEXEDITPLUGIN_H
220
#define QHEXEDITPLUGIN_H
321

example/main.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#include <optional>
220
#include <QApplication>
321
#include <QCommandLineParser>

example/mainwindow.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#include <QFileDialog>
220
#include <QMessageBox>
321
#include <QApplication>

example/mainwindow.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#ifndef MAINWINDOW_H
220
#define MAINWINDOW_H
321

example/optionsdialog.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119

220
#include <QApplication>
321
#include <QColorDialog>

example/optionsdialog.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#ifndef OPTIONSDIALOG_H
220
#define OPTIONSDIALOG_H
321

example/searchdialog.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#include "searchdialog.h"
220
#include "ui_searchdialog.h"
321

example/searchdialog.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* QHexEdit is a Hex Editor Widget for the Qt Framework
3+
* Copyright (C) 2010-2025 Winfried Simon
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2.1 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, see
17+
* https://www.gnu.org/licenses/
18+
*/
119
#ifndef SEARCHDIALOG_H
220
#define SEARCHDIALOG_H
321

readme.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,20 @@ We love to receive contributions. You can submit bug reports [here](https://gith
4444

4545
## License
4646
```
47-
Copyright (C) 2015-2016 Winfried Simon
47+
QHexEdit is a Hex Editor Widget for the Qt Framework
48+
Copyright (C) 2010-2025 Winfried Simon
4849
49-
This software may be used under the terms of the GNU Lesser General
50-
Public License version 2.1 as published by the Free Software Foundation
51-
and appearing in the file license.txt included in the packaging of this file.
50+
This library is free software; you can redistribute it and/or
51+
modify it under the terms of the GNU Lesser General Public
52+
License as published by the Free Software Foundation; either
53+
version 2.1 of the License, or (at your option) any later version.
5254
53-
This program is distributed in the hope that it will be useful,
55+
This library is distributed in the hope that it will be useful,
5456
but WITHOUT ANY WARRANTY; without even the implied warranty of
55-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56-
GNU Lesser General Public License for more details.
57+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
58+
Lesser General Public License for more details.
5759
58-
You should have received a copy of the GNU General Public License
59-
along with this program. If not, see <http://www.gnu.org/licenses/>.
60+
You should have received a copy of the GNU Lesser General Public
61+
License along with this library; if not, see
62+
https://www.gnu.org/licenses/
6063
```

0 commit comments

Comments
 (0)