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
a50b6437
Commit
a50b6437
authored
Jun 02, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4 - Dialogs: compile fix and small modifications.
parent
ca7f6e8f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
20 deletions
+20
-20
modules/gui/qt4/components/open.cpp
modules/gui/qt4/components/open.cpp
+1
-5
modules/gui/qt4/components/open.hpp
modules/gui/qt4/components/open.hpp
+8
-2
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+7
-7
modules/gui/qt4/dialogs/open.hpp
modules/gui/qt4/dialogs/open.hpp
+4
-6
No files found.
modules/gui/qt4/components/open.cpp
View file @
a50b6437
...
...
@@ -35,10 +35,6 @@
#include <QStackedLayout>
#include <QListView>
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
/**************************************************************************
* Open Files and subtitles *
**************************************************************************/
...
...
@@ -478,7 +474,6 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
#define CuMRL( widget, slot ) CONNECT( widget , slot , this, updateMRL() );
#define setMaxBound( spinbox ) spinbox->setRange ( 0, INT_MAX );
/*******
* V4L *
...
...
@@ -643,6 +638,7 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
bdaFreq
->
setAlignment
(
Qt
::
AlignRight
);
bdaFreq
->
setSuffix
(
" kHz"
);
bdaFreq
->
setSingleStep
(
1000
);
bdaFreq
->
setAccelerated
(
true
);
setMaxBound
(
bdaFreq
)
bdaPropLayout
->
addWidget
(
bdaFreq
,
0
,
1
);
...
...
modules/gui/qt4/components/open.hpp
View file @
a50b6437
...
...
@@ -26,8 +26,6 @@
#define _OPENPANELS_H_
#include <vlc/vlc.h>
#include <QWidget>
#include <QString>
#include <QFileDialog>
#include "ui/open_file.h"
...
...
@@ -35,13 +33,21 @@
#include "ui/open_net.h"
#include "ui/open_capture.h"
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#define setMaxBound( spinbox ) spinbox->setRange ( 0, INT_MAX );
#define V4L_DEVICE 0x0
#define PVR_DEVICE 0x1
#define DVB_DEVICE 0x2
#define BDA_DEVICE 0x4
#define DSHOW_DEVICE 0x8
class
QWidget
;
class
QLineEdit
;
class
QString
;
class
OpenPanel
:
public
QWidget
{
...
...
modules/gui/qt4/dialogs/open.cpp
View file @
a50b6437
...
...
@@ -21,18 +21,18 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "qt4.hpp"
#include "util/qvlcframe.hpp"
#include "input_manager.hpp"
#include "dialogs/open.hpp"
#include "components/open.hpp"
#include <QTabWidget>
#include <QGridLayout>
#include <QFileDialog>
#include <QRegExp>
#include <QMenu>
#include "dialogs/open.hpp"
#include "components/open.hpp"
#include "qt4.hpp"
#include "util/qvlcframe.hpp"
#include "input_manager.hpp"
OpenDialog
*
OpenDialog
::
instance
=
NULL
;
...
...
modules/gui/qt4/dialogs/open.hpp
View file @
a50b6437
...
...
@@ -26,17 +26,15 @@
#include <vlc/vlc.h>
#include "ui/open.h"
#include "util/qvlcframe.hpp"
#include "components/open.hpp"
#include "dialogs_provider.hpp"
#include <QTabWidget>
#include <QBoxLayout>
#include <QString>
#include "ui/open.h"
#include "components/open.hpp"
class
QString
;
class
QToolButton
;
class
QTabWidget
;
class
OpenDialog
:
public
QVLCDialog
{
...
...
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