Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
c5e5eb0f
Unverified
Commit
c5e5eb0f
authored
4 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
datatransfer: add method to get default download directory
Change-Id: If74742b183f3d8ef062959cc4508690fe80b6fbd
parent
ec26847a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/api/datatransfermodel.h
+5
-0
5 additions, 0 deletions
src/api/datatransfermodel.h
src/datatransfermodel.cpp
+13
-1
13 additions, 1 deletion
src/datatransfermodel.cpp
with
18 additions
and
1 deletion
src/api/datatransfermodel.h
+
5
−
0
View file @
c5e5eb0f
...
...
@@ -74,6 +74,11 @@ public:
*/
QString
downloadDirectory
;
/**
* Creates APPDATA/received and return the path
*/
static
QString
createDefaultDirectory
();
Q_SIGNALS:
/**
* Connect this signal to know when a data transfer is incoming.
...
...
This diff is collapsed.
Click to expand it.
src/datatransfermodel.cpp
+
13
−
1
View file @
c5e5eb0f
...
...
@@ -31,8 +31,10 @@
#include
<type_traits>
// Qt
#include
<Q
Uuid
>
#include
<Q
Dir
>
#include
<QFileInfo>
#include
<QtCore/QStandardPaths>
#include
<QUuid>
namespace
lrc
{
namespace
api
{
...
...
@@ -188,6 +190,16 @@ DataTransferModel::getDringIdFromInteractionId(int interactionId)
return
pimpl_
->
lrc2dringIdMap
.
at
(
interactionId
);
}
QString
DataTransferModel
::
createDefaultDirectory
()
{
auto
defaultDirectory
=
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DownloadLocation
)
+
"/Jami"
;
QDir
dir
(
defaultDirectory
);
if
(
!
dir
.
exists
())
dir
.
mkpath
(
"."
);
return
defaultDirectory
;
}
}}
// namespace lrc::api
#include
"api/moc_datatransfermodel.cpp"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment