Youtube video and text (draft).
[speedfreak] / Client / topresultdialog.cpp
index ef4478b..b7cfdd4 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Topresultdialog
+ *
+ * @author     Olavi Pulkkinen <olavi.pulkkinena@fudeco.com>
+ * @author     Toni Jussila <toni.jussila@fudeco.com>
+ * @copyright  (c) 2010 Speed Freak team
+ * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
+
 #include <QDebug>
 #include "topresultdialog.h"
 #include "ui_topresultdialog.h"
@@ -11,6 +20,10 @@ TopResultDialog::TopResultDialog(QWidget *parent) :
 
     //Set the amount of requested top results here, untill there is user input
     setLimitNr(10);
+
+    //Button settings
+    ui->buttonTopRefresh->setAutoFillBackground(true);
+    ui->buttonTopRefresh->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)");
 }
 
 TopResultDialog::~TopResultDialog()
@@ -33,14 +46,11 @@ void TopResultDialog::changeEvent(QEvent *e)
 
 void TopResultDialog::on_buttonTopRefresh_clicked()
 {
+    ui->labelTopList->clear();
+    ui->comboBoxTopCategory->clear();
     emit refreshCategoryList();
 }
 
-void TopResultDialog::on_pushButton_debclose_clicked()
-{
-    close();
-}
-
 void TopResultDialog::setCompoBoxCategories(QStringList list)
 {
     ui->comboBoxTopCategory->addItems(list);
@@ -68,6 +78,12 @@ int TopResultDialog::getLimitNr()
 
 void TopResultDialog::on_comboBoxTopCategory_currentIndexChanged(int index)
 {
+    ui->labelTopList->clear();
     recentCategoryIndex = index;
     emit refreshTopList(index);
 }
+
+void TopResultDialog::setLabelInfoToUser(QString infoText)
+{
+    this->ui->labelInfoToUser->setText(infoText);
+}