Skip to content

Commit c5e6911

Browse files
author
Teuniz
committed
Basic functions working with DS6000 series.
0 parents  commit c5e6911

26 files changed

+17464
-0
lines changed

LICENSE

+674
Large diffs are not rendered by default.

about_dialog.cpp

+615
Large diffs are not rendered by default.

about_dialog.h

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
***************************************************************************
3+
*
4+
* Author: Teunis van Beelen
5+
*
6+
* Copyright (C) 2015 Teunis van Beelen
7+
*
8+
9+
*
10+
***************************************************************************
11+
*
12+
* This program is free software: you can redistribute it and/or modify
13+
* it under the terms of the GNU General Public License as published by
14+
* the Free Software Foundation, either version 3 of the License, or
15+
* (at your option) any later version.
16+
*
17+
* This program is distributed in the hope that it will be useful,
18+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20+
* GNU General Public License for more details.
21+
*
22+
* You should have received a copy of the GNU General Public License
23+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
*
25+
***************************************************************************
26+
*/
27+
28+
29+
30+
31+
#ifndef ABOUT_FORM1_H
32+
#define ABOUT_FORM1_H
33+
34+
35+
36+
#include <QtGlobal>
37+
#include <QApplication>
38+
#include <QObject>
39+
#include <QDialog>
40+
#include <QPushButton>
41+
#include <QTextEdit>
42+
#include <QHBoxLayout>
43+
#include <QVBoxLayout>
44+
45+
#include "global.h"
46+
#include "mainwindow.h"
47+
48+
49+
50+
class UI_Aboutwindow : public QObject
51+
{
52+
Q_OBJECT
53+
54+
public:
55+
UI_Aboutwindow();
56+
57+
private:
58+
59+
QDialog *AboutDialog;
60+
61+
QPushButton *pushButton1;
62+
63+
QTextEdit *textedit1;
64+
65+
QHBoxLayout *hlayout1;
66+
67+
QVBoxLayout *vlayout1;
68+
69+
};
70+
71+
72+
73+
#endif // ABOUT_FORM1_H
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
84+
85+
86+

dsremote.pro

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
3+
TEMPLATE = app
4+
TARGET = dsremote
5+
DEPENDPATH += .
6+
INCLUDEPATH += .
7+
CONFIG += qt
8+
CONFIG += warn_on
9+
CONFIG += release
10+
CONFIG += static
11+
CONFIG += largefile
12+
13+
QT += widgets
14+
15+
QMAKE_CXXFLAGS += -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -Wtype-limits -Wfatal-errors
16+
17+
OBJECTS_DIR = ./objects
18+
MOC_DIR = ./moc
19+
20+
HEADERS += global.h
21+
HEADERS += mainwindow.h
22+
HEADERS += about_dialog.h
23+
HEADERS += utils.h
24+
HEADERS += tmc_dev.h
25+
HEADERS += tled.h
26+
HEADERS += edflib.h
27+
HEADERS += signalcurve.h
28+
29+
SOURCES += main.cpp
30+
SOURCES += mainwindow.cpp
31+
SOURCES += timer_handlers.cpp
32+
SOURCES += save_data.cpp
33+
SOURCES += interface.cpp
34+
SOURCES += about_dialog.cpp
35+
SOURCES += utils.c
36+
SOURCES += tmc_dev.c
37+
SOURCES += tled.cpp
38+
SOURCES += edflib.c
39+
SOURCES += signalcurve.cpp
40+
41+
RESOURCES = images.qrc
42+
43+
44+
45+

0 commit comments

Comments
 (0)