X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=playlistmainwindow.cpp;h=4114ca5fbf655aa2544da3eedd83a50f08a2c07f;hb=d1c6fb19f9ff914a6714a80ad0d0cfd52e427e43;hp=af07ce68a30b526f3d9abdf18a5cbc72d5d4e80e;hpb=3606d69e42b19947969814e44eb4426e2ca8ac21;p=vlc-remote diff --git a/playlistmainwindow.cpp b/playlistmainwindow.cpp index af07ce6..4114ca5 100644 --- a/playlistmainwindow.cpp +++ b/playlistmainwindow.cpp @@ -1,5 +1,5 @@ /* VLC-REMOTE for MAEMO 5 - * Copyright (C) 2010 Schutz Sacha , Dru Moore + * Copyright (C) 2010 Schutz Sacha , Dru Moore , Yann Nave * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, * or (at your option) any later version, as published by the Free @@ -22,6 +22,7 @@ #include "configdialog.h" #include "aboutdialog.h" #include "accountdialog.h" +#include "vlcstatus.h" PlayListMainWindow::PlayListMainWindow(QWidget *parent) : QMainWindow(parent), @@ -315,3 +316,8 @@ void PlayListMainWindow::updateList() { } } } +void PlayListMainWindow::updateUiWithCurrentStatus(VlcStatus * status) { + ui->loopButton->setChecked(status->loop); + ui->repeatButton->setChecked(status->repeat); + ui->shuffleButton->setChecked(status->random); +}