Version bump
[someplayer] / src / toolswidget.cpp
1 /*
2  * SomePlayer - An alternate music player for Maemo 5
3  * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19
20 #include "toolswidget.h"
21 #include "ui_toolswidget.h"
22 #include <QDesktopWidget>
23 #include "config.h"
24
25 using namespace SomePlayer::Storage;
26
27 ToolsWidget::ToolsWidget(QWidget *parent) :
28                 QWidget(parent),
29                 ui(new Ui::ToolsWidget)
30 {
31         ui->setupUi(this);
32         _fullscreen = false;
33         connect (ui->fscreenButton, SIGNAL(clicked()), this, SLOT(_fullscreen_button()));
34         connect (ui->nextButton, SIGNAL(clicked()), this, SIGNAL(nextSearch()));
35         connect (ui->prevButton, SIGNAL(clicked()), this, SIGNAL(prevSearch()));
36         connect (ui->searchLine, SIGNAL(textEdited(QString)), this, SIGNAL(search(QString)));
37         Config config;
38         _icons_theme = config.getValue("ui/iconstheme").toString();
39 }
40
41 ToolsWidget::~ToolsWidget()
42 {
43         delete ui;
44 }
45
46 void ToolsWidget::_fullscreen_button() {
47         _fullscreen = !_fullscreen;
48         emit toggleFullscreen(_fullscreen);
49 }
50
51 void ToolsWidget::reset() {
52         ui->searchLine->setText("");
53 }
54
55 void ToolsWidget::setFocus() {
56         ui->searchLine->setFocus();
57 }
58
59 void ToolsWidget::updateIcons() {
60         Config config;
61         _icons_theme = config.getValue("ui/iconstheme").toString();
62         ui->fscreenButton->setIcon(QIcon(":/icons/"+_icons_theme+"/fullscreen.png"));
63         ui->nextButton->setIcon(QIcon(":/icons/"+_icons_theme+"/forward.png"));
64         ui->prevButton->setIcon(QIcon(":/icons/"+_icons_theme+"/back.png"));
65 }
66
67 void ToolsWidget::show() {
68         updateIcons();
69         QWidget::show();
70 }
71
72 void ToolsWidget::toggleArrows(bool state) {
73         ui->nextButton->setVisible(state);
74         ui->prevButton->setVisible(state);
75 }
76
77 void ToolsWidget::hideFSButton() {
78         ui->fscreenButton->hide();
79 }
80
81 void ToolsWidget::setFullscreenState(bool on) {
82         ui->fscreenButton->setChecked(on);
83         _fullscreen = on;
84 }