XMLCommProtocolWidget.h 1.04 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#ifndef XMLCOMMPROTOCOLWIDGET_H
#define XMLCOMMPROTOCOLWIDGET_H

#include <QtGui/QWidget>
#include "DomModel.h"

namespace Ui {
    class XMLCommProtocolWidget;
}

/**
 * @brief Tool to generate MAVLink code out of XML protocol definitions
 * @see http://doc.trolltech.com/4.6/itemviews-simpledommodel.html for a XML view tutorial
 */
class XMLCommProtocolWidget : public QWidget {
    Q_OBJECT
public:
    XMLCommProtocolWidget(QWidget *parent = 0);
    ~XMLCommProtocolWidget();

protected slots:
    /** @brief Select input XML protocol definition */
    void selectXMLFile();
    /** @brief Select output directory for generated .h files */
    void selectOutputDirectory();
    /** @brief Set the XML this widget currently operates on */
    void setXML(const QString& xml);
    /** @brief Parse XML file and generate .h files */
    void generate();
    /** @brief Save the edited file */
    void save();

protected:
    DomModel* model;
    void changeEvent(QEvent *e);

private:
    Ui::XMLCommProtocolWidget *m_ui;
};

#endif // XMLCOMMPROTOCOLWIDGET_H