/*===================================================================== APM_PLANNER Open Source Ground Control Station (c) 2013, Bill Bonney This file is part of the APM_PLANNER project APM_PLANNER is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. APM_PLANNER is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with APM_PLANNER. If not, see . ======================================================================*/ /** * @file * @brief Serial Settings View. * * @author Bill Bonney * * Influenced from Qt examples by :- * Copyright (C) 2012 Denis Shienkov * Copyright (C) 2012 Laszlo Papp * */ #ifndef SERIALSETTINGSDIALOG_H #define SERIALSETTINGSDIALOG_H #include #ifdef __android__ #include "qserialport.h" #else #include #endif namespace Ui { class SerialSettingsDialog; } class QIntValidator; class SerialSettings { public: SerialSettings() : name(""), baudRate(115200), dataBits(QSerialPort::Data8), parity(QSerialPort::NoParity), stopBits(QSerialPort::OneStop), flowControl(QSerialPort::NoFlowControl){} public: QString name; qint32 baudRate; QSerialPort::DataBits dataBits; QSerialPort::Parity parity; QSerialPort::StopBits stopBits; QSerialPort::FlowControl flowControl; }; class SerialSettingsDialog : public QDialog { Q_OBJECT public: explicit SerialSettingsDialog(QWidget *parent = 0); ~SerialSettingsDialog(); const SerialSettings &settings() const; private slots: void showPortInfo(int idx); void apply(); void checkCustomBaudRatePolicy(int idx); private: void fillPortsParameters(); void fillPortsInfo(); void updateSettings(); private: Ui::SerialSettingsDialog *ui; SerialSettings m_currentSettings; QIntValidator *m_intValidator; }; #endif