我想创建一个飞机高度指示器并将其嵌入到 PyQt5 中。
我找到了一个 GitHub 存储库,其中包含使用 cpp 构建的自定义高度指示器。以下是 github 存储库的链接。
https://github.com/marek-cel/QFlightinstruments
文末附有视频教程。我按照他遵循的确切步骤进行操作。但是当我运行它时,我得到了以下错误。
"In file included from ..\Instruments\qfi\qfi_AI.cpp:23:
../Instruments/qfi/qfi_AI.h:28:10:fatal error: QGraphicsSvgItem: No such file or directory"
qfi_EADI.h、qfi_EHSI.h 和 qfi_HI.h 也显示相同的错误。
我已包含头文件并将以下行添加到我的 .pro 文件中
QT += core gui svg
下面是我的 qfi_AI.h 文件(.h 和 cpp 文件可以在 github 中找到)
#ifndef QFI_AI_H
#define QFI_AI_H
////////////////////////////////////////////////////////////////////////////////
#include <QGraphicsView>
#include <QGraphicsSvgItem> //error
////////////////////////////////////////////////////////////////////////////////
/**
* @brief Attitude Indicator widget class.
*/
class qfi_AI : public QGraphicsView
{
Q_OBJECT
public:
/** Constructor. */
explicit qfi_AI( QWidget *parent = Q_NULLPTR );
/** Destructor. */
virtual ~qfi_AI();
/** Reinitiates widget. */
void reinit();
/** Refreshes (redraws) widget. */
void redraw();
/** @param roll angle [deg] */
void setRoll( double roll );
/** @param pitch angle [deg] */
void setPitch( double pitch );
protected:
/** */
void resizeEvent( QResizeEvent *event );
private:
QGraphicsScene *_scene;
QGraphicsSvgItem *_itemBack;
QGraphicsSvgItem *_itemFace;
QGraphicsSvgItem *_itemRing;
QGraphicsSvgItem *_itemCase;
double _roll;
double _pitch;
double _faceDeltaX_new;
double _faceDeltaX_old;
double _faceDeltaY_new;
double _faceDeltaY_old;
double _scaleX;
double _scaleY;
const int _originalHeight;
const int _originalWidth;
const double _originalPixPerDeg;
QPointF _originalAdiCtr;
const int _backZ;
const int _faceZ;
const int _ringZ;
const int _caseZ;
void init();
void reset();
void updateView();
};
////////////////////////////////////////////////////////////////////////////////
#endif //QFI_AI_H
我该如何解决这个问题?