Skip to content
QGCParamWidget.h 3.42 KiB
Newer Older
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL 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.

    QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief Declaration of class QGCParamWidget
 *   @author Lorenz Meier <mail@qgroundcontrol.org>
 */

pixhawk's avatar
pixhawk committed
#ifndef QGCPARAMWIDGET_H
#define QGCPARAMWIDGET_H

#include <QWidget>
#include <QTreeWidget>
#include <QTreeWidgetItem>
#include <QMap>
lm's avatar
lm committed
#include <QLabel>
pixhawk's avatar
pixhawk committed

#include "QGCBaseParamWidget.h"


//forward declarations
pixhawk's avatar
pixhawk committed

/**
 * @brief Widget to read/set onboard parameters
 */
class QGCParamWidget : public QGCBaseParamWidget
pixhawk's avatar
pixhawk committed
{
pixhawk's avatar
pixhawk committed
public:
    QGCParamWidget(QWidget *parent = 0);
LM's avatar
LM committed

tstellanova's avatar
tstellanova committed
protected:
    virtual void setParameterStatusMsg(const QString& msg);
    virtual void layoutWidget();///< Layout the appearance of this widget
    virtual void connectViewSignalsAndSlots();///< Connect view signals/slots as needed
    virtual void disconnectViewSignalsAndSlots();///< Connect view signals/slots as needed

    virtual QTreeWidgetItem* getParentWidgetItemForParam(int compId, const QString& paramName);
    virtual QTreeWidgetItem* findChildWidgetItemForParam(QTreeWidgetItem* parentItem, const QString& paramName);

    /** @brief Add a component item as a child of this widget
tstellanova's avatar
tstellanova committed
     * @param compId Component id of the component
     * @param compName Human friendly name of the component
     */
    void addComponentItem(int compId, QString compName);

    virtual void addActionButtonsToLayout(QGridLayout* layout);


tstellanova's avatar
tstellanova committed

public slots:
    virtual void handleOnboardParamUpdate(int component,const QString& parameterName, QVariant value);
    virtual void handlePendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending);
    virtual void handleOnboardParameterListUpToDate();
tstellanova's avatar
tstellanova committed
    virtual void handleParamStatusMsgUpdate(QString msg, int level);
    virtual void clearOnboardParamDisplay();
    virtual void clearPendingParamDisplay();

tstellanova's avatar
tstellanova committed
    /** @brief Ensure that view of parameter matches data in the model */
    QTreeWidgetItem* updateParameterDisplay(int component, QString parameterName, QVariant value);
    /** @brief Update when user changes parameters */
    void parameterItemChanged(QTreeWidgetItem* prev, int column);
tstellanova's avatar
tstellanova committed

pixhawk's avatar
pixhawk committed
protected:
tstellanova's avatar
tstellanova committed
    QMap<int, QTreeWidgetItem*>* componentItems; ///< The tree of component items, stored by component ID
    QMap<int, QMap<QString, QTreeWidgetItem*>* > paramGroups; ///< Parameter groups to organize component items
tstellanova's avatar
tstellanova committed
    QLabel* statusLabel; ///< User-facing parameter status label
    QTreeWidget* tree;   ///< The parameter tree
lm's avatar
lm committed

pixhawk's avatar
pixhawk committed
};

#endif // QGCPARAMWIDGET_H