Don Gagne
35a89d527a
WIP on Firmware Upgrade conversion to Qml
10 years ago
Don Gagne
50cef5034c
Updated for new Palette import
10 years ago
Don Gagne
f45cd1d439
Add new Qml Control test window/menu
10 years ago
Don Gagne
70a55798bb
Move Palette registration out of FactSystem
...
Since this is generic Qml support not specific to FactSystem
10 years ago
Don Gagne
f7eb2306f2
Moved qml controls closer to c++ source in tree
10 years ago
Don Gagne
c152d25773
Merge pull request #1197 from DonLakeFlyer/QMLPalette
...
Add Light/Dark theme support to QML
10 years ago
Don Gagne
5fd125d9d6
Add Light/Dark theme support to QML
10 years ago
Don Gagne
fff84f17f6
Merge pull request #1191 from DonLakeFlyer/SetupUI
...
Back to non-modal, no pop-up Setup View
10 years ago
Don Gagne
af38a105df
Re-implemented Setup View
10 years ago
Don Gagne
1da6c502ec
Remove unused VehicleComponentSummaryItem
10 years ago
Don Gagne
5476a45e4c
Remove unused files
10 years ago
Don Gagne
d652eeb944
Merge pull request #1187 from dogmaphobic/issue1185
...
Removing unused selectedFilter argument from QGXFileDialog methods.
10 years ago
Don Gagne
9bd7680f80
Merge pull request #1184 from dogmaphobic/issue1173
...
Remove erroneous use of QFileDialog::selectNameFilter()
10 years ago
dogmaphobic
9b6b87788a
Adding and/or fixing even more and more captions.
10 years ago
dogmaphobic
2b8196b104
Adding and/or fixing even more captions.
10 years ago
dogmaphobic
81b4fd3a39
Adding and/or fixing captions.
10 years ago
dogmaphobic
e993032a2c
Adding missing braces.
10 years ago
dogmaphobic
4e8f2739cc
Fixing typo.
10 years ago
dogmaphobic
5ebb3ed22e
Merge remote-tracking branch 'mavlink/master' into issue1185
...
Sync work branch.
10 years ago
Don Gagne
28b6c0703a
Merge pull request #1186 from DonLakeFlyer/FirmwareCrash
...
Fix crash when no UAS
10 years ago
Don Gagne
7679f75f53
Fix crash when no UAS
...
Fixes Issue #1162
10 years ago
dogmaphobic
77f442fd86
Changing the defaultSuffix argument from a pointer to a const.
...
Changing the order of the QGCFileDialog::getSaveFileName() function. The idea was to expand the existing QFileDialog version but as we removed the selectedFilter, we might as well make this more intuitive. The options argument is the one trully optional and should be last.
Adding an example to the documentation on how to go about figuring out what file type was returned by these functions.
10 years ago
dogmaphobic
209d354cd3
Removed the “selectedFilter” argument from the QGCFileDialog functions along with references to it in unit tests.
...
Fixed function declarations and prototypes formatting while at it.
Changed the caption of a few file save dialogs with a more descriptive text (explicitly telling what is being saved).
10 years ago
Don Gagne
808a835d60
Merge pull request #1183 from DonLakeFlyer/SettingsFix
...
Fixing bogus push of SettingsDialog.ui for merge hell
10 years ago
dogmaphobic
98bf2379a6
Remove erroneous use of QFileDialog::selectNameFilter(). No filters are to be selected. The argument selectedFilter is a pointer to a String to receive the filter selected/used by the user.
10 years ago
Don Gagne
3165ab6085
Fixing bogus push for merge hell
10 years ago
Don Gagne
9d73e721b9
Merge pull request #1159 from DonLakeFlyer/MainWindowDockWidget
...
Main window central view and dock widget re-architecture
10 years ago
Don Gagne
f171e0aa31
Bogus commit to get around merge
...
Will fix in next pull
10 years ago
Don Gagne
0c23e83e80
Fix compiler warning
10 years ago
Don Gagne
48663c8a4f
New MainWindow central and dock widget architecture
...
- Central widget no longer stacked. Views are added/removed to layout
to switch view
- Dock Widgets are globals with single instance of each type
- Both central views and dock widgets are just-in-time created saving
lots of memory
10 years ago
Don Gagne
f486e7ea65
SetupView no longer created at boot
...
UAS may be around at constructor time
10 years ago
Don Gagne
4be5d98422
Hip dock widgeta show up automatically
...
No need to force them to show
10 years ago
Don Gagne
bbb5b84c19
Remove title bar on/off support
10 years ago
Don Gagne
04d214d6dd
Set initial size smaller
...
This way the dock doesn’t end up too wide
10 years ago
Don Gagne
fb33b0386c
Delete unused files
10 years ago
Don Gagne
3908e1c741
Merge pull request #1178 from mavlink/local-3d-fix
...
Made Q3D emit updateWidget so that local view updates correctly.
10 years ago
Bryant Mairs
c245ce3e6c
Fix Qt documentation links to point to Qt5.
10 years ago
dogmaphobic
3e44cd1b3e
Fixing a case of an elusive, braceless conditional.
10 years ago
dogmaphobic
d7c89e954f
Adding braces around conditional oneliners
10 years ago
dogmaphobic
0262ce2107
Removing unnecessary double semi-colon from single type filters in file dialogs
10 years ago
dogmaphobic
7d4831d017
Tweaking the documentation for QFileDialog and replacing the doxygen "@" escape to be consistent with the rest of the code.
10 years ago
dogmaphobic
32495fc404
Added default suffixes to these functions:
...
QGCApplication::saveTempFlightDataLogOnMainThread()
MainWindow::startVideoCapture()
QGCBaseParamWidget::saveParametersToFile()
QGCDataPlot2D::savePlot()
QGCDataPlot2D::saveCsvLog()
WaypointList::saveWaypoints()
QGCToolWidget::exportWidget()
LinechartWidget::startLogging()
Making sure defaultSuffix doesn’t start with a dot (i.e. “.bar”)
QGCFileDialog::getSaveFileName()
Assert if defaultSuffix contains a dot (i.e. “.bar”)
UnitTest::_getSaveFileName()
10 years ago
dogmaphobic
20e6c7486b
Making sure to tell users to leave selectedFilter NULL as it is not yet implemented.
10 years ago
dogmaphobic
6eeefe9c3b
Documenting QGCFileDialog.h
10 years ago
dogmaphobic
eeafd468a7
Added appropriate AcceptMode to AcceptSave so the OpenFileSave shows the proper Save button instead of the default Open button.
10 years ago
dogmaphobic
db7470f7df
Revert premature assumption that adding support for selected filters in Open Save would not affect all other file dialog operations. As is, unit tests requires all or nothing.
10 years ago
dogmaphobic
a3f5bd797e
Fixing missing argument in Debug builds
10 years ago
dogmaphobic
fcf4fda2ca
WIP issue #1173 . Adding default suffix (extension). While at it, added selected filter support and removed unit test assert about its use.
10 years ago
jayceelock
28d17cbe83
Adding Mint install instructions for QT5.3
10 years ago
James Goppert
d24787544d
Made Q3D emit updateWidget so that local view updates correctly.
10 years ago