This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
NetworkPacketComposer/guidededitorelementview.h

28 lines
499 B
C++

#ifndef GUIDEDEDITORELEMENTVIEW_H
#define GUIDEDEDITORELEMENTVIEW_H
#include "guidededitorelement.h"
#include <QWidget>
class GuidedEditorElementView : public QWidget
{
Q_OBJECT
public:
explicit GuidedEditorElementView(GuidedEditorElement* element, QWidget *parent = 0);
signals:
public slots:
private:
// widget container
// title label
// example/regex label
// mouseover description?
// input field based on element type
// layer information
};
#endif // GUIDEDEDITORELEMENTVIEW_H