Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0b5c3c57
Commit
0b5c3c57
authored
Dec 05, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Typos/Code conventions/spaces/Cleaning.
Patch by Rémi Duraffort.
parent
c3bcb323
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
270 additions
and
270 deletions
+270
-270
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+50
-50
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/dialogs_provider.hpp
+23
-23
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+2
-2
modules/gui/qt4/input_manager.hpp
modules/gui/qt4/input_manager.hpp
+3
-3
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+2
-2
modules/gui/qt4/playlist_model.cpp
modules/gui/qt4/playlist_model.cpp
+124
-124
modules/gui/qt4/playlist_model.hpp
modules/gui/qt4/playlist_model.hpp
+13
-13
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+52
-52
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+1
-1
No files found.
modules/gui/qt4/dialogs_provider.cpp
View file @
0b5c3c57
...
...
@@ -129,7 +129,7 @@ void DialogsProvider::customEvent( QEvent *event )
case
INTF_DIALOG_UPDATEVLC
:
case
INTF_DIALOG_EXIT
:
default:
msg_Warn
(
p_intf
,
"unimplemented dialog
\n
"
);
msg_Warn
(
p_intf
,
"unimplemented dialog
"
);
}
}
}
...
...
@@ -362,10 +362,10 @@ void DialogsProvider::openAPlaylist()
void
DialogsProvider
::
saveAPlaylist
()
{
QFileDialog
*
qfd
=
new
QFileDialog
(
NULL
,
qtr
(
"Choose a filename to save playlist"
),
qtr
(
"Choose a filename to save playlist"
),
qfu
(
p_intf
->
p_libvlc
->
psz_homedir
),
qtr
(
"XSPF playlist (*.xspf);; "
)
+
qtr
(
"M3U playlist (*.m3u);; Any (*.*) "
)
);
qtr
(
"XSPF playlist (*.xspf);; "
)
+
qtr
(
"M3U playlist (*.m3u);; Any (*.*) "
)
);
qfd
->
setFileMode
(
QFileDialog
::
AnyFile
);
qfd
->
setAcceptMode
(
QFileDialog
::
AcceptSave
);
qfd
->
setConfirmOverwrite
(
true
);
...
...
@@ -381,8 +381,8 @@ void DialogsProvider::saveAPlaylist()
QString
file
=
qfd
->
selectedFiles
().
first
();
QString
filter
=
qfd
->
selectedFilter
();
if
(
file
.
contains
(
".xsp"
)
||
(
filter
.
contains
(
".xspf"
)
&&
!
file
.
contains
(
".m3u"
)
)
)
if
(
file
.
contains
(
".xsp"
)
||
(
filter
.
contains
(
".xspf"
)
&&
!
file
.
contains
(
".m3u"
)
)
)
{
psz_module
=
psz_xspf
;
if
(
!
file
.
contains
(
".xsp"
)
)
...
...
@@ -395,7 +395,7 @@ void DialogsProvider::saveAPlaylist()
file
.
append
(
".m3u"
);
}
playlist_Export
(
THEPL
,
qtu
(
file
),
THEPL
->
p_local_category
,
playlist_Export
(
THEPL
,
qtu
(
file
),
THEPL
->
p_local_category
,
psz_module
);
}
}
...
...
@@ -414,10 +414,10 @@ void DialogsProvider::streamingDialog( QString mrl, bool b_transcode_only )
b_transcode_only
);
if
(
s
->
exec
()
==
QDialog
::
Accepted
)
{
msg_Err
(
p_intf
,
"mrl %s
\n
"
,
qta
(
s
->
getMrl
()
)
);
msg_Err
(
p_intf
,
"mrl %s"
,
qta
(
s
->
getMrl
()
)
);
/* Just do it */
int
i_len
=
strlen
(
qtu
(
s
->
getMrl
()
)
)
+
10
;
char
*
psz_option
=
(
char
*
)
malloc
(
i_len
);
char
*
psz_option
=
(
char
*
)
malloc
(
i_len
);
snprintf
(
psz_option
,
i_len
-
1
,
"%s"
,
qtu
(
s
->
getMrl
()
)
);
playlist_AddExt
(
THEPL
,
qtu
(
mrl
),
"Streaming"
,
...
...
modules/gui/qt4/dialogs_provider.hpp
View file @
0b5c3c57
...
...
@@ -36,32 +36,32 @@
#include <QApplication>
#define ADD_FILTER_MEDIA( string ) \
string += qtr(
"Media Files");
\
string += qtr(
"Media Files" );
\
string += " ( "; \
string += EXTENSIONS_MEDIA; \
string += ");;";
#define ADD_FILTER_VIDEO( string ) \
string += qtr(
"Video Files");
\
string += qtr(
"Video Files" );
\
string += " ( "; \
string += EXTENSIONS_VIDEO; \
string += ");;";
#define ADD_FILTER_AUDIO( string ) \
string += qtr(
"Audio Files");
\
string += qtr(
"Audio Files" );
\
string += " ( "; \
string += EXTENSIONS_AUDIO; \
string += ");;";
#define ADD_FILTER_PLAYLIST( string )\
string += qtr(
"Playlist Files");
\
#define ADD_FILTER_PLAYLIST( string )
\
string += qtr(
"Playlist Files" );
\
string += " ( "; \
string += EXTENSIONS_PLAYLIST; \
string += ");;";
#define ADD_FILTER_SUBTITLE( string )\
string += qtr(
"Subtitles Files");
\
#define ADD_FILTER_SUBTITLE( string )
\
string += qtr(
"Subtitles Files" );
\
string += " ( "; \
string += EXTENSIONS_SUBTITLE; \
string += ");;";
#define ADD_FILTER_ALL( string ) \
string += qtr(
"All Files");
\
string += qtr(
"All Files" );
\
string += " (*.*)";
#define EXT_FILTER_MEDIA 0x01
...
...
@@ -132,7 +132,7 @@ private:
public
slots
:
void
doInteraction
(
intf_dialog_args_t
*
);
void
menuAction
(
QObject
*
);
void
menuUpdateAction
(
QObject
*
);
void
menuUpdateAction
(
QObject
*
);
void
SDMenuAction
(
QString
);
void
playlistDialog
();
...
...
modules/gui/qt4/input_manager.cpp
View file @
0b5c3c57
...
...
@@ -38,7 +38,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
QObject
(
parent
),
p_intf
(
_p_intf
)
{
i_old_playing_status
=
END_S
;
old_name
=
""
;
old_name
=
""
;
p_input
=
NULL
;
i_rate
=
0
;
ON_TIMEOUT
(
update
()
);
...
...
modules/gui/qt4/input_manager.hpp
View file @
0b5c3c57
...
...
@@ -33,7 +33,7 @@ class InputManager : public QObject
{
Q_OBJECT
;
public:
InputManager
(
QObject
*
,
intf_thread_t
*
);
InputManager
(
QObject
*
,
intf_thread_t
*
);
virtual
~
InputManager
();
void
delInput
();
...
...
@@ -89,7 +89,7 @@ public:
InputManager
*
getIM
()
{
return
im
;
};
private:
MainInputManager
(
intf_thread_t
*
);
MainInputManager
(
intf_thread_t
*
);
InputManager
*
im
;
intf_thread_t
*
p_intf
;
...
...
@@ -103,7 +103,7 @@ public slots:
private
slots
:
void
updateInput
();
signals:
void
inputChanged
(
input_thread_t
*
);
void
inputChanged
(
input_thread_t
*
);
};
#endif
modules/gui/qt4/main_interface.cpp
View file @
0b5c3c57
...
...
@@ -143,7 +143,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
handleMainUi
(
settings
);
/* Create a Dock to get the playlist */
dockPL
=
new
QDockWidget
(
qtr
(
"Playlist"
),
this
);
dockPL
=
new
QDockWidget
(
qtr
(
"Playlist"
),
this
);
dockPL
->
setSizePolicy
(
QSizePolicy
::
Preferred
,
QSizePolicy
::
MinimumExpanding
);
dockPL
->
setFeatures
(
QDockWidget
::
AllDockWidgetFeatures
);
...
...
@@ -789,7 +789,7 @@ void MainInterface::setStatus( int status )
void
MainInterface
::
setRate
(
int
rate
)
{
QString
str
;
str
.
setNum
(
(
1000
/
(
double
)
rate
),
'f'
,
2
);
str
.
setNum
(
(
1000
/
(
double
)
rate
),
'f'
,
2
);
str
.
append
(
"x"
);
speedLabel
->
setText
(
str
);
speedControl
->
updateControls
(
rate
);
...
...
modules/gui/qt4/playlist_model.cpp
View file @
0b5c3c57
...
...
@@ -58,7 +58,7 @@ static int ItemDeleted( vlc_object_t *p_this, const char *psz_variable,
* Duration
*/
void
PLItem
::
init
(
int
_i_id
,
int
_i_input_id
,
PLItem
*
parent
,
PLModel
*
m
)
void
PLItem
::
init
(
int
_i_id
,
int
_i_input_id
,
PLItem
*
parent
,
PLModel
*
m
)
{
parentItem
=
parent
;
i_id
=
_i_id
;
i_input_id
=
_i_input_id
;
...
...
@@ -123,7 +123,7 @@ void PLItem::updateview( void )
}
PLItem
::
PLItem
(
int
_i_id
,
int
_i_input_id
,
PLItem
*
parent
,
PLModel
*
m
)
PLItem
::
PLItem
(
int
_i_id
,
int
_i_input_id
,
PLItem
*
parent
,
PLModel
*
m
)
{
init
(
_i_id
,
_i_input_id
,
parent
,
m
);
}
...
...
@@ -135,7 +135,7 @@ PLItem::PLItem( playlist_item_t * p_item, PLItem *parent, PLModel *m )
PLItem
::~
PLItem
()
{
qDeleteAll
(
children
);
qDeleteAll
(
children
);
children
.
clear
();
}
...
...
@@ -161,7 +161,7 @@ void PLItem::remove( PLItem *removed )
int
PLItem
::
row
()
const
{
if
(
parentItem
)
return
parentItem
->
children
.
indexOf
(
const_cast
<
PLItem
*>
(
this
)
);
return
parentItem
->
children
.
indexOf
(
const_cast
<
PLItem
*>
(
this
)
);
return
0
;
}
...
...
@@ -250,8 +250,8 @@ void PLItem::update( playlist_item_t *p_item, bool iscurrent )
*************************************************************************/
PLModel
::
PLModel
(
playlist_t
*
_p_playlist
,
intf_thread_t
*
_p_intf
,
playlist_item_t
*
p_root
,
int
_i_depth
,
QObject
*
parent
)
:
QAbstractItemModel
(
parent
)
playlist_item_t
*
p_root
,
int
_i_depth
,
QObject
*
parent
)
:
QAbstractItemModel
(
parent
)
{
i_depth
=
_i_depth
;
assert
(
i_depth
==
1
||
i_depth
==
-
1
);
...
...
@@ -290,9 +290,9 @@ Qt::DropActions PLModel::supportedDropActions() const
return
Qt
::
CopyAction
;
}
Qt
::
ItemFlags
PLModel
::
flags
(
const
QModelIndex
&
index
)
const
Qt
::
ItemFlags
PLModel
::
flags
(
const
QModelIndex
&
index
)
const
{
Qt
::
ItemFlags
defaultFlags
=
QAbstractItemModel
::
flags
(
index
);
Qt
::
ItemFlags
defaultFlags
=
QAbstractItemModel
::
flags
(
index
);
if
(
index
.
isValid
()
)
return
Qt
::
ItemIsDragEnabled
|
Qt
::
ItemIsDropEnabled
|
defaultFlags
;
else
...
...
@@ -306,26 +306,26 @@ QStringList PLModel::mimeTypes() const
return
types
;
}
QMimeData
*
PLModel
::
mimeData
(
const
QModelIndexList
&
indexes
)
const
QMimeData
*
PLModel
::
mimeData
(
const
QModelIndexList
&
indexes
)
const
{
QMimeData
*
mimeData
=
new
QMimeData
();
QByteArray
encodedData
;
QDataStream
stream
(
&
encodedData
,
QIODevice
::
WriteOnly
);
QDataStream
stream
(
&
encodedData
,
QIODevice
::
WriteOnly
);
foreach
(
QModelIndex
index
,
indexes
)
{
if
(
index
.
isValid
()
&&
index
.
column
()
==
0
)
stream
<<
itemId
(
index
);
foreach
(
QModelIndex
index
,
indexes
)
{
if
(
index
.
isValid
()
&&
index
.
column
()
==
0
)
stream
<<
itemId
(
index
);
}
mimeData
->
setData
(
"vlc/playlist-item-id"
,
encodedData
);
mimeData
->
setData
(
"vlc/playlist-item-id"
,
encodedData
);
return
mimeData
;
}
bool
PLModel
::
dropMimeData
(
const
QMimeData
*
data
,
Qt
::
DropAction
action
,
int
row
,
int
column
,
const
QModelIndex
&
target
)
bool
PLModel
::
dropMimeData
(
const
QMimeData
*
data
,
Qt
::
DropAction
action
,
int
row
,
int
column
,
const
QModelIndex
&
target
)
{
if
(
data
->
hasFormat
(
"vlc/playlist-item-id"
)
)
if
(
data
->
hasFormat
(
"vlc/playlist-item-id"
)
)
{
if
(
action
==
Qt
::
IgnoreAction
)
if
(
action
==
Qt
::
IgnoreAction
)
return
true
;
PLItem
*
targetItem
;
...
...
@@ -334,11 +334,11 @@ bool PLModel::dropMimeData(const QMimeData *data, Qt::DropAction action,
else
targetItem
=
rootItem
;
QByteArray
encodedData
=
data
->
data
(
"vlc/playlist-item-id"
);
QDataStream
stream
(
&
encodedData
,
QIODevice
::
ReadOnly
);
QByteArray
encodedData
=
data
->
data
(
"vlc/playlist-item-id"
);
QDataStream
stream
(
&
encodedData
,
QIODevice
::
ReadOnly
);
PLItem
*
newParentItem
;
while
(
!
stream
.
atEnd
()
)
while
(
!
stream
.
atEnd
()
)
{
int
i
;
int
srcId
;
...
...
@@ -456,9 +456,9 @@ void PLModel::activateItem( playlist_item_t *p_item )
}
/****************** Base model mandatory implementations *****************/
QVariant
PLModel
::
data
(
const
QModelIndex
&
index
,
int
role
)
const
QVariant
PLModel
::
data
(
const
QModelIndex
&
index
,
int
role
)
const
{
if
(
!
index
.
isValid
()
)
return
QVariant
();
if
(
!
index
.
isValid
()
)
return
QVariant
();
PLItem
*
item
=
static_cast
<
PLItem
*>
(
index
.
internalPointer
());
if
(
role
==
Qt
::
DisplayRole
)
{
...
...
@@ -492,25 +492,25 @@ int PLModel::itemId( const QModelIndex &index ) const
}
QVariant
PLModel
::
headerData
(
int
section
,
Qt
::
Orientation
orientation
,
int
role
)
const
int
role
)
const
{
if
(
orientation
==
Qt
::
Horizontal
&&
role
==
Qt
::
DisplayRole
)
return
QVariant
(
rootItem
->
columnString
(
section
)
);
return
QVariant
();
}
QModelIndex
PLModel
::
index
(
int
row
,
int
column
,
const
QModelIndex
&
parent
)
QModelIndex
PLModel
::
index
(
int
row
,
int
column
,
const
QModelIndex
&
parent
)
const
{
PLItem
*
parentItem
;
if
(
!
parent
.
isValid
()
)
if
(
!
parent
.
isValid
()
)
parentItem
=
rootItem
;
else
parentItem
=
static_cast
<
PLItem
*>
(
parent
.
internalPointer
());
PLItem
*
childItem
=
parentItem
->
child
(
row
);
if
(
childItem
)
return
createIndex
(
row
,
column
,
childItem
);
PLItem
*
childItem
=
parentItem
->
child
(
row
);
if
(
childItem
)
return
createIndex
(
row
,
column
,
childItem
);
else
return
QModelIndex
();
}
...
...
@@ -526,12 +526,12 @@ QModelIndex PLModel::index( PLItem *item, int column ) const
return
QModelIndex
();
}
QModelIndex
PLModel
::
parent
(
const
QModelIndex
&
index
)
const
QModelIndex
PLModel
::
parent
(
const
QModelIndex
&
index
)
const
{
if
(
!
index
.
isValid
()
)
return
QModelIndex
();
PLItem
*
childItem
=
static_cast
<
PLItem
*>
(
index
.
internalPointer
());
if
(
!
childItem
)
{
msg_Err
(
p_playlist
,
"NULL CHILD
\n
"
);
return
QModelIndex
();
}
if
(
!
childItem
)
{
msg_Err
(
p_playlist
,
"NULL CHILD"
);
return
QModelIndex
();
}
PLItem
*
parentItem
=
childItem
->
parent
();
if
(
!
parentItem
||
parentItem
==
rootItem
)
return
QModelIndex
();
if
(
!
parentItem
->
parentItem
)
...
...
@@ -549,16 +549,16 @@ int PLModel::columnCount( const QModelIndex &i) const
return
rootItem
->
strings
.
count
();
}
int
PLModel
::
childrenCount
(
const
QModelIndex
&
parent
)
const
int
PLModel
::
childrenCount
(
const
QModelIndex
&
parent
)
const
{
return
rowCount
(
parent
);
}
int
PLModel
::
rowCount
(
const
QModelIndex
&
parent
)
const
int
PLModel
::
rowCount
(
const
QModelIndex
&
parent
)
const
{
PLItem
*
parentItem
;
if
(
!
parent
.
isValid
()
)
if
(
!
parent
.
isValid
()
)
parentItem
=
rootItem
;
else
parentItem
=
static_cast
<
PLItem
*>
(
parent
.
internalPointer
());
...
...
@@ -860,7 +860,7 @@ void PLModel::doDelete( QModelIndexList selected )
}
}
void
PLModel
::
recurseDelete
(
QList
<
PLItem
*>
children
,
QModelIndexList
*
fullList
)
void
PLModel
::
recurseDelete
(
QList
<
PLItem
*>
children
,
QModelIndexList
*
fullList
)
{
for
(
int
i
=
children
.
size
()
-
1
;
i
>=
0
;
i
--
)
{
...
...
modules/gui/qt4/playlist_model.hpp
View file @
0b5c3c57
...
...
@@ -40,8 +40,8 @@ class QSignalMapper;
class
PLItem
{
public:
PLItem
(
int
,
int
,
PLItem
*
parent
,
PLModel
*
);
PLItem
(
playlist_item_t
*
,
PLItem
*
parent
,
PLModel
*
);
PLItem
(
int
,
int
,
PLItem
*
parent
,
PLModel
*
);
PLItem
(
playlist_item_t
*
,
PLItem
*
parent
,
PLModel
*
);
~
PLItem
();
int
row
()
const
;
...
...
@@ -57,7 +57,7 @@ public:
QString
columnString
(
int
col
)
{
return
strings
.
value
(
col
);
};
PLItem
*
parent
()
{
return
parentItem
;
};
void
update
(
playlist_item_t
*
,
bool
);
void
update
(
playlist_item_t
*
,
bool
);
protected:
QList
<
PLItem
*>
children
;
QList
<
QString
>
strings
;
...
...
@@ -102,19 +102,19 @@ class PLModel : public QAbstractItemModel
public:
PLModel
(
playlist_t
*
,
intf_thread_t
*
,
playlist_item_t
*
,
int
,
QObject
*
parent
=
0
);
playlist_item_t
*
,
int
,
QObject
*
parent
=
0
);
~
PLModel
();
/* All types of lookups / QModel stuff */
QVariant
data
(
const
QModelIndex
&
index
,
int
role
)
const
;
Qt
::
ItemFlags
flags
(
const
QModelIndex
&
index
)
const
;
QVariant
data
(
const
QModelIndex
&
index
,
int
role
)
const
;
Qt
::
ItemFlags
flags
(
const
QModelIndex
&
index
)
const
;
QVariant
headerData
(
int
section
,
Qt
::
Orientation
orientation
,
int
role
=
Qt
::
DisplayRole
)
const
;
int
role
=
Qt
::
DisplayRole
)
const
;
QModelIndex
index
(
int
r
,
int
c
,
const
QModelIndex
&
parent
)
const
;
QModelIndex
index
(
PLItem
*
,
int
c
)
const
;
int
itemId
(
const
QModelIndex
&
index
)
const
;
bool
isCurrent
(
const
QModelIndex
&
index
);
QModelIndex
parent
(
const
QModelIndex
&
index
)
const
;
QModelIndex
parent
(
const
QModelIndex
&
index
)
const
;
int
childrenCount
(
const
QModelIndex
&
parent
=
QModelIndex
()
)
const
;
int
rowCount
(
const
QModelIndex
&
parent
=
QModelIndex
()
)
const
;
int
columnCount
(
const
QModelIndex
&
parent
=
QModelIndex
()
)
const
;
...
...
@@ -122,7 +122,7 @@ public:
bool
b_need_update
;
int
i_items_to_append
;
void
rebuild
();
void
rebuild
(
playlist_item_t
*
);
void
rebuild
();
void
rebuild
(
playlist_item_t
*
);
bool
hasRandom
();
bool
hasLoop
();
bool
hasRepeat
();
/* Actions made by the views */
...
...
@@ -134,9 +134,9 @@ public:
/* DnD handling */
Qt
::
DropActions
supportedDropActions
()
const
;
QMimeData
*
mimeData
(
const
QModelIndexList
&
indexes
)
const
;
bool
dropMimeData
(
const
QMimeData
*
data
,
Qt
::
DropAction
action
,
int
row
,
int
column
,
const
QModelIndex
&
target
);
QMimeData
*
mimeData
(
const
QModelIndexList
&
indexes
)
const
;
bool
dropMimeData
(
const
QMimeData
*
data
,
Qt
::
DropAction
action
,
int
row
,
int
column
,
const
QModelIndex
&
target
);
QStringList
mimeTypes
()
const
;
void
sendArt
(
QString
url
);
...
...
@@ -167,7 +167,7 @@ private:
void
UpdateNodeChildren
(
playlist_item_t
*
,
PLItem
*
);
/* Actions */
void
recurseDelete
(
QList
<
PLItem
*>
children
,
QModelIndexList
*
fullList
);
void
recurseDelete
(
QList
<
PLItem
*>
children
,
QModelIndexList
*
fullList
);
void
doDeleteItem
(
PLItem
*
item
,
QModelIndexList
*
fullList
);
/* Popup */
...
...
modules/gui/qt4/qt4.cpp
View file @
0b5c3c57
...
...
@@ -47,67 +47,67 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
/*****************************************************************************
* Module descriptor
*****************************************************************************/
#define ALWAYS_VIDEO_TEXT N_(
"Always show video area"
)
#define ALWAYS_VIDEO_LONGTEXT N_("Start VLC with a cone image, and display it" \
#define ALWAYS_VIDEO_TEXT N_(
"Always show video area"
)
#define ALWAYS_VIDEO_LONGTEXT N_(
"Start VLC with a cone image, and display it" \
" when there is no video track." )
#define ADVANCED_PREFS_TEXT N_(
"Show advanced prefs over simple ones"
)
#define ADVANCED_PREFS_LONGTEXT N_("Show advanced preferences and not simple " \
#define ADVANCED_PREFS_TEXT N_(
"Show advanced prefs over simple ones"
)
#define ADVANCED_PREFS_LONGTEXT N_(
"Show advanced preferences and not simple " \
"preferences when opening the preferences " \
"dialog."
)
"dialog."
)
#define SYSTRAY_TEXT N_(
"Systray icon"
)
#define SYSTRAY_LONGTEXT N_("Show an icon in the systray " \
#define SYSTRAY_TEXT N_(
"Systray icon"
)
#define SYSTRAY_LONGTEXT N_(
"Show an icon in the systray " \
"allowing you to control VLC media player " \
"for basic actions"
)
"for basic actions"
)
#define MINIMIZED_TEXT N_(
"Start VLC with only a systray icon"
)
#define MINIMIZED_LONGTEXT N_("When you launch VLC with that option, " \
#define MINIMIZED_TEXT N_(
"Start VLC with only a systray icon"
)
#define MINIMIZED_LONGTEXT N_(
"When you launch VLC with that option, " \
"VLC will start with just an icon in" \
"your taskbar"
)
"your taskbar"
)
#define TITLE_TEXT N_(
"Show playing item name in window title"
)
#define TITLE_LONGTEXT N_("Show the name of the song or video in the " \
"controler window title"
)
#define TITLE_TEXT N_(
"Show playing item name in window title"
)
#define TITLE_LONGTEXT N_(
"Show the name of the song or video in the " \
"controler window title"
)
#define FILEDIALOG_PATH_TEXT N_(
"Path to use in openfile dialog"
)
#define FILEDIALOG_PATH_TEXT N_(
"Path to use in openfile dialog"
)
#define NOTIFICATION_TEXT N_(
"Show notification popup on track change"
)
#define NOTIFICATION_TEXT N_(
"Show notification popup on track change"
)
#define NOTIFICATION_LONGTEXT N_( \
"Show a notification popup with the artist and track name when " \
"the current playlist item changes, when VLC is minimized or hidden." )
#define ADVANCED_OPTIONS_TEXT N_(
"Advanced options"
)
#define ADVANCED_OPTIONS_LONGTEXT N_("Show all the advanced options " \
"in the dialogs"
)
#define ADVANCED_OPTIONS_TEXT N_(
"Advanced options"
)
#define ADVANCED_OPTIONS_LONGTEXT N_(
"Show all the advanced options " \
"in the dialogs"
)
#define OPACITY_TEXT N_(
"Windows opacity between 0.1 and 1."
)
#define OPACITY_LONGTEXT N_("Sets the windows opacity between 0.1 and 1 " \
#define OPACITY_TEXT N_(
"Windows opacity between 0.1 and 1."
)
#define OPACITY_LONGTEXT N_(
"Sets the windows opacity between 0.1 and 1 " \
"for main interface, playlist and extended panel." \
" This option only works with Windows and " \
"X11 with composite extensions."
)
"X11 with composite extensions."
)
#define SHOWFLAGS_TEXT N_(
"Define what columns to show in playlist window"
)
#define SHOWFLAGS_LONGTEXT N_("Enter the sum of the options that you want: \n" \
#define SHOWFLAGS_TEXT N_(
"Define what columns to show in playlist window"
)
#define SHOWFLAGS_LONGTEXT N_(
"Enter the sum of the options that you want: \n" \
"Title: 1; Duration: 2; Artist: 4; Genre: 8; " \
"Copyright: 16; Collection/album: 32; Rating: 256." )
#define ERROR_TEXT N_("Show unimportant error and warnings dialogs" )
#define MINIMAL_TEXT N_("Start in minimal view (menus hidden)." )
#define ERROR_TEXT N_(
"Show unimportant error and warnings dialogs" )
#define MINIMAL_TEXT N_(
"Start in minimal view (menus hidden)." )
#define UPDATER_TEXT N_(
"Activate the new updates notification"
)
#define UPDATER_LONGTEXT N_("Activate the automatic notification of new " \
#define UPDATER_TEXT N_(
"Activate the new updates notification"
)
#define UPDATER_LONGTEXT N_(
"Activate the automatic notification of new " \
"versions of the software. It runs once a week." )
#define COMPLETEVOL_TEXT N_("Allow the volume to be set to 400%" )
#define COMPLETEVOL_LONGTEXT N_("Allow the volume to have range from 0% to " \
#define COMPLETEVOL_TEXT N_(
"Allow the volume to be set to 400%" )
#define COMPLETEVOL_LONGTEXT N_(
"Allow the volume to have range from 0% to " \
"400%, instead of 0% to 200%. This option " \
"can distort the audio, since it uses " \
"software amplification."
)
"software amplification."
)
#define BLING_TEXT N_(
"Use non native buttons and volume slider"
)
#define BLING_TEXT N_(
"Use non native buttons and volume slider"
)
#define PRIVACY_TEXT N_(
"Ask for network policy at start"
)
#define PRIVACY_TEXT N_(
"Ask for network policy at start"
)
vlc_module_begin
();
set_shortname
(
(
char
*
)
"Qt"
);
...
...
@@ -144,9 +144,9 @@ vlc_module_begin();
BLING_TEXT
,
VLC_FALSE
);
add_bool
(
"qt-volume-complete"
,
VLC_FALSE
,
NULL
,
COMPLETEVOL_TEXT
,
COMPLETEVOL_LONGTEXT
,
VLC_TRUE
);
COMPLETEVOL_LONGTEXT
,
VLC_TRUE
);
add_string
(
"qt-filedialog-path"
,
NULL
,
NULL
,
FILEDIALOG_PATH_TEXT
,
FILEDIALOG_PATH_TEXT
,
VLC_TRUE
);
FILEDIALOG_PATH_TEXT
,
VLC_TRUE
);
change_autosave
();
change_internal
();
...
...
@@ -183,10 +183,10 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
#endif
p_intf
->
p_sys
=
(
intf_sys_t
*
)
malloc
(
sizeof
(
intf_sys_t
)
);
p_intf
->
p_sys
=
(
intf_sys_t
*
)
malloc
(
sizeof
(
intf_sys_t
)
);
if
(
!
p_intf
->
p_sys
)
{
msg_Err
(
p_intf
,
"Out of memory"
);
msg_Err
(
p_intf
,
"Out of memory"
);
return
VLC_ENOMEM
;
}
memset
(
p_intf
->
p_sys
,
0
,
sizeof
(
intf_sys_t
)
);
...
...
@@ -250,7 +250,7 @@ static void Init( intf_thread_t *p_intf )
* disables icon theme use because that makes Cleanlooks style bug
* because it asks gconf for some settings that timeout because of threads
* see commits 21610 21622 21654 for reference */
QApplication
::
setDesktopSettingsAware
(
false
);
QApplication
::
setDesktopSettingsAware
(
false
);
#endif
/* Start the QApplication here */
...
...
@@ -272,12 +272,12 @@ static void Init( intf_thread_t *p_intf )
/*if( p_intf->pf_show_dialog )*/
vlc_thread_ready
(
p_intf
);
// Translation - get locale
QLocale
ql
=
QLocale
::
system
();
QLocale
ql
=
QLocale
::
system
();
// Translations for qt's own dialogs
QTranslator
qtTranslator
(
0
);
// Let's find the right path for the translation file
#if !defined( WIN32 )
QString
path
=
QString
(
QT4LOCALEDIR
);
QString
path
=
QString
(
QT4LOCALEDIR
);
#else
QString
path
=
QString
(
QString
(
system_VLCPath
())
+
DIR_SEP
+
"locale"
+
DIR_SEP
);
...
...
@@ -285,8 +285,8 @@ static void Init( intf_thread_t *p_intf )
// files depending on locale
bool
b_loaded
=
qtTranslator
.
load
(
path
+
"qt_"
+
ql
.
name
());
if
(
!
b_loaded
)
msg_Dbg
(
p_intf
,
"Error while initializing qt-specific localization"
);
app
->
installTranslator
(
&
qtTranslator
);
msg_Dbg
(
p_intf
,
"Error while initializing qt-specific localization"
);
app
->
installTranslator
(
&
qtTranslator
);
/* Start playing if needed */
if
(
!
p_intf
->
pf_show_dialog
&&
p_intf
->
b_play
)
...
...
modules/gui/qt4/qt4.hpp
View file @
0b5c3c57
...
...
@@ -35,7 +35,7 @@
/* Add define for duration, VLC_META_ENGINE doesn't include it */
#define VLC_META_ENGINE_DURATION 0x00000002
#define VLC_META_DURATION N_(
"Duration"
)
#define VLC_META_DURATION N_(
"Duration"
)
class
QApplication
;
class
QMenu
;
...
...
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