2024-09-17

Die ersten Übungen fur heute. dezimal ausgabe, String Operation auf zwei Strings. sounds Im nächsten Schritt

ich benutze heute mal Qt um ein richtiges Linux Programm mit Fenstern zu schreiben, ich programmiere einen Funktionslplotter mit Fenstern. Als Binary

ok, ich habe schon ein Fenster in Qt geschrieben

Image IMG_3173

Image IMG_3174

Image IMG_3175

Image IMG_3176

Image IMG_3177

Image IMG_3178

Image IMG_3179

Image IMG_3180

Image IMG_3181

Image IMG_3182

Image IMG_3183

Image IMG_3184

Image Screenshot_20240917_083436

Image Screenshot_20240917_083501

./../vid/IMG3185.mov

#include <QApplication>
#include <QTextEdit>

int main(int argc, char *argv[])
{
 QApplication app(argc, argv);

 QTextEdit textEdit;
 textEdit.show();

 return app.exec();
}

TARGET = Window
SOURCES += qt20240917.cpp
QT += widgets

root@work:/home/david# apt-get install qt6.7.0-full
david@work:~$ qmake -o Makefile my.pro
david@work:~$ make
g++ -c -pipe -O2 -Wall -Wextra -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o qt20240917.o qt20240917.cpp
g++ -Wl,-O1 -o Window qt20240917.o   /usr/lib/x86_64-linux-gnu/libQt5Widgets.so /usr/lib/x86_64-linux-gnu/libQt5Gui.so /usr/lib/x86_64-linux-gnu/libQt5Core.so -lGL -lpthread
david@work:~$ make