blob: 8e61637fde3ef1347f313583785cc24764835af6 [file] [log] [blame]
Edric Milaret627500d2015-03-27 16:41:40 -04001/***************************************************************************
2 * Copyright (C) 2011-2015 by Savoir-Faire Linux *
3 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (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, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
19#ifndef CONFIGURATIONWIDGET_H
20#define CONFIGURATIONWIDGET_H
21
22#include <QWidget>
23#include <QItemSelection>
24
25#include "navwidget.h"
26#include "accountdetails.h"
27
28#include "accountmodel.h"
29#include "video/devicemodel.h"
30#include "audio/codecmodel.h"
31
32namespace Ui {
33class ConfigurationWidget;
34}
35
36class ConfigurationWidget : public NavWidget
37{
38 Q_OBJECT
39
40public:
41 explicit ConfigurationWidget(QWidget *parent = 0);
42 ~ConfigurationWidget();
43 void atExit();
44
45//UI SLOTS
46private slots:
47 void on_deviceBox_currentIndexChanged(int index);
48 void on_sizeBox_currentIndexChanged(int index);
49 void on_rateBox_currentIndexChanged(int index);
50 void on_testVideoButton_toggled(bool checked);
51 void on_deleteAccountButton_clicked();
52 void on_addAccountButton_clicked();
53
54private slots:
55 void accountSelected(QItemSelection itemSel);
56
57private:
58 Ui::ConfigurationWidget *ui;
59 AccountModel* accountModel_;
60 Video::DeviceModel* deviceModel_;
61 CodecModel* codecModel_;
62 bool isLoading_;
63 AccountDetails* accountDetails_;
64};
65
66#endif // CONFIGURATIONWIDGET_H