diff options
Diffstat (limited to 'qt/RGBController')
-rwxr-xr-x | qt/RGBController/RGBController.pro.user | 2 | ||||
-rwxr-xr-x | qt/RGBController/controllerwindow.cpp | 19 | ||||
-rwxr-xr-x | qt/RGBController/controllerwindow.h | 19 | ||||
-rw-r--r-- | qt/RGBController/irc.cpp | 19 | ||||
-rw-r--r-- | qt/RGBController/irc.h | 19 | ||||
-rwxr-xr-x | qt/RGBController/main.cpp | 19 | ||||
-rw-r--r-- | qt/RGBController/server.cpp | 19 | ||||
-rw-r--r-- | qt/RGBController/server.h | 19 |
8 files changed, 134 insertions, 1 deletions
diff --git a/qt/RGBController/RGBController.pro.user b/qt/RGBController/RGBController.pro.user index 92eee62..4ae768e 100755 --- a/qt/RGBController/RGBController.pro.user +++ b/qt/RGBController/RGBController.pro.user @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE QtCreatorProject> -<!-- Written by QtCreator 4.2.2, 2017-06-07T20:06:36. --> +<!-- Written by QtCreator 4.3.1, 2017-08-14T15:27:31. --> <qtcreator> <data> <variable>EnvironmentId</variable> diff --git a/qt/RGBController/controllerwindow.cpp b/qt/RGBController/controllerwindow.cpp index c96cfb2..ca81fef 100755 --- a/qt/RGBController/controllerwindow.cpp +++ b/qt/RGBController/controllerwindow.cpp @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #include "controllerwindow.h" controllerWindow::controllerWindow(QWidget *parent) : diff --git a/qt/RGBController/controllerwindow.h b/qt/RGBController/controllerwindow.h index b36d70b..1f24d8d 100755 --- a/qt/RGBController/controllerwindow.h +++ b/qt/RGBController/controllerwindow.h @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #ifndef CONTROLLERWINDOW_H #define CONTROLLERWINDOW_H diff --git a/qt/RGBController/irc.cpp b/qt/RGBController/irc.cpp index d87f0be..a1906c4 100644 --- a/qt/RGBController/irc.cpp +++ b/qt/RGBController/irc.cpp @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #include "irc.h" irc::irc(QObject *parent) : QObject(parent) diff --git a/qt/RGBController/irc.h b/qt/RGBController/irc.h index 733bebf..c3b2612 100644 --- a/qt/RGBController/irc.h +++ b/qt/RGBController/irc.h @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #ifndef IRC_H #define IRC_H diff --git a/qt/RGBController/main.cpp b/qt/RGBController/main.cpp index 4d44399..96351dd 100755 --- a/qt/RGBController/main.cpp +++ b/qt/RGBController/main.cpp @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #include "controllerwindow.h" #include <QApplication> diff --git a/qt/RGBController/server.cpp b/qt/RGBController/server.cpp index 8a973e6..519ed97 100644 --- a/qt/RGBController/server.cpp +++ b/qt/RGBController/server.cpp @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #include "server.h" server::server(QObject *parent) : QObject(parent) diff --git a/qt/RGBController/server.h b/qt/RGBController/server.h index 8d46539..7d11166 100644 --- a/qt/RGBController/server.h +++ b/qt/RGBController/server.h @@ -1,3 +1,22 @@ +/* + * Copyright Daniel Jones 2016-2018 + * + * This file is part of RGBController. + * + * RGBController is free software: you can redistribute it and/or modifiy + * 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. + * + * RGBController 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 RGBController. If not, see <http://www.gnu.org/licenses/>. + */ + #ifndef SERVER_H #define SERVER_H |