diff options
Diffstat (limited to 'qt')
-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 | ||||
-rw-r--r-- | qt/console/main.cpp | 19 | ||||
-rw-r--r-- | qt/consoleserver/irc.cpp | 19 | ||||
-rw-r--r-- | qt/consoleserver/irc.h | 19 | ||||
-rw-r--r-- | qt/consoleserver/main.cpp | 19 | ||||
-rw-r--r-- | qt/consoleserver/serial.cpp | 19 | ||||
-rw-r--r-- | qt/consoleserver/serial.h | 19 | ||||
-rw-r--r-- | qt/consoleserver/server.cpp | 19 | ||||
-rw-r--r-- | qt/consoleserver/server.h | 19 | ||||
-rw-r--r-- | qt/ircbot/main.cpp | 19 | ||||
-rw-r--r-- | qt/ircbot/qtbot.cpp | 19 | ||||
-rw-r--r-- | qt/ircbot/qtbot.h | 19 |
19 files changed, 343 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 diff --git a/qt/console/main.cpp b/qt/console/main.cpp index 90919ca..db2e24f 100644 --- a/qt/console/main.cpp +++ b/qt/console/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 <QCoreApplication> #include <QDebug> #include <QSerialPortInfo> diff --git a/qt/consoleserver/irc.cpp b/qt/consoleserver/irc.cpp index 3a2ed79..5537440 100644 --- a/qt/consoleserver/irc.cpp +++ b/qt/consoleserver/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/consoleserver/irc.h b/qt/consoleserver/irc.h index 733bebf..c3b2612 100644 --- a/qt/consoleserver/irc.h +++ b/qt/consoleserver/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/consoleserver/main.cpp b/qt/consoleserver/main.cpp index c944e38..6ef81d5 100644 --- a/qt/consoleserver/main.cpp +++ b/qt/consoleserver/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 <QCoreApplication> #include <QObject> #include "serial.h" diff --git a/qt/consoleserver/serial.cpp b/qt/consoleserver/serial.cpp index aea46bb..b83a55f 100644 --- a/qt/consoleserver/serial.cpp +++ b/qt/consoleserver/serial.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 "serial.h" #include <QThread> diff --git a/qt/consoleserver/serial.h b/qt/consoleserver/serial.h index 3f0386a..d22adfb 100644 --- a/qt/consoleserver/serial.h +++ b/qt/consoleserver/serial.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 SERIAL_H #define SERIAL_H diff --git a/qt/consoleserver/server.cpp b/qt/consoleserver/server.cpp index 401ee8d..9fd532d 100644 --- a/qt/consoleserver/server.cpp +++ b/qt/consoleserver/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/consoleserver/server.h b/qt/consoleserver/server.h index 9fd84dc..bccae34 100644 --- a/qt/consoleserver/server.h +++ b/qt/consoleserver/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 diff --git a/qt/ircbot/main.cpp b/qt/ircbot/main.cpp index 7022866..bae2252 100644 --- a/qt/ircbot/main.cpp +++ b/qt/ircbot/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 <QCoreApplication> #include <QObject> #include <QTimer> diff --git a/qt/ircbot/qtbot.cpp b/qt/ircbot/qtbot.cpp index 2cb67dd..bf99e93 100644 --- a/qt/ircbot/qtbot.cpp +++ b/qt/ircbot/qtbot.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 "qtbot.h" QtBot::QtBot(QObject *parent) : QObject(parent) diff --git a/qt/ircbot/qtbot.h b/qt/ircbot/qtbot.h index 5878def..3395c78 100644 --- a/qt/ircbot/qtbot.h +++ b/qt/ircbot/qtbot.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 QTBOT_H #define QTBOT_H |