X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fcomponents%2Fcomplete_preferences.cpp;h=d6cd6160c7e0c5678fc38933337286147623d41f;hb=b5277240aa78e2515cc4f32ca4b582160b2ee8d8;hp=6b44f8bbf35ada9866b32b56514c79c53afbb042;hpb=0e0128d79a3fd3bdd99be601529e56217ff87fc5;p=vlc diff --git a/modules/gui/qt4/components/complete_preferences.cpp b/modules/gui/qt4/components/complete_preferences.cpp index 6b44f8bbf3..d6cd6160c7 100644 --- a/modules/gui/qt4/components/complete_preferences.cpp +++ b/modules/gui/qt4/components/complete_preferences.cpp @@ -20,6 +20,9 @@ * 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 #include @@ -39,20 +42,11 @@ #include "components/complete_preferences.hpp" #include "components/preferences_widgets.hpp" -#include "qt4.hpp" #include #include #include -#include "pixmaps/audio.xpm" -#include "pixmaps/video.xpm" -#include "pixmaps/type_net.xpm" -#include "pixmaps/type_playlist.xpm" -#include "pixmaps/advanced.xpm" -#include "pixmaps/codec.xpm" -#include "pixmaps/intf.xpm" - #define ITEM_HEIGHT 25 /********************************************************************* @@ -61,59 +55,62 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) : QTreeWidget( _parent ), p_intf( _p_intf ) { + /* General Qt options */ setColumnCount( 1 ); setAlternatingRowColors( true ); header()->hide(); + setIconSize( QSize( ITEM_HEIGHT,ITEM_HEIGHT ) ); setTextElideMode( Qt::ElideNone ); - setHorizontalScrollBarPolicy ( Qt::ScrollBarAlwaysOn ); - -#define BI( a,b) QIcon a##_icon = QIcon( QPixmap( b##_xpm )) - BI( audio, audio ); - BI( video, video ); - BI( input, codec ); - BI( sout, type_net ); - BI( advanced, advanced ); - BI( playlist, type_playlist ); - BI( interface, intf ); + + /* Nice icons */ +#define BI( a,b) QIcon a##_icon = QIcon( QPixmap( b )) + BI( audio, ":/advprefs_audio" ); + BI( video, ":/advprefs_video" ); + BI( input, ":/advprefs_codec" ); + BI( sout, ":/advprefs_sout" ); + BI( advanced, ":/advprefs_extended" ); + BI( playlist, ":/advprefs_playlist" ); + BI( interface, ":/advprefs_intf" ); #undef BI /* Build the tree for the main module */ - const module_t *p_module = NULL; - vlc_list_t *p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, - FIND_ANYWHERE ); - if( !p_list ) return; - for( unsigned i = 0; p_module == NULL; i++ ) - { - assert (i < (unsigned)p_list->i_count); - - const module_t *p_main = (module_t *)p_list->p_values[i].p_object; - if( strcmp( p_main->psz_object_name, "main" ) == 0 ) - p_module = p_main; - } + module_t *p_module = module_GetMainModule( p_intf ); + /* Initialisation and get the confsize */ PrefsItemData *data = NULL; + PrefsItemData *data_sub = NULL; QTreeWidgetItem *current_item = NULL; - for (size_t i = 0; i < p_module->confsize; i++) + unsigned confsize; + module_config_t *const p_config = module_GetConfig (p_module, &confsize); + + /* Go through the list of conf */ + for( size_t i = 0; i < confsize; i++ ) { - const module_config_t *p_item = p_module->p_config + i; - char *psz_help; + const char *psz_help; QIcon icon; + + /* Work on a new item */ + module_config_t *p_item = p_config + i; + switch( p_item->i_type ) { + /* This is a category */ case CONFIG_CATEGORY: if( p_item->value.i == -1 ) break; + + /* PrefsItemData Init */ data = new PrefsItemData(); - data->name = QString( qfu( config_CategoryNameGet - ( p_item->value.i ) ) ); + data->name = qtr( config_CategoryNameGet( p_item->value.i ) ); psz_help = config_CategoryHelpGet( p_item->value.i ); if( psz_help ) - data->help = QString( qfu(psz_help) ); + data->help = qtr( psz_help ); else data->help.clear(); data->i_type = TYPE_CATEGORY; data->i_object_id = p_item->value.i; + /* This is a category, put a nice icon */ switch( p_item->value.i ) { #define CI(a,b) case a: icon = b##_icon;break @@ -124,9 +121,10 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) : CI( CAT_ADVANCED, advanced ); CI( CAT_PLAYLIST, playlist ); CI( CAT_INTERFACE, interface ); -#undef CI } +#undef CI + /* Create a new QTreeItem to display it in the tree at top level */ current_item = new QTreeWidgetItem(); current_item->setText( 0, data->name ); current_item->setIcon( 0 , icon ); @@ -135,8 +133,12 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) : qVariantFromValue( data ) ); addTopLevelItem( current_item ); break; + + /* This is a subcategory */ case CONFIG_SUBCATEGORY: if( p_item->value.i == -1 ) break; + + /* Special cases: move the main subcategories to the parent cat*/ if( data && ( p_item->value.i == SUBCAT_VIDEO_GENERAL || p_item->value.i == SUBCAT_ADVANCED_MISC || @@ -146,62 +148,73 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) : p_item->value.i == SUBCAT_PLAYLIST_GENERAL|| p_item->value.i == SUBCAT_AUDIO_GENERAL ) ) { - // Data still contains the correct thing + /* Data still contains the correct thing */ data->i_type = TYPE_CATSUBCAT; data->i_subcat_id = p_item->value.i; - data->name = QString( qfu( config_CategoryNameGet( - p_item->value.i )) ); + data->name = qtr( config_CategoryNameGet( p_item->value.i ) ); psz_help = config_CategoryHelpGet( p_item->value.i ); if( psz_help ) - data->help = QString( qfu(psz_help) ); + data->help = qtr( psz_help ); else data->help.clear(); current_item->setData( 0, Qt::UserRole, QVariant::fromValue( data ) ); continue; } - data = new PrefsItemData(); - data->name = QString( qfu( config_CategoryNameGet( - p_item->value.i)) ); + + /* Normal Subcategories */ + + /* Process the Data */ + data_sub = new PrefsItemData(); + data_sub->name = qtr( config_CategoryNameGet( p_item->value.i) ); psz_help = config_CategoryHelpGet( p_item->value.i ); if( psz_help ) - data->help = QString( qfu(psz_help) ); + data_sub->help = qtr( psz_help ); else - data->help.clear(); - data->i_type = TYPE_SUBCATEGORY; - data->i_object_id = p_item->value.i; - - assert( current_item ); + data_sub->help.clear(); + data_sub->i_type = TYPE_SUBCATEGORY; + data_sub->i_object_id = p_item->value.i; - /* TODO : Choose the image */ + /* Create a new TreeWidget */ QTreeWidgetItem *subcat_item = new QTreeWidgetItem(); - subcat_item->setText( 0, data->name ); - //item->setIcon( 0 , XXX ); + subcat_item->setText( 0, data_sub->name ); + /* TODO : Choose the image */ + //subcat_item->setIcon( 0 , XXX ); subcat_item->setData( 0, Qt::UserRole, - qVariantFromValue(data) ); + qVariantFromValue( data_sub ) ); subcat_item->setSizeHint( 0, QSize( -1, ITEM_HEIGHT ) ); + + /* Add it to the parent */ + assert( current_item ); current_item->addChild( subcat_item ); break; + + /* Other items don't need yet a place on the tree */ } } + module_PutConfig( p_config ); + vlc_object_release( (vlc_object_t*)p_module ); + + vlc_list_t *p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, + FIND_ANYWHERE ); /* Build the tree of plugins */ for( int i_index = 0; i_index < p_list->i_count; i_index++ ) { + /* Take every module */ p_module = (module_t *)p_list->p_values[i_index].p_object; // Main module excluded - if( !strcmp( p_module->psz_object_name, "main" ) ) continue; - - /* Exclude submodules; they have no config options of their own */ - if( p_module->b_submodule ) continue; + if( module_IsMainModule( p_module) ) continue; - unsigned i_subcategory = 0, i_category = 0; + unsigned i_subcategory = 0, i_category = 0, confsize; bool b_options = false; + module_config_t *const p_config = module_GetConfig (p_module, &confsize); - for (size_t i = 0; i < p_module->confsize; i++) + /* Loop through the configurations items */ + for (size_t i = 0; i < confsize; i++) { - const module_config_t *p_item = p_module->p_config + i; + const module_config_t *p_item = p_config + i; if( p_item->i_type == CONFIG_CATEGORY ) i_category = p_item->value.i; @@ -214,17 +227,25 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) : if( b_options && i_category && i_subcategory ) break; } + module_PutConfig (p_config); + + /* Dummy item, please proceed */ if( !b_options || i_category == 0 || i_subcategory == 0 ) continue; + // Locate the category item; QTreeWidgetItem *subcat_item = NULL; bool b_found = false; + for( int i_cat_index = 0 ; i_cat_index < topLevelItemCount(); i_cat_index++ ) { + /* Get the treeWidgetItem that correspond to the category */ QTreeWidgetItem *cat_item = topLevelItem( i_cat_index ); PrefsItemData *data = cat_item->data( 0, Qt::UserRole ). value(); + + /* If we match the good category */ if( data->i_object_id == i_category ) { for( int i_sc_index = 0; i_sc_index < cat_item->childCount(); @@ -250,17 +271,12 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) : if( !b_found ) continue; PrefsItemData *module_data = new PrefsItemData(); - module_data->b_submodule = p_module->b_submodule; module_data->i_type = TYPE_MODULE; - module_data->psz_name = strdup( p_module->psz_object_name ); - module_data->i_object_id = p_module->b_submodule ? - ((module_t *)p_module->p_parent)->i_object_id : - p_module->i_object_id; + module_data->psz_name = strdup( module_GetObjName( p_module ) ); module_data->help.clear(); // TODO image QTreeWidgetItem *module_item = new QTreeWidgetItem(); - module_item->setText( 0, qfu( p_module->psz_shortname ? - p_module->psz_shortname : p_module->psz_object_name) ); + module_item->setText( 0, qtr( module_GetName( p_module, false ) ) ); //item->setIcon( 0 , XXX ); module_item->setData( 0, Qt::UserRole, QVariant::fromValue( module_data) ); @@ -334,10 +350,10 @@ void PrefsTree::doAll( bool doclean ) /********************************************************************* * The Panel *********************************************************************/ -PrefsPanel::PrefsPanel( QWidget *_parent ) : QWidget( _parent ) +AdvPrefsPanel::AdvPrefsPanel( QWidget *_parent ) : QWidget( _parent ) {} -PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, +AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, PrefsItemData * data ) : QWidget( _parent ), p_intf( _p_intf ) { @@ -346,20 +362,17 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, if( data->i_type == TYPE_CATEGORY ) return; else if( data->i_type == TYPE_MODULE ) - p_module = (module_t *) vlc_object_get( p_intf, data->i_object_id ); + p_module = module_Find( p_intf, data->psz_name ); else { - p_module = config_FindModule( VLC_OBJECT(p_intf), "main" ); + p_module = module_GetMainModule( p_intf ); assert( p_module ); - vlc_object_yield( p_module ); } - module_t *p_realmodule = p_module->b_submodule - ? (module_t *)(p_module->p_parent) - : p_module; - - module_config_t *p_item = p_realmodule->p_config; - module_config_t *p_end = p_item + p_realmodule->confsize; + unsigned confsize; + module_config_t *const p_config = module_GetConfig (p_module, &confsize), + *p_item = p_config, + *p_end = p_config + confsize; if( data->i_type == TYPE_SUBCATEGORY || data->i_type == TYPE_CATSUBCAT ) { @@ -390,11 +403,12 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, } else { - head = QString( qfu(p_module->psz_longname) ); - if( p_module->psz_help ) + const char *psz_help = module_GetHelp (p_module); + head = QString( qtr( module_GetLongName( p_module ) ) ); + if( psz_help ) { help.append( "\n" ); - help.append( qfu( p_module->psz_help ) ); + help.append( qtr( psz_help ) ); } } @@ -436,17 +450,18 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ( p_item->i_type == CONFIG_CATEGORY || p_item->i_type == CONFIG_SUBCATEGORY ) ) break; - if( p_item->b_internal == VLC_TRUE ) continue; + if( p_item->b_internal == true ) continue; if( p_item->i_type == CONFIG_SECTION ) { if( box ) { box->setLayout( boxlayout ); - layout->addWidget( box, i_line, 0, 1, 2 ); + layout->addWidget( box, i_line, 0, 1, -1 ); i_line++; } - box = new QGroupBox( qfu(p_item->psz_text) ); + box = new QGroupBox( qtr( p_item->psz_text ) ); + box->hide(); boxlayout = new QGridLayout(); } /* Only one hotkey control */ @@ -467,13 +482,6 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, if( !control ) continue; - if( has_hotkey ) - { - /* A hotkey widget takes 2 lines */ - if( box ) i_boxline ++; - else i_line++; - } - if( box ) i_boxline++; else i_line++; controls.append( control ); @@ -487,10 +495,11 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, if( box ) { box->setLayout( boxlayout ); - layout->addWidget( box, i_line, 0, 1, 2 ); + box->show(); + layout->addWidget( box, i_line, 0, 1, -1 ); } - vlc_object_release( p_module ); + module_Put( p_module ); scrolled_area->setSizePolicy( QSizePolicy::Preferred,QSizePolicy::Fixed ); scrolled_area->setLayout( layout ); @@ -500,7 +509,7 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, setLayout( global_layout ); } -void PrefsPanel::apply() +void AdvPrefsPanel::apply() { QList::Iterator i; for( i = controls.begin() ; i != controls.end() ; i++ ) @@ -509,5 +518,5 @@ void PrefsPanel::apply() c->doApply( p_intf ); } } -void PrefsPanel::clean() +void AdvPrefsPanel::clean() {}