Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
1bd04d54
Commit
1bd04d54
authored
Nov 10, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: add toURI() helper
parent
5b393923
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
1 deletion
+43
-1
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+1
-0
modules/gui/qt4/util/qt_dirs.cpp
modules/gui/qt4/util/qt_dirs.cpp
+40
-0
modules/gui/qt4/util/qt_dirs.hpp
modules/gui/qt4/util/qt_dirs.hpp
+2
-1
No files found.
modules/gui/qt4/Modules.am
View file @
1bd04d54
...
@@ -275,6 +275,7 @@ SOURCES_qt4 = qt4.cpp \
...
@@ -275,6 +275,7 @@ SOURCES_qt4 = qt4.cpp \
util/input_slider.cpp \
util/input_slider.cpp \
util/customwidgets.cpp \
util/customwidgets.cpp \
util/registry.cpp \
util/registry.cpp \
util/qt_dirs.cpp \
util/pictureflow.cpp
util/pictureflow.cpp
noinst_HEADERS = \
noinst_HEADERS = \
...
...
modules/gui/qt4/util/qt_dirs.cpp
0 → 100644
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
;
}
modules/gui/qt4/util/qt_dirs.hpp
View file @
1bd04d54
...
@@ -47,5 +47,6 @@ static inline QString colon_unescape( QString s )
...
@@ -47,5 +47,6 @@ static inline QString colon_unescape( QString s )
{
{
return
s
.
replace
(
"
\\
:"
,
":"
).
trimmed
();
return
s
.
replace
(
"
\\
:"
,
":"
).
trimmed
();
}
}
#endif
QString
toURI
(
const
QString
&
s
);
#endif
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