Fixed settings save bug
[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
23 ToolsWidget::ToolsWidget(QWidget *parent) :
24                 QWidget(parent),
25                 ui(new Ui::ToolsWidget)
26 {
27         ui->setupUi(this);
28         _fullscreen = false;
29         connect (ui->fscreenButton, SIGNAL(clicked()), this, SLOT(_fullscreen_button()));
30         connect (ui->nextButton, SIGNAL(clicked()), this, SIGNAL(nextSearch()));
31         connect (ui->prevButton, SIGNAL(clicked()), this, SIGNAL(prevSearch()));
32         connect (ui->searchLine, SIGNAL(textEdited(QString)), this, SIGNAL(search(QString)));
33 }
34
35 ToolsWidget::~ToolsWidget()
36 {
37         delete ui;
38 }
39
40 void ToolsWidget::_fullscreen_button() {
41         _fullscreen = !_fullscreen;
42         emit toggleFullscreen(_fullscreen);
43         ui->fscreenButton->setIcon(QIcon(_fullscreen ? ":/icons/white/window.png" : ":/icons/white/fullscreen.png"));
44 }
45
46 void ToolsWidget::reset() {
47         ui->searchLine->setText("");
48 }
49
50 void ToolsWidget::setFocus() {
51         ui->searchLine->setFocus();
52 }