Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
1bd04d54
Commit
1bd04d54
authored
14 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
Qt4: add toURI() helper
parent
5b393923
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
modules/gui/qt4/Modules.am
+1
-0
1 addition, 0 deletions
modules/gui/qt4/Modules.am
modules/gui/qt4/util/qt_dirs.cpp
+40
-0
40 additions, 0 deletions
modules/gui/qt4/util/qt_dirs.cpp
modules/gui/qt4/util/qt_dirs.hpp
+2
-1
2 additions, 1 deletion
modules/gui/qt4/util/qt_dirs.hpp
with
43 additions
and
1 deletion
modules/gui/qt4/Modules.am
+
1
−
0
View file @
1bd04d54
...
...
@@ -275,6 +275,7 @@ SOURCES_qt4 = qt4.cpp \
util/input_slider.cpp \
util/customwidgets.cpp \
util/registry.cpp \
util/qt_dirs.cpp \
util/pictureflow.cpp
noinst_HEADERS = \
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt4/util/qt_dirs.cpp
0 → 100644
+
40
−
0
View file @
1bd04d54
/*****************************************************************************
* dirs.cpp : file path helpers
****************************************************************************
* Copyright (C) 2010 the VideoLAN team
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include
"qt4.hpp"
#include
"qt_dirs.hpp"
#include
<vlc_url.h>
QString
toURI
(
const
QString
&
s
)
{
QString
path
=
toNativeSeparators
(
s
);
char
*
psz
=
make_URI
(
qtu
(
path
),
NULL
);
if
(
psz
==
NULL
)
return
qfu
(
""
);
QString
uri
=
qfu
(
psz
);
free
(
psz
);
return
uri
;
}
This diff is collapsed.
Click to expand it.
modules/gui/qt4/util/qt_dirs.hpp
+
2
−
1
View file @
1bd04d54
...
...
@@ -47,5 +47,6 @@ static inline QString colon_unescape( QString s )
{
return
s
.
replace
(
"
\\
:"
,
":"
).
trimmed
();
}
#endif
QString
toURI
(
const
QString
&
s
);
#endif
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