コード例 #1
0
ファイル: vlc_model.cpp プロジェクト: tguillem/vlc
bool VLCModel::isCurrent( const QModelIndex &index ) const
{
    AbstractPLItem *item = getItem( index );
    if ( !item ) return false;
    return item->inputItem() == THEMIM->currentInputItem();
}
コード例 #2
0
ファイル: vlc_model.cpp プロジェクト: tguillem/vlc
input_item_t * VLCModel::getInputItem( const QModelIndex &index ) const
{
    AbstractPLItem *item = getItem( index );
    if ( !item ) return NULL;
    return item->inputItem();
}