File indexing completed on 2024-05-12 16:23:31

0001 /***************************************************************************
0002  *   Copyright (C) 2005-2008 by Bjoern Erik Nilsen & Fredrik Berg Kjoelstad*
0003  *   bjoern.nilsen@bjoernen.com & fredrikbk@hotmail.com                    *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  *                                                                         *
0010  *   This program is distributed in the hope that it will be useful,       *
0011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0013  *   GNU General Public License for more details.                          *
0014  *                                                                         *
0015  *   You should have received a copy of the GNU General Public License     *
0016  *   along with this program; if not, write to the                         *
0017  *   Free Software Foundation, Inc.,                                       *
0018  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
0019  ***************************************************************************/
0020 #ifndef DEVICETAB_H
0021 #define DEVICETAB_H
0022 
0023 #include <qobjectdefs.h>
0024 #include <qstring.h>
0025 #include <qwidget.h>
0026 #include <vector>
0027 
0028 class QTableWidget;
0029 class QLineEdit;
0030 class QPushButton;
0031 class QLabel;
0032 class QGroupBox;
0033 class QObject;
0034 class QResizeEvent;
0035 class QTextEdit;
0036 class QTableWidgetItem;
0037 
0038 class DeviceTab : public QWidget
0039 {
0040     Q_OBJECT
0041 public:
0042     DeviceTab(QWidget *parent = 0);
0043 
0044     void initialize();
0045     void apply();
0046     void retranslateStrings();
0047 
0048 protected:
0049     void resizeEvent(QResizeEvent *event);
0050 
0051 private slots:
0052     void contentsChanged(int row, int column);
0053     void activeCellChanged(int row, int column);
0054     void editDevice();
0055     void closeChangeBox();
0056     void updateDeviceString(const QString &txt);
0057     void addDevice();
0058     void removeDevice();
0059 
0060 private:
0061     QTableWidget *deviceTable;
0062     QPushButton *addButton;
0063     QPushButton *removeButton;
0064     QPushButton *editButton;
0065     QPushButton *closeChangeBoxButton;
0066     QLineEdit *deviceEdit;
0067     QGroupBox *devicePreferences;
0068     QLabel *deviceLabel;
0069     QTableWidgetItem *checkTableItem;
0070     QTextEdit *informationText;
0071     std::vector<QString> deviceStrings;
0072     std::vector<QString> deviceNameStrings;
0073     std::vector<QString> deviceDescriptionStrings;
0074     int numAutoDetectedDevices;
0075 
0076     void makeGUI();
0077 };
0078 
0079 #endif
0080