2024-11-26 17:16:25 +08:00
|
|
|
#ifndef LEADSCHEME_H
|
|
|
|
#define LEADSCHEME_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
#include "navlistwidget.h"
|
2024-11-28 17:54:32 +08:00
|
|
|
#include "MoveButton.h"
|
|
|
|
#include <QList>
|
2024-12-03 16:48:24 +08:00
|
|
|
#include <QLineEdit>
|
2024-11-26 17:16:25 +08:00
|
|
|
class LeadScheme:public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LeadScheme(QWidget * parent = NULL);
|
|
|
|
virtual ~LeadScheme();
|
|
|
|
|
|
|
|
void init();
|
2024-11-28 17:54:32 +08:00
|
|
|
bool initconnect();
|
2024-11-26 17:16:25 +08:00
|
|
|
void initLay();
|
2024-11-28 17:54:32 +08:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotSave();
|
2024-11-26 17:16:25 +08:00
|
|
|
private:
|
|
|
|
NavListWidget m_LeadSchemes;
|
|
|
|
NavListWidget m_listNum;
|
|
|
|
NavListWidget m_listPoints;
|
|
|
|
NavListWidget m_listExPoints;
|
2024-11-28 17:54:32 +08:00
|
|
|
|
|
|
|
QPushButton m_btnNew;
|
|
|
|
QPushButton m_btndelete;
|
|
|
|
QPushButton m_btnCancel;
|
|
|
|
QPushButton m_btnOK;
|
|
|
|
|
|
|
|
QList<MoveButton*> m_listMoveBtns;
|
2024-12-03 16:48:24 +08:00
|
|
|
QLineEdit m_editShecName;
|
2024-11-26 17:16:25 +08:00
|
|
|
};
|
|
|
|
#endif // LEADSCHEME_H
|