Skip to content

Commit bfc4dad

Browse files
committed
Add GPL license headers on all files(no code changes)
1 parent fba6e6f commit bfc4dad

32 files changed

+409
-5
lines changed

Scissor.h

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
Scissor.h -- scissor utils
3+
Copyright (C) 2017 mittorn
4+
5+
This program is free software; you can redistribute it and/or
6+
modify it under the terms of the GNU General Public License
7+
as published by the Free Software Foundation; either version 2
8+
of the License, or (at your option) any later version.
9+
10+
This program 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.
13+
14+
See the GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program; if not, write to the Free Software
18+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19+
*/
120
#pragma once
221
#ifndef SCISSOR_H
322
#define SCISSOR_H

controls/BaseItem.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
BaseItem.cpp -- base menu item
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include "BaseItem.h"
216

317
/*

controls/BaseItem.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
BaseItem.h -- base menu item
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#pragma once
216
#ifndef BASEITEM_H
317
#define BASEITEM_H

controls/BaseWindow.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
BaseWindow.cpp -- base menu window
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include "extdll_menu.h"
216
#include "BaseMenu.h"
317
#include "Utils.h"

controls/BaseWindow.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
BaseWindow.h -- base menu window
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#pragma once
216
#ifndef BASEWINDOW_H
317
#define BASEWINDOW_H

controls/Framework.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
Framework.cpp -- base menu fullscreen root window
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include "Framework.h"
216
#include "PicButton.h"
317

controls/Framework.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
Framework.h -- base menu fullscreen root window
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#pragma once
216
#ifndef FRAMEWORK_H
317
#define FRAMEWORK_H

controls/ItemsHolder.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
ItemsHolder.cpp -- an item that can contain and operate with other items
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include "extdll_menu.h"
216
#include "BaseMenu.h"
317
#include "Utils.h"

controls/ItemsHolder.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
ItemsHolder.h -- an item that can contain and operate with other items
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#pragma once
216
#ifndef EMBEDITEM_H
317
#define EMBEDITEM_H

controls/MessageBox.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
MessageBox.cpp -- simple messagebox with text
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include "extdll_menu.h"
216
#include "BaseMenu.h"
317
#include "Utils.h"

controls/MessageBox.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
MessageBox.h -- simple messagebox with text
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#ifndef MESSAGEBOX_H
216
#define MESSAGEBOX_H
317

controls/ProgressBar.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
ProgressBar.cpp -- progress bar
3+
Copyright (C) 2017 mittorn
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
15+
116
#include "extdll_menu.h"
217
#include "BaseMenu.h"
318
#include "ProgressBar.h"

controls/ProgressBar.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
ProgressBar.h -- progress bar
3+
Copyright (C) 2017 mittorn
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#ifndef CMENUPROGRESSBAR_H
216
#define CMENUPROGRESSBAR_H
317

controls/Switch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
Copyright (C) 2017 a1batross
32
Switch.cpp - simple switches, like Android 4.0+
3+
Copyright (C) 2017 a1batross
44
55
This program is free software; you can redistribute it and/or
66
modify it under the terms of the GNU General Public License

controls/Switch.h

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
Switch.h - simple switches, like Android 4.0+
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software; you can redistribute it and/or
6+
modify it under the terms of the GNU General Public License
7+
as published by the Free Software Foundation; either version 2
8+
of the License, or (at your option) any later version.
9+
10+
This program 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.
13+
14+
See the GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program; if not, write to the Free Software
18+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19+
*/
120
#pragma once
221
#ifndef SWITCH_H
322
#define SWITCH_H

controls/YesNoMessageBox.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
YesNoMessageBox.h - simple generic message box
2+
YesNoMessageBox.h - simple generic yes/no message box
33
Copyright (C) 2017 a1batross
44
55
This program is free software: you can redistribute it and/or modify

controls/YesNoMessageBox.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
YesNoMessageBox.h - simple generic message box
2+
YesNoMessageBox.h - simple generic yes/no message box
33
Copyright (C) 2017 a1batross
44
55
This program is free software: you can redistribute it and/or modify

font/BaseFontBackend.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
BaseFontBackend.cpp - common font renderer backend code
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include "BaseFontBackend.h"
216
#include "FontManager.h"
317
#include <math.h>

font/BaseFontBackend.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
BaseFontBackend.h - common font renderer backend code
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#pragma once
216
#ifndef BASEFONT_H
317
#define BASEFONT_H

font/BitmapFont.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
BitmapFont.cpp - bitmap font backend
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/

font/BitmapFont.h

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
BitmapFont.h - bitmap font backend
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/

font/FontManager.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
FontManager.cpp - font manager
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#include <locale.h>
216
#include "FontManager.h"
317
#include "Utils.h"

font/FontManager.h

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
FontManager.h - font manager
3+
Copyright (C) 2017 a1batross
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program 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
13+
GNU General Public License for more details.
14+
*/
115
#pragma once
216
#ifndef FONTMANAGER_H
317
#define FONTMANAGER_H

0 commit comments

Comments
 (0)