Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f867f9cf
Commit
f867f9cf
authored
Sep 03, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: move validators
parent
c73cb845
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
72 additions
and
18 deletions
+72
-18
modules/gui/qt4/Makefile.am
modules/gui/qt4/Makefile.am
+2
-0
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+1
-10
modules/gui/qt4/components/open_panels.hpp
modules/gui/qt4/components/open_panels.hpp
+0
-8
modules/gui/qt4/util/validators.cpp
modules/gui/qt4/util/validators.cpp
+35
-0
modules/gui/qt4/util/validators.hpp
modules/gui/qt4/util/validators.hpp
+34
-0
No files found.
modules/gui/qt4/Makefile.am
View file @
f867f9cf
...
...
@@ -111,6 +111,7 @@ libqt4_plugin_la_SOURCES = \
util/qmenuview.cpp util/qmenuview.hpp
\
util/qt_dirs.cpp util/qt_dirs.hpp
\
util/pictureflow.cpp util/pictureflow.hpp
\
util/validators.cpp util/validators.hpp
\
util/buttons/BrowseButton.cpp util/buttons/BrowseButton.hpp
\
util/buttons/DeckButtonsLayout.cpp util/buttons/DeckButtonsLayout.hpp
\
util/buttons/RoundButton.cpp util/buttons/RoundButton.hpp
\
...
...
@@ -199,6 +200,7 @@ nodist_libqt4_plugin_la_SOURCES = \
util/qmenuview.moc.cpp
\
util/qvlcapp.moc.cpp
\
util/pictureflow.moc.cpp
\
util/validators.moc.cpp
\
util/buttons/RoundButton.moc.cpp
\
util/buttons/DeckButtonsLayout.moc.cpp
\
util/buttons/BrowseButton.moc.cpp
\
...
...
modules/gui/qt4/components/open_panels.cpp
View file @
f867f9cf
...
...
@@ -35,6 +35,7 @@
#include "dialogs/open.hpp"
#include "dialogs_provider.hpp"
/* Open Subtitle file */
#include "util/qt_dirs.hpp"
#include "util/validators.hpp"
#include <vlc_intf_strings.h>
#include <vlc_modules.h>
#include <vlc_plugin.h>
...
...
@@ -702,16 +703,6 @@ void NetOpenPanel::updateMRL()
emit
mrlUpdated
(
qsl
,
""
);
}
QValidator
::
State
UrlValidator
::
validate
(
QString
&
str
,
int
&
)
const
{
str
=
str
.
trimmed
();
if
(
str
.
contains
(
' '
)
)
return
QValidator
::
Invalid
;
if
(
!
str
.
contains
(
"://"
)
)
return
QValidator
::
Intermediate
;
return
QValidator
::
Acceptable
;
}
/**************************************************************************
* Open Capture device ( DVB, PVR, V4L, and similar ) *
**************************************************************************/
...
...
modules/gui/qt4/components/open_panels.hpp
View file @
f867f9cf
...
...
@@ -148,14 +148,6 @@ public slots:
virtual
void
updateMRL
();
};
class
UrlValidator
:
public
QValidator
{
Q_OBJECT
public:
UrlValidator
(
QObject
*
parent
)
:
QValidator
(
parent
)
{
}
virtual
QValidator
::
State
validate
(
QString
&
,
int
&
)
const
;
};
class
DiscOpenPanel
:
public
OpenPanel
{
Q_OBJECT
...
...
modules/gui/qt4/util/validators.cpp
0 → 100644
View file @
f867f9cf
/*****************************************************************************
* validators.cpp : Custom Input validators
****************************************************************************
* Copyright (C) 2006-2013 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 "validators.hpp"
QValidator
::
State
UrlValidator
::
validate
(
QString
&
str
,
int
&
)
const
{
str
=
str
.
trimmed
();
if
(
str
.
contains
(
' '
)
)
return
QValidator
::
Invalid
;
if
(
!
str
.
contains
(
"://"
)
)
return
QValidator
::
Intermediate
;
return
QValidator
::
Acceptable
;
}
modules/gui/qt4/util/validators.hpp
0 → 100644
View file @
f867f9cf
/*****************************************************************************
* validators.hpp : Custom Input validators
****************************************************************************
* Copyright (C) 2006-2013 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.
*****************************************************************************/
#ifndef VALIDATORS_HPP
#define VALIDATORS_HPP
#include <QValidator>
class
UrlValidator
:
public
QValidator
{
Q_OBJECT
public:
UrlValidator
(
QObject
*
parent
)
:
QValidator
(
parent
)
{
}
virtual
QValidator
::
State
validate
(
QString
&
,
int
&
)
const
;
};
#endif // VALIDATORS_HPP
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