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
dogmaphobic
189299f354
Appending required extension when it is not the one used (when in strict mode).
...
Added a dialog asking the user about overwritting an existing file.
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
dogmaphobic
1e8545f750
Adding code to check and see if a given file has a proper extension (when the strict flag is set).
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
dogmaphobic
6ee1a42384
Initial work on enforcing extension.
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
Lorenz Meier
1eba9577fb
Merge pull request #1155 from thomasgubler/rcparamtune
...
Rc param tune
11 years ago
Thomas Gubler
29d0fa442c
MockUAS: add missing functions
11 years ago
Thomas Gubler
ef7e7774b8
fix reorder and unused errors
11 years ago
Thomas Gubler
aaba8342ab
remove debug output
11 years ago
Thomas Gubler
f48f62cf50
make sure mavlink param_id string has the correct length
11 years ago
Thomas Gubler
6d95cdc1b4
Merge pull request #1151 from mavlink/vimycm
...
Vim YouCompleteMe config
11 years ago
Thomas Gubler
da9ac793c1
update mavlink c library
11 years ago
Don Gagne
299e9e7ce4
Merge pull request #1150 from DonLakeFlyer/Connect
...
Rework Connect toolbar button usage
11 years ago
Don Gagne
4bfc1f3bca
Switched WiFi to UDP
11 years ago
Don Gagne
255b676a4f
Fix compiler warning
11 years ago
Don Gagne
4d40f2984a
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
11 years ago
Don Gagne
78507bfe6a
SetupView no longer created at boot
...
UAS may be around at constructor time
11 years ago
Don Gagne
dd8b0a3a71
Hip dock widgeta show up automatically
...
No need to force them to show
11 years ago
Don Gagne
561202d84f
Remove title bar on/off support
11 years ago
Don Gagne
69c79dbf90
Set initial size smaller
...
This way the dock doesn’t end up too wide
11 years ago
Don Gagne
4499f8f5d2
Delete unused files
11 years ago
Don Gagne
b8a79875af
Merge pull request #1153 from DonLakeFlyer/QQuickWidgetFix
...
Don't use native widget siblings
11 years ago