Hallo,
Ich probiere gerade Qt zu lernen.
Ich habe schon ein Programm hinbekommen, aber bei dem Menü stehe ich jetzt an.
Ich habe 3 Dateien und da die eh sehr kurz sind kann ich sie ja hier hoffentlich posten.
mathematik.h:
main.cpp
mathematik.cpp
Und dann noch die Fehlermeldung vom Creator:
collect2: ld returned 1 exit status
Aso noch das Betriebssystem: Windows7
mfg
Ich probiere gerade Qt zu lernen.
Ich habe schon ein Programm hinbekommen, aber bei dem Menü stehe ich jetzt an.
Ich habe 3 Dateien und da die eh sehr kurz sind kann ich sie ja hier hoffentlich posten.
mathematik.h:
Code:
#ifndef MATHEMATIK_H
#define MATHEMATIK_H
#include <QWidget>
#include <QMainWindow>
#include <QTextEdit>
#include <QMenu>
#include <QMenuBar>
class mathematik : public QMainWindow {
Q_OBJECT
public:
mathematik( QMainWindow *parent = 0, Qt::WindowFlags flags = 0);
QTextEdit* editor;
};
#endif // MATHEMATIK_H
main.cpp
Code:
#include <QApplication>
#include "mathematik.h"
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
mathematik* window = new mathematik;
window->show();
return app.exec();
}
mathematik.cpp
Code:
#include "mathematik.h"
#include <QApplication>
mathematik::mathematik( QMainWindow *parent, Qt::WindowFlags flags) : QMainWindow(parent, flags) {
editor = new QTextEdit;
resize(320, 200);
setCentralWidget(editor);
setWindowTitle("Notizen");
QMenu *fileMenu = new QMenu(tr("&Datei"), this);
menuBar()->addMenu(fileMenu);
}
Und dann noch die Fehlermeldung vom Creator:
collect2: ld returned 1 exit status
Aso noch das Betriebssystem: Windows7
mfg
Zuletzt bearbeitet: