1. ホーム
  2. Qt

エラーについて: error: 'QApplication app' variable has initializer but incomplete type

2022-02-07 20:30:39
#include <QApplication>
#include <QMainWindow>
#include <QTextEdit>
#include <QKeyEvent>
#include <QDebug>

class MainWindow : public QMainWindow
 {
 public:
     MainWindow();

 protected:
     bool eventFilter(QObject *obj, QEvent *ev);

 private:
     QTextEdit *textEdit;
 };

 MainWindow::MainWindow()
 {
     textEdit = new QTextEdit;
     setCentralWidget(textEdit);

     textEdit-> installEventFilter(this);
 }

 bool MainWindow::eventFilter(QObject *obj, QEvent *event)
 {
     if (obj == textEdit) {
         if (event->type() == QEvent::KeyPress) { if (event->type() == QEvent::KeyPress) {
             QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
             qDebug() << "Ate key press" << keyEvent->key();
             return true;
         } else {
             return false;
         }
     } else {
         // pass the event on to the parent class
         return QMainWindow::eventFilter(obj, event);
     }
 }

int main(int argc, char *argv[])
{
     QApplication app(argc, argv);
     app.setOrganizationName("c-cube");
     app.setApplicationName("Evt filter Example");
     MainWindow mainWin;
     mainWin.show();
     return app.exec();
}






 上のコードは、気を抜いて #include <QApplication> を忘れると、非常に理解しにくいエラーメッセージを表示してコンパイルしてしまいます。

[wyh@ eventFilter 11:26:51]$makeを実行します。
g++ -c -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wall -W -D_REENTRANT - DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I.を参照。-I/usr/include/QtCore -I/usr/include/QtGui -I/ usr/include -I. -I. -o editBox_evt.o editBox_evt.cpp
editBox_evt.cpp: 関数 'int main(int, char**)' にあります。
editBox_evt.cpp:45:23: error: variable 'QApplication app' has initializer but incomplete type
を作ってください。*** [editBox_evt.o] エラー1
[wyh@ eventFilter 11:26:56]$。

error: 'QTextEdit' does not name a type (if you remove #include <QTextEdit>) のようなプロンプトが適度に表示されるはずです。

このように、今後、error: variable 'QxxxClass xxxvar' has initializer but incomplete typeのようなプロンプトが表示されたら、#include <QxxxClass > を忘れていないかチェックしてみてください。

以下は個別の例です。 http://www.developer.nokia.com/Community/Discussion/showthread.php?225679-Variable-has-initializer-but-incomplete-type   QGraphicsPixmapItemクラスが使用されています。