我是QT新手,嘗試自我教導。QT創建者 - 'QGraphicsScene'沒有指定類型
以下示例/教程我到達此代碼。
目的是創建一個簡單的界面,允許登錄。
我的錯誤:
mainwindow.h:22: error: 'QGraphicsScene' does not name a type
QGraphicsScene *scene;
我還沒有找到一個解決方案,但是從UI刪除對象和實例QGraphicsScene
在使用this
代替ui->graphicsView
的,只有提起。
我錯過了什麼?
頁眉/ mainwindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QtCore>
#include <QtGui>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
QGraphicsScene *scene;
};
#endif // MAINWINDOW_H
源頭/ mainwindow.cpp
#include "mainwindow.h"
//#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
scene = new QGraphicsScene(ui->graphicsView);
scene->setSceneRect(ui->graphicsView->rect());
ui->graphicsView->setScene(scene);
ui->graphicsView->setFixedSize(400,400);
QPixmap pixmap("res/logo/logo-black.png");
scene->addPixmap(pixmap);
ui->graphicsView->show();
}
MainWindow::~MainWindow()
{
delete ui;
}
源頭/ main.cpp中
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
表格/ mainwindows.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>283</width>
<height>415</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QLineEdit" name="lineEdit">
<property name="geometry">
<rect>
<x>120</x>
<y>130</y>
<width>141</width>
<height>22</height>
</rect>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit_2">
<property name="geometry">
<rect>
<x>120</x>
<y>170</y>
<width>141</width>
<height>22</height>
</rect>
</property>
</widget>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>90</x>
<y>250</y>
<width>91</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Login</string>
</property>
</widget>
<widget class="QCheckBox" name="checkBox">
<property name="geometry">
<rect>
<x>90</x>
<y>220</y>
<width>101</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Remeber Me</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>20</x>
<y>130</y>
<width>59</width>
<height>14</height>
</rect>
</property>
<property name="text">
<string>Email</string>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>20</x>
<y>170</y>
<width>59</width>
<height>14</height>
</rect>
</property>
<property name="text">
<string>Password</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_2">
<property name="geometry">
<rect>
<x>96</x>
<y>310</y>
<width>80</width>
<height>22</height>
</rect>
</property>
<property name="text">
<string>Register</string>
</property>
</widget>
<widget class="QGraphicsView" name="graphicsView">
<property name="geometry">
<rect>
<x>80</x>
<y>0</y>
<width>121</width>
<height>111</height>
</rect>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>283</width>
<height>19</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>
UPDATE
- 取消註釋:
#include "ui_mainwindow.h"
在Sources/mainwindow.cpp
原因,我沒有看到ui_mainwindow.h
在我的項目目錄,從而思考這是不必要的包括。
- 加入
#include <QGraphicsScene>
在Headers/mainwindow.h
從documentation page找到 - 更多的是 「如果我加入這會發生」 嘗試,有想法,<QtGui>
包括<QGraphicsScene>
謝謝