From e04eee73e9ab27623b531007fee17692aa251cee Mon Sep 17 00:00:00 2001 From: Matt Mower Date: Sat, 31 Dec 2016 00:38:57 -0600 Subject: Add missing license headers Change-Id: I7f807a2f140068181524d8e868d029b4d94c70e8 --- gui/animation.cpp | 18 ++++++++++++++++++ gui/fill.cpp | 18 ++++++++++++++++++ gui/hardwarekeyboard.cpp | 18 ++++++++++++++++++ gui/image.cpp | 18 ++++++++++++++++++ gui/mousecursor.cpp | 18 ++++++++++++++++++ gui/object.cpp | 18 ++++++++++++++++++ gui/pages.hpp | 18 ++++++++++++++++++ gui/patternpassword.cpp | 18 ++++++++++++++++++ gui/progressbar.cpp | 18 ++++++++++++++++++ gui/resources.cpp | 18 ++++++++++++++++++ gui/resources.hpp | 18 ++++++++++++++++++ gui/slider.cpp | 18 ++++++++++++++++++ gui/slidervalue.cpp | 18 ++++++++++++++++++ 13 files changed, 234 insertions(+) (limited to 'gui') diff --git a/gui/animation.cpp b/gui/animation.cpp index 37f0d0872..2244503e8 100644 --- a/gui/animation.cpp +++ b/gui/animation.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // animation.cpp - GUIAnimation object #include diff --git a/gui/fill.cpp b/gui/fill.cpp index 0fda4b430..3cfbe6ed4 100644 --- a/gui/fill.cpp +++ b/gui/fill.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // fill.cpp - GUIFill object #include diff --git a/gui/hardwarekeyboard.cpp b/gui/hardwarekeyboard.cpp index 9ca607c0d..f831727d1 100644 --- a/gui/hardwarekeyboard.cpp +++ b/gui/hardwarekeyboard.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // hardwarekeyboard.cpp - HardwareKeyboard object #include diff --git a/gui/image.cpp b/gui/image.cpp index 2107d5506..2b5c54197 100644 --- a/gui/image.cpp +++ b/gui/image.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // image.cpp - GUIImage object #include diff --git a/gui/mousecursor.cpp b/gui/mousecursor.cpp index cb5e11b75..b87cac414 100644 --- a/gui/mousecursor.cpp +++ b/gui/mousecursor.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + #include #include #include diff --git a/gui/object.cpp b/gui/object.cpp index be831a778..0cf2ccea6 100644 --- a/gui/object.cpp +++ b/gui/object.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // object.cpp - GUIObject base class #include diff --git a/gui/pages.hpp b/gui/pages.hpp index 4bfd5b0e5..1e71b10e0 100644 --- a/gui/pages.hpp +++ b/gui/pages.hpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // pages.hpp - Base classes for page manager of GUI #ifndef _PAGES_HEADER_HPP diff --git a/gui/patternpassword.cpp b/gui/patternpassword.cpp index 4bce37a0c..c31737f32 100644 --- a/gui/patternpassword.cpp +++ b/gui/patternpassword.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + #include #include #include diff --git a/gui/progressbar.cpp b/gui/progressbar.cpp index c40e63ea2..56ce48091 100644 --- a/gui/progressbar.cpp +++ b/gui/progressbar.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // progressbar.cpp - GUIProgressBar object #include diff --git a/gui/resources.cpp b/gui/resources.cpp index 000912d4e..bd71d50b0 100644 --- a/gui/resources.cpp +++ b/gui/resources.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // resource.cpp - Source to manage GUI resources #include diff --git a/gui/resources.hpp b/gui/resources.hpp index 528fecc14..2d3067667 100644 --- a/gui/resources.hpp +++ b/gui/resources.hpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // resources.hpp - Base classes for resource management of GUI #ifndef _RESOURCE_HEADER diff --git a/gui/slider.cpp b/gui/slider.cpp index 1a2f59e68..ed5c615ce 100644 --- a/gui/slider.cpp +++ b/gui/slider.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // slider.cpp - GUISlider object // Pulled & ported from https://raw.github.com/agrabren/RecoverWin/master/gui/slider.cpp diff --git a/gui/slidervalue.cpp b/gui/slidervalue.cpp index b53797b25..6f007e23b 100644 --- a/gui/slidervalue.cpp +++ b/gui/slidervalue.cpp @@ -1,3 +1,21 @@ +/* + Copyright 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP 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 3 of the License, or + (at your option) any later version. + + TWRP 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 TWRP. If not, see . +*/ + // slidervalue.cpp - GUISliderValue object #include -- cgit v1.2.3