Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
3fec7e22
Commit
3fec7e22
authored
Jul 14, 2011
by
lm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added video application, not working yet
parent
4cfee50e
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
266 additions
and
1 deletion
+266
-1
mavlinkgen_installer.nsi
deploy/mavlinkgen_installer.nsi
+35
-0
qgcvideo.pro
qgcvideo.pro
+41
-0
QGC.cc
src/QGC.cc
+1
-1
QGC.h
src/QGC.h
+23
-0
QGCVideoApp.cc
src/apps/qgcvideo/QGCVideoApp.cc
+44
-0
QGCVideoApp.h
src/apps/qgcvideo/QGCVideoApp.h
+52
-0
QGCVideoApp.ui
src/apps/qgcvideo/QGCVideoApp.ui
+24
-0
main.cc
src/apps/qgcvideo/main.cc
+46
-0
No files found.
deploy/mavlinkgen_installer.nsi
0 → 100644
View file @
3fec7e22
Name "QGroundcontrol"
OutFile "qgroundcontrol-installer-win32.exe"
InstallDir $PROGRAMFILES\qgroundcontrol
Page license
Page directory
Page components
Page instfiles
UninstPage uninstConfirm
UninstPage instfiles
LicenseData ..\license.txt
Section ""
SetOutPath $INSTDIR
File ..\release\*.*
WriteUninstaller $INSTDIR\QGroundControl_uninstall.exe
SectionEnd
Section "Uninstall"
Delete $INSTDIR\QGroundControl_uninstall.exe
Delete $INSTDIR\*.*
RMDir $INSTDIR
Delete "$SMPROGRAMS\QGroundControl\*.*"
RMDir "$SMPROGRAMS\QGroundControl\"
SectionEnd
Section "create Start Menu Shortcuts"
CreateDirectory "$SMPROGRAMS\QGroundControl"
CreateShortCut "$SMPROGRAMS\QGroundControl\uninstall.lnk" "$INSTDIR\QGroundControl_uninstall.exe" "" "$INSTDIR\QGroundControl_uninstall.exe" 0
CreateShortCut "$SMPROGRAMS\QGroundControl\QGroundControl.lnk" "$INSTDIR\qgroundcontrol.exe" "" "$INSTDIR\qgroundcontrol.exe" 0
SectionEnd
\ No newline at end of file
qgcvideo.pro
0 → 100644
View file @
3fec7e22
# Video streaming application for simple UDP direct byte streaming
QT
+=
svg
network
TEMPLATE
=
app
TARGET
=
qgcvideo
BASEDIR
=
.
BUILDDIR
=
build
/
qgcvideo
LANGUAGE
=
C
++
CONFIG
+=
release
CONFIG
-=
debug
OBJECTS_DIR
=
$$
BUILDDIR
/
obj
MOC_DIR
=
$$
BUILDDIR
/
moc
UI_HEADERS_DIR
=
src
/
ui
/
generated
macx
:
DESTDIR
=
$$
BASEDIR
/
bin
/
mac
INCLUDEPATH
+=
.
\
src
\
src
/
ui
\
src
/
comm
\
include
/
ui
\
src
/
ui
/
mavlink
\
src
/
apps
/
qgcstreamer
#
Input
HEADERS
+=
src
/
apps
/
qgcvideo
/
QGCVideoApp
.
h
SOURCES
+=
\
src
/
apps
/
qgcvideo
/
QGCVideoApp
.
cc
\
src
/
apps
/
qgcvideo
/
main
.
cc
FORMS
+=
\
src
/
apps
/
qgcvideo
/
QGCVideoApp
.
ui
RESOURCES
=
mavground
.
qrc
src/QGC.cc
View file @
3fec7e22
...
...
@@ -2,7 +2,7 @@
QGroundControl Open Source Ground Control Station
(c) 2009
, 2010
QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
(c) 2009
- 2011
QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
...
...
src/QGC.h
View file @
3fec7e22
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
QGROUNDCONTROL 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.
QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
#ifndef QGC_H
#define QGC_H
...
...
src/apps/qgcvideo/QGCVideoApp.cc
0 → 100644
View file @
3fec7e22
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
QGROUNDCONTROL 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.
QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
/**
* @file
* @brief Main executable
* @author Lorenz Meier <lm@inf.ethz.ch>
*
*/
#include "QGCVideoApp.h"
#include "ui_QGCVideoApp.h"
QGCVideoApp
::
QGCVideoApp
(
QWidget
*
parent
)
:
QMainWindow
(
parent
),
ui
(
new
Ui
::
QGCVideoApp
)
{
ui
->
setupUi
(
this
);
}
QGCVideoApp
::~
QGCVideoApp
()
{
delete
ui
;
}
src/apps/qgcvideo/QGCVideoApp.h
0 → 100644
View file @
3fec7e22
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
QGROUNDCONTROL 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.
QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
/**
* @file
* @brief Main executable
* @author Lorenz Meier <lm@inf.ethz.ch>
*
*/
#ifndef QGCVIDEOAPP_H
#define QGCVIDEOAPP_H
#include <QMainWindow>
namespace
Ui
{
class
QGCVideoApp
;
}
class
QGCVideoApp
:
public
QMainWindow
{
Q_OBJECT
public:
explicit
QGCVideoApp
(
QWidget
*
parent
=
0
);
~
QGCVideoApp
();
private:
Ui
::
QGCVideoApp
*
ui
;
};
#endif // QGCVIDEOAPP_H
src/apps/qgcvideo/QGCVideoApp.ui
0 → 100644
View file @
3fec7e22
<ui version="4.0">
<author/>
<comment/>
<exportmacro/>
<class>QGCVideoApp</class>
<widget class="QMainWindow" name="QGCVideoApp">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QMenuBar" name="menubar"/>
<widget class="QWidget" name="centralwidget"/>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<pixmapfunction/>
<connections/>
</ui>
src/apps/qgcvideo/main.cc
0 → 100644
View file @
3fec7e22
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
QGROUNDCONTROL 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.
QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
/**
* @file
* @brief Main executable
* @author Lorenz Meier <lm@inf.ethz.ch>
*
*/
#include <QtGui/QApplication>
#include "QGCVideoApp.h"
/**
* @brief Starts the application
*
* @param argc Number of commandline arguments
* @param argv Commandline arguments
* @return exit code, 0 for normal exit and !=0 for error cases
*/
int
main
(
int
argc
,
char
*
argv
[])
{
QGCVideoApp
app
(
argc
,
argv
);
return
app
.
exec
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment