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
a7ee3e36
Commit
a7ee3e36
authored
Dec 24, 2015
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2446 from DonLakeFlyer/SavedFilesLocation
Use Documents as saved files location
parents
ef2586f8
a145b8ac
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
20 additions
and
280 deletions
+20
-280
QGCApplication.cc
src/QGCApplication.cc
+1
-113
QGCApplication.h
src/QGCApplication.h
+0
-20
ParameterEditorController.cc
src/QmlControls/ParameterEditorController.cc
+12
-6
MavlinkLogTest.cc
src/qgcunittest/MavlinkLogTest.cc
+2
-2
QGCMAVLinkLogPlayer.cc
src/ui/QGCMAVLinkLogPlayer.cc
+1
-1
SettingsDialog.cc
src/ui/SettingsDialog.cc
+2
-41
SettingsDialog.h
src/ui/SettingsDialog.h
+1
-12
SettingsDialog.ui
src/ui/SettingsDialog.ui
+1
-85
No files found.
src/QGCApplication.cc
View file @
a7ee3e36
...
@@ -117,19 +117,13 @@ QGCApplication* QGCApplication::_app = NULL;
...
@@ -117,19 +117,13 @@ QGCApplication* QGCApplication::_app = NULL;
const
char
*
QGCApplication
::
_deleteAllSettingsKey
=
"DeleteAllSettingsNextBoot"
;
const
char
*
QGCApplication
::
_deleteAllSettingsKey
=
"DeleteAllSettingsNextBoot"
;
const
char
*
QGCApplication
::
_settingsVersionKey
=
"SettingsVersion"
;
const
char
*
QGCApplication
::
_settingsVersionKey
=
"SettingsVersion"
;
const
char
*
QGCApplication
::
_savedFilesLocationKey
=
"SavedFilesLocation"
;
const
char
*
QGCApplication
::
_promptFlightDataSave
=
"PromptFLightDataSave"
;
const
char
*
QGCApplication
::
_promptFlightDataSave
=
"PromptFLightDataSave"
;
const
char
*
QGCApplication
::
_promptFlightDataSaveNotArmed
=
"PromptFLightDataSaveNotArmed"
;
const
char
*
QGCApplication
::
_promptFlightDataSaveNotArmed
=
"PromptFLightDataSaveNotArmed"
;
const
char
*
QGCApplication
::
_styleKey
=
"StyleIsDark"
;
const
char
*
QGCApplication
::
_styleKey
=
"StyleIsDark"
;
const
char
*
QGCApplication
::
_defaultSavedFileDirectoryName
=
"QGroundControl"
;
const
char
*
QGCApplication
::
_savedFileMavlinkLogDirectoryName
=
"FlightData"
;
const
char
*
QGCApplication
::
_savedFileParameterDirectoryName
=
"SavedParameters"
;
const
char
*
QGCApplication
::
_darkStyleFile
=
":/res/styles/style-dark.css"
;
const
char
*
QGCApplication
::
_darkStyleFile
=
":/res/styles/style-dark.css"
;
const
char
*
QGCApplication
::
_lightStyleFile
=
":/res/styles/style-light.css"
;
const
char
*
QGCApplication
::
_lightStyleFile
=
":/res/styles/style-light.css"
;
// Qml Singleton factories
// Qml Singleton factories
static
QObject
*
screenToolsControllerSingletonFactory
(
QQmlEngine
*
,
QJSEngine
*
)
static
QObject
*
screenToolsControllerSingletonFactory
(
QQmlEngine
*
,
QJSEngine
*
)
...
@@ -429,40 +423,6 @@ void QGCApplication::_initCommon(void)
...
@@ -429,40 +423,6 @@ void QGCApplication::_initCommon(void)
"Your saved settings have been reset to defaults."
);
"Your saved settings have been reset to defaults."
);
}
}
// Load saved files location and validate
QString
savedFilesLocation
;
if
(
settings
.
contains
(
_savedFilesLocationKey
))
{
savedFilesLocation
=
settings
.
value
(
_savedFilesLocationKey
).
toString
();
if
(
!
validatePossibleSavedFilesLocation
(
savedFilesLocation
))
{
savedFilesLocation
.
clear
();
}
}
if
(
savedFilesLocation
.
isEmpty
())
{
// No location set (or invalid). Create a default one in Documents standard location.
QString
documentsLocation
=
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DocumentsLocation
);
QDir
documentsDir
(
documentsLocation
);
if
(
!
documentsDir
.
exists
())
{
qWarning
()
<<
"Documents directory doesn't exist"
<<
documentsDir
.
absolutePath
();
}
bool
pathCreated
=
documentsDir
.
mkpath
(
_defaultSavedFileDirectoryName
);
Q_UNUSED
(
pathCreated
);
Q_ASSERT
(
pathCreated
);
savedFilesLocation
=
documentsDir
.
filePath
(
_defaultSavedFileDirectoryName
);
}
if
(
!
savedFilesLocation
.
isEmpty
())
{
if
(
!
validatePossibleSavedFilesLocation
(
savedFilesLocation
))
{
savedFilesLocation
.
clear
();
}
}
qDebug
()
<<
"Saved files location"
<<
savedFilesLocation
;
settings
.
setValue
(
_savedFilesLocationKey
,
savedFilesLocation
);
settings
.
sync
();
settings
.
sync
();
}
}
...
@@ -487,14 +447,6 @@ bool QGCApplication::_initForNormalAppBoot(void)
...
@@ -487,14 +447,6 @@ bool QGCApplication::_initForNormalAppBoot(void)
MainWindow
*
mainWindow
=
MainWindow
::
_create
();
MainWindow
*
mainWindow
=
MainWindow
::
_create
();
Q_CHECK_PTR
(
mainWindow
);
Q_CHECK_PTR
(
mainWindow
);
// If we made it this far and we still don't have a location. Either the specfied location was invalid
// or we coudn't create a default location. Either way, we need to let the user know and prompt for a new
/// settings.
QString
savedFilesLocation
=
settings
.
value
(
_savedFilesLocationKey
).
toString
();
if
(
savedFilesLocation
.
isEmpty
())
{
showMessage
(
"The location to save files to is invalid, or cannot be written to. Please provide a new one."
);
}
// Now that main window is up check for lost log files
// Now that main window is up check for lost log files
connect
(
this
,
&
QGCApplication
::
checkForLostLogFiles
,
toolbox
()
->
mavlinkProtocol
(),
&
MAVLinkProtocol
::
checkForLostLogFiles
);
connect
(
this
,
&
QGCApplication
::
checkForLostLogFiles
,
toolbox
()
->
mavlinkProtocol
(),
&
MAVLinkProtocol
::
checkForLostLogFiles
);
emit
checkForLostLogFiles
();
emit
checkForLostLogFiles
();
...
@@ -523,70 +475,6 @@ void QGCApplication::clearDeleteAllSettingsNextBoot(void)
...
@@ -523,70 +475,6 @@ void QGCApplication::clearDeleteAllSettingsNextBoot(void)
settings
.
remove
(
_deleteAllSettingsKey
);
settings
.
remove
(
_deleteAllSettingsKey
);
}
}
void
QGCApplication
::
setSavedFilesLocation
(
QString
&
location
)
{
QSettings
settings
;
settings
.
setValue
(
_savedFilesLocationKey
,
location
);
}
bool
QGCApplication
::
validatePossibleSavedFilesLocation
(
QString
&
location
)
{
// Make sure we can write to the directory
QString
filename
=
QDir
(
location
).
filePath
(
"QGCTempXXXXXXXX.tmp"
);
QGCTemporaryFile
tempFile
(
filename
);
if
(
!
tempFile
.
open
())
{
return
false
;
}
tempFile
.
remove
();
return
true
;
}
QString
QGCApplication
::
savedFilesLocation
(
void
)
{
QSettings
settings
;
return
settings
.
value
(
_savedFilesLocationKey
).
toString
();
}
QString
QGCApplication
::
savedParameterFilesLocation
(
void
)
{
QString
location
;
QDir
parentDir
(
savedFilesLocation
());
location
=
parentDir
.
filePath
(
_savedFileParameterDirectoryName
);
if
(
!
QDir
(
location
).
exists
())
{
// If directory doesn't exist, try to create it
if
(
!
parentDir
.
mkpath
(
_savedFileParameterDirectoryName
))
{
// Return an error
location
.
clear
();
}
}
return
location
;
}
QString
QGCApplication
::
mavlinkLogFilesLocation
(
void
)
{
QString
location
;
QDir
parentDir
(
savedFilesLocation
());
location
=
parentDir
.
filePath
(
_savedFileMavlinkLogDirectoryName
);
if
(
!
QDir
(
location
).
exists
())
{
// If directory doesn't exist, try to create it
if
(
!
parentDir
.
mkpath
(
_savedFileMavlinkLogDirectoryName
))
{
// Return an error
location
.
clear
();
}
}
return
location
;
}
bool
QGCApplication
::
promptFlightDataSave
(
void
)
bool
QGCApplication
::
promptFlightDataSave
(
void
)
{
{
QSettings
settings
;
QSettings
settings
;
...
@@ -655,7 +543,7 @@ void QGCApplication::saveTempFlightDataLogOnMainThread(QString tempLogfile)
...
@@ -655,7 +543,7 @@ void QGCApplication::saveTempFlightDataLogOnMainThread(QString tempLogfile)
QString
saveFilename
=
QGCFileDialog
::
getSaveFileName
(
QString
saveFilename
=
QGCFileDialog
::
getSaveFileName
(
MainWindow
::
instance
(),
MainWindow
::
instance
(),
tr
(
"Save Flight Data Log"
),
tr
(
"Save Flight Data Log"
),
qgcApp
()
->
mavlinkLogFilesLocation
(
),
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DocumentsLocation
),
tr
(
"Flight Data Log Files (*.mavlink)"
),
tr
(
"Flight Data Log Files (*.mavlink)"
),
"mavlink"
);
"mavlink"
);
...
...
src/QGCApplication.h
View file @
a7ee3e36
...
@@ -83,21 +83,6 @@ public:
...
@@ -83,21 +83,6 @@ public:
/// @brief Clears the persistent flag to delete all settings the next time QGroundControl is started.
/// @brief Clears the persistent flag to delete all settings the next time QGroundControl is started.
void
clearDeleteAllSettingsNextBoot
(
void
);
void
clearDeleteAllSettingsNextBoot
(
void
);
/// @brief Returns the location of user visible saved file associated with QGroundControl
QString
savedFilesLocation
(
void
);
/// @brief Sets the location of user visible saved file associated with QGroundControl
void
setSavedFilesLocation
(
QString
&
location
);
/// @brief Location to save and load parameter files from.
QString
savedParameterFilesLocation
(
void
);
/// @brief Location to save and load mavlink log files from
QString
mavlinkLogFilesLocation
(
void
);
/// @brief Validates that the specified location will work for the saved files location.
bool
validatePossibleSavedFilesLocation
(
QString
&
location
);
/// @return true: Prompt to save log file when vehicle goes away
/// @return true: Prompt to save log file when vehicle goes away
bool
promptFlightDataSave
(
void
);
bool
promptFlightDataSave
(
void
);
...
@@ -201,15 +186,10 @@ private:
...
@@ -201,15 +186,10 @@ private:
static
const
char
*
_settingsVersionKey
;
///< Settings key which hold settings version
static
const
char
*
_settingsVersionKey
;
///< Settings key which hold settings version
static
const
char
*
_deleteAllSettingsKey
;
///< If this settings key is set on boot, all settings will be deleted
static
const
char
*
_deleteAllSettingsKey
;
///< If this settings key is set on boot, all settings will be deleted
static
const
char
*
_savedFilesLocationKey
;
///< Settings key for user visible saved files location
static
const
char
*
_promptFlightDataSave
;
///< Settings key for promptFlightDataSave
static
const
char
*
_promptFlightDataSave
;
///< Settings key for promptFlightDataSave
static
const
char
*
_promptFlightDataSaveNotArmed
;
///< Settings key for promptFlightDataSaveNotArmed
static
const
char
*
_promptFlightDataSaveNotArmed
;
///< Settings key for promptFlightDataSaveNotArmed
static
const
char
*
_styleKey
;
///< Settings key for UI style
static
const
char
*
_styleKey
;
///< Settings key for UI style
static
const
char
*
_defaultSavedFileDirectoryName
;
///< Default name for user visible save file directory
static
const
char
*
_savedFileMavlinkLogDirectoryName
;
///< Name of mavlink log subdirectory
static
const
char
*
_savedFileParameterDirectoryName
;
///< Name of parameter subdirectory
bool
_runningUnitTests
;
///< true: running unit tests, false: normal app
bool
_runningUnitTests
;
///< true: running unit tests, false: normal app
static
const
char
*
_darkStyleFile
;
static
const
char
*
_darkStyleFile
;
...
...
src/QmlControls/ParameterEditorController.cc
View file @
a7ee3e36
...
@@ -96,13 +96,16 @@ void ParameterEditorController::clearRCToParam(void)
...
@@ -96,13 +96,16 @@ void ParameterEditorController::clearRCToParam(void)
void
ParameterEditorController
::
saveToFile
(
void
)
void
ParameterEditorController
::
saveToFile
(
void
)
{
{
#ifndef __mobile__
#ifndef __mobile__
Q_ASSERT
(
_autopilot
);
if
(
!
_autopilot
)
{
qWarning
()
<<
"Internal error _autopilot==NULL"
;
return
;
}
QString
msgTitle
(
"Save Parameters"
);
QString
msgTitle
(
"Save Parameters"
);
QString
fileName
=
QGCFileDialog
::
getSaveFileName
(
NULL
,
QString
fileName
=
QGCFileDialog
::
getSaveFileName
(
NULL
,
msgTitle
,
msgTitle
,
qgcApp
()
->
savedParameterFilesLocation
(
),
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DocumentsLocation
),
"Parameter Files (*.params)"
,
"Parameter Files (*.params)"
,
"params"
,
"params"
,
true
);
true
);
...
@@ -126,13 +129,16 @@ void ParameterEditorController::loadFromFile(void)
...
@@ -126,13 +129,16 @@ void ParameterEditorController::loadFromFile(void)
#ifndef __mobile__
#ifndef __mobile__
QString
errors
;
QString
errors
;
Q_ASSERT
(
_autopilot
);
if
(
!
_autopilot
)
{
qWarning
()
<<
"Internal error _autopilot==NULL"
;
return
;
}
QString
msgTitle
(
"Load Parameters"
);
QString
msgTitle
(
"Load Parameters"
);
QString
fileName
=
QGCFileDialog
::
getOpenFileName
(
NULL
,
QString
fileName
=
QGCFileDialog
::
getOpenFileName
(
NULL
,
msgTitle
,
msgTitle
,
qgcApp
()
->
savedParameterFilesLocation
(
),
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DocumentsLocation
),
"Parameter Files (*.params);;All Files (*)"
);
"Parameter Files (*.params);;All Files (*)"
);
if
(
!
fileName
.
isEmpty
())
{
if
(
!
fileName
.
isEmpty
())
{
QFile
file
(
fileName
);
QFile
file
(
fileName
);
...
...
src/qgcunittest/MavlinkLogTest.cc
View file @
a7ee3e36
...
@@ -104,7 +104,7 @@ void MavlinkLogTest::_bootLogDetectionSave_test(void)
...
@@ -104,7 +104,7 @@ void MavlinkLogTest::_bootLogDetectionSave_test(void)
// We should get a message box, followed by a getSaveFileName dialog.
// We should get a message box, followed by a getSaveFileName dialog.
setExpectedMessageBox
(
QMessageBox
::
Ok
);
setExpectedMessageBox
(
QMessageBox
::
Ok
);
QDir
logSaveDir
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
Documents
Location
));
QDir
logSaveDir
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
Temp
Location
));
QString
logSaveFile
(
logSaveDir
.
filePath
(
_saveLogFilename
));
QString
logSaveFile
(
logSaveDir
.
filePath
(
_saveLogFilename
));
setExpectedFileDialog
(
getSaveFileName
,
QStringList
(
logSaveFile
));
setExpectedFileDialog
(
getSaveFileName
,
QStringList
(
logSaveFile
));
...
@@ -144,7 +144,7 @@ void MavlinkLogTest::_connectLogWorker(bool arm)
...
@@ -144,7 +144,7 @@ void MavlinkLogTest::_connectLogWorker(bool arm)
QTest
::
qWait
(
1500
);
// Wait long enough for heartbeat to come through
QTest
::
qWait
(
1500
);
// Wait long enough for heartbeat to come through
// On Disconnect: We should get a getSaveFileName dialog.
// On Disconnect: We should get a getSaveFileName dialog.
logSaveDir
.
setPath
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
Documents
Location
));
logSaveDir
.
setPath
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
Temp
Location
));
QString
logSaveFile
(
logSaveDir
.
filePath
(
_saveLogFilename
));
QString
logSaveFile
(
logSaveDir
.
filePath
(
_saveLogFilename
));
setExpectedFileDialog
(
getSaveFileName
,
QStringList
(
logSaveFile
));
setExpectedFileDialog
(
getSaveFileName
,
QStringList
(
logSaveFile
));
}
}
...
...
src/ui/QGCMAVLinkLogPlayer.cc
View file @
a7ee3e36
...
@@ -68,7 +68,7 @@ void QGCMAVLinkLogPlayer::_selectLogFileForPlayback(void)
...
@@ -68,7 +68,7 @@ void QGCMAVLinkLogPlayer::_selectLogFileForPlayback(void)
QString
logFilename
=
QGCFileDialog
::
getOpenFileName
(
QString
logFilename
=
QGCFileDialog
::
getOpenFileName
(
this
,
this
,
tr
(
"Load MAVLink Log File"
),
tr
(
"Load MAVLink Log File"
),
qgcApp
()
->
mavlinkLogFilesLocation
(
),
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DocumentsLocation
),
tr
(
"MAVLink Log Files (*.mavlink);;All Files (*)"
));
tr
(
"MAVLink Log Files (*.mavlink);;All Files (*)"
));
if
(
logFilename
.
isEmpty
())
{
if
(
logFilename
.
isEmpty
())
{
...
...
src/ui/SettingsDialog.cc
View file @
a7ee3e36
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
#include "MainToolBarController.h"
#include "MainToolBarController.h"
#include "FlightMapSettings.h"
#include "FlightMapSettings.h"
SettingsDialog
::
SettingsDialog
(
QWidget
*
parent
,
int
showTab
,
Qt
::
WindowFlags
flags
)
SettingsDialog
::
SettingsDialog
(
QWidget
*
parent
,
Qt
::
WindowFlags
flags
)
:
QDialog
(
parent
,
flags
)
:
QDialog
(
parent
,
flags
)
,
_ui
(
new
Ui
::
SettingsDialog
)
,
_ui
(
new
Ui
::
SettingsDialog
)
{
{
...
@@ -59,49 +59,10 @@ SettingsDialog::SettingsDialog(QWidget *parent, int showTab, Qt::WindowFlags fla
...
@@ -59,49 +59,10 @@ SettingsDialog::SettingsDialog(QWidget *parent, int showTab, Qt::WindowFlags fla
this
->
window
()
->
setWindowTitle
(
tr
(
"QGroundControl Settings"
));
this
->
window
()
->
setWindowTitle
(
tr
(
"QGroundControl Settings"
));
_ui
->
savedFilesLocation
->
setText
(
qgcApp
()
->
savedFilesLocation
());
_ui
->
tabWidget
->
setCurrentWidget
(
pMavsettings
);
// Connect signals
connect
(
_ui
->
browseSavedFilesLocation
,
&
QPushButton
::
clicked
,
this
,
&
SettingsDialog
::
_selectSavedFilesDirectory
);
connect
(
_ui
->
buttonBox
,
&
QDialogButtonBox
::
accepted
,
this
,
&
SettingsDialog
::
_validateBeforeClose
);
if
(
showTab
==
ShowMavlink
)
{
_ui
->
tabWidget
->
setCurrentWidget
(
pMavsettings
);
}
}
}
SettingsDialog
::~
SettingsDialog
()
SettingsDialog
::~
SettingsDialog
()
{
{
delete
_ui
;
delete
_ui
;
}
}
/// @brief Validates the settings before closing
void
SettingsDialog
::
_validateBeforeClose
(
void
)
{
QGCApplication
*
app
=
qgcApp
();
// Validate the saved file location
QString
saveLocation
=
_ui
->
savedFilesLocation
->
text
();
if
(
!
app
->
validatePossibleSavedFilesLocation
(
saveLocation
))
{
QGCMessageBox
::
warning
(
tr
(
"Invalid Save Location"
),
tr
(
"The location to save files is invalid, or cannot be written to. Please provide a valid directory."
));
return
;
}
// Locations is valid, save
app
->
setSavedFilesLocation
(
saveLocation
);
// Close dialog
accept
();
}
/// @brief Displays a directory picker dialog to allow the user to select a saved file location
void
SettingsDialog
::
_selectSavedFilesDirectory
(
void
)
{
QString
newLocation
=
QGCFileDialog
::
getExistingDirectory
(
this
,
tr
(
"Select the directory where you want to save files to."
),
_ui
->
savedFilesLocation
->
text
());
if
(
!
newLocation
.
isEmpty
())
{
_ui
->
savedFilesLocation
->
setText
(
newLocation
);
}
}
src/ui/SettingsDialog.h
View file @
a7ee3e36
...
@@ -40,20 +40,9 @@ class SettingsDialog : public QDialog
...
@@ -40,20 +40,9 @@ class SettingsDialog : public QDialog
Q_OBJECT
Q_OBJECT
public:
public:
SettingsDialog
(
QWidget
*
parent
=
0
,
Qt
::
WindowFlags
flags
=
Qt
::
Sheet
);
enum
{
ShowDefault
,
ShowControllers
,
ShowMavlink
};
SettingsDialog
(
QWidget
*
parent
=
0
,
int
showTab
=
ShowDefault
,
Qt
::
WindowFlags
flags
=
Qt
::
Sheet
);
~
SettingsDialog
();
~
SettingsDialog
();
private
slots
:
void
_selectSavedFilesDirectory
(
void
);
void
_validateBeforeClose
(
void
);
private:
private:
Ui
::
SettingsDialog
*
_ui
;
Ui
::
SettingsDialog
*
_ui
;
};
};
...
...
src/ui/SettingsDialog.ui
View file @
a7ee3e36
...
@@ -21,91 +21,7 @@
...
@@ -21,91 +21,7 @@
</property>
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_5"
>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_5"
>
<item>
<item>
<widget
class=
"QTabWidget"
name=
"tabWidget"
>
<widget
class=
"QTabWidget"
name=
"tabWidget"
/>
<widget
class=
"QWidget"
name=
"general"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Expanding"
vsizetype=
"Preferred"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<attribute
name=
"title"
>
<string>
General
</string>
</attribute>
<attribute
name=
"toolTip"
>
<string>
General Settings
</string>
</attribute>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_8"
>
<item>
<widget
class=
"QGroupBox"
name=
"fileLocationsLayout"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"MinimumExpanding"
vsizetype=
"Fixed"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"minimumSize"
>
<size>
<width>
0
</width>
<height>
0
</height>
</size>
</property>
<property
name=
"title"
>
<string>
File Locations
</string>
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_7"
>
<item>
<widget
class=
"QLabel"
name=
"label"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Preferred"
vsizetype=
"Fixed"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"minimumSize"
>
<size>
<width>
0
</width>
<height>
0
</height>
</size>
</property>
<property
name=
"text"
>
<string>
Specify the location you would like to save files:
</string>
</property>
<property
name=
"wordWrap"
>
<bool>
true
</bool>
</property>
</widget>
</item>
<item>
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout_2"
>
<item>
<widget
class=
"QLineEdit"
name=
"savedFilesLocation"
>
<property
name=
"minimumSize"
>
<size>
<width>
200
</width>
<height>
21
</height>
</size>
</property>
<property
name=
"maxLength"
>
<number>
1024
</number>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"browseSavedFilesLocation"
>
<property
name=
"text"
>
<string>
Browse
</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</item>
<item>
<item>
<widget
class=
"QDialogButtonBox"
name=
"buttonBox"
>
<widget
class=
"QDialogButtonBox"
name=
"buttonBox"
>
...
...
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