Commit 0b5c3c57 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Typos/Code conventions/spaces/Cleaning.

Patch by Rémi Duraffort.
parent c3bcb323
......@@ -88,48 +88,48 @@ void DialogsProvider::customEvent( QEvent *event )
DialogEvent *de = static_cast<DialogEvent*>(event);
switch( de->i_dialog )
{
case INTF_DIALOG_FILE_SIMPLE:
case INTF_DIALOG_FILE:
openDialog(); break;
case INTF_DIALOG_DISC:
openDiscDialog(); break;
case INTF_DIALOG_NET:
openNetDialog(); break;
case INTF_DIALOG_SAT:
case INTF_DIALOG_CAPTURE:
openCaptureDialog(); break;
case INTF_DIALOG_DIRECTORY:
PLAppendDir(); break;
case INTF_DIALOG_PLAYLIST:
playlistDialog(); break;
case INTF_DIALOG_MESSAGES:
messagesDialog(); break;
case INTF_DIALOG_FILEINFO:
mediaInfoDialog(); break;
case INTF_DIALOG_PREFS:
prefsDialog(); break;
case INTF_DIALOG_BOOKMARKS:
bookmarksDialog(); break;
case INTF_DIALOG_EXTENDED:
extendedDialog(); break;
case INTF_DIALOG_VLM:
vlmDialog(); break;
case INTF_DIALOG_INTERACTION:
doInteraction( de->p_arg ); break;
case INTF_DIALOG_POPUPMENU:
QVLCMenu::PopupMenu( p_intf, (de->i_arg != 0) ); break;
case INTF_DIALOG_AUDIOPOPUPMENU:
QVLCMenu::AudioPopupMenu( p_intf ); break;
case INTF_DIALOG_VIDEOPOPUPMENU:
QVLCMenu::VideoPopupMenu( p_intf ); break;
case INTF_DIALOG_MISCPOPUPMENU:
QVLCMenu::MiscPopupMenu( p_intf ); break;
case INTF_DIALOG_WIZARD:
case INTF_DIALOG_STREAMWIZARD:
case INTF_DIALOG_UPDATEVLC:
case INTF_DIALOG_EXIT:
default:
msg_Warn( p_intf, "unimplemented dialog\n" );
case INTF_DIALOG_FILE_SIMPLE:
case INTF_DIALOG_FILE:
openDialog(); break;
case INTF_DIALOG_DISC:
openDiscDialog(); break;
case INTF_DIALOG_NET:
openNetDialog(); break;
case INTF_DIALOG_SAT:
case INTF_DIALOG_CAPTURE:
openCaptureDialog(); break;
case INTF_DIALOG_DIRECTORY:
PLAppendDir(); break;
case INTF_DIALOG_PLAYLIST:
playlistDialog(); break;
case INTF_DIALOG_MESSAGES:
messagesDialog(); break;
case INTF_DIALOG_FILEINFO:
mediaInfoDialog(); break;
case INTF_DIALOG_PREFS:
prefsDialog(); break;
case INTF_DIALOG_BOOKMARKS:
bookmarksDialog(); break;
case INTF_DIALOG_EXTENDED:
extendedDialog(); break;
case INTF_DIALOG_VLM:
vlmDialog(); break;
case INTF_DIALOG_INTERACTION:
doInteraction( de->p_arg ); break;
case INTF_DIALOG_POPUPMENU:
QVLCMenu::PopupMenu( p_intf, (de->i_arg != 0) ); break;
case INTF_DIALOG_AUDIOPOPUPMENU:
QVLCMenu::AudioPopupMenu( p_intf ); break;
case INTF_DIALOG_VIDEOPOPUPMENU:
QVLCMenu::VideoPopupMenu( p_intf ); break;
case INTF_DIALOG_MISCPOPUPMENU:
QVLCMenu::MiscPopupMenu( p_intf ); break;
case INTF_DIALOG_WIZARD:
case INTF_DIALOG_STREAMWIZARD:
case INTF_DIALOG_UPDATEVLC:
case INTF_DIALOG_EXIT:
default:
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",
......
......@@ -35,33 +35,33 @@
#include <QTimer>
#include <QApplication>
#define ADD_FILTER_MEDIA( string ) \
string += qtr("Media Files"); \
string += " ( "; \
string += EXTENSIONS_MEDIA; \
#define ADD_FILTER_MEDIA( string ) \
string += qtr( "Media Files" ); \
string += " ( "; \
string += EXTENSIONS_MEDIA; \
string += ");;";
#define ADD_FILTER_VIDEO( string ) \
string += qtr("Video Files"); \
string += " ( "; \
string += EXTENSIONS_VIDEO; \
#define ADD_FILTER_VIDEO( string ) \
string += qtr( "Video Files" ); \
string += " ( "; \
string += EXTENSIONS_VIDEO; \
string += ");;";
#define ADD_FILTER_AUDIO( string ) \
string += qtr("Audio Files"); \
string += " ( "; \
string += EXTENSIONS_AUDIO; \
#define ADD_FILTER_AUDIO( string ) \
string += qtr( "Audio Files" ); \
string += " ( "; \
string += EXTENSIONS_AUDIO; \
string += ");;";
#define ADD_FILTER_PLAYLIST( string )\
string += qtr("Playlist Files"); \
string += " ( "; \
string += EXTENSIONS_PLAYLIST; \
#define ADD_FILTER_PLAYLIST( string ) \
string += qtr( "Playlist Files" ); \
string += " ( "; \
string += EXTENSIONS_PLAYLIST; \
string += ");;";
#define ADD_FILTER_SUBTITLE( string )\
string += qtr("Subtitles Files"); \
string += " ( "; \
string += EXTENSIONS_SUBTITLE; \
#define ADD_FILTER_SUBTITLE( string ) \
string += qtr( "Subtitles Files" );\
string += " ( "; \
string += EXTENSIONS_SUBTITLE; \
string += ");;";
#define ADD_FILTER_ALL( string ) \
string += qtr("All Files"); \
#define ADD_FILTER_ALL( string ) \
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();
......
......@@ -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() );
......@@ -176,7 +176,7 @@ void InputManager::update()
if( i_old_playing_status != val.i_int )
{
i_old_playing_status = val.i_int;
emit statusChanged( val.i_int == PAUSE_S ? PAUSE_S : PLAYING_S );
emit statusChanged( val.i_int == PAUSE_S ? PAUSE_S : PLAYING_S );
}
}
......
......@@ -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
......@@ -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 );
......
This diff is collapsed.
......@@ -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 */
......
......@@ -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" \
" when there is no video track." )
#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 " \
"preferences when opening the preferences " \
"dialog.")
#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." )
#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")
#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" )
#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")
#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" )
#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 " \
"for main interface, playlist and extended panel." \
" This option only works with Windows and " \
"X11 with composite extensions.")
#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." )
#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 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 " \
"400%, instead of 0% to 200%. This option " \
"can distort the audio, since it uses " \
"software amplification.")
#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." )
#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 )
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment