15 lines
440 B
C++
15 lines
440 B
C++
#include <QApplication>
|
|
#include "stockmanager.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
StockManager w;
|
|
|
|
w.setGeometry(0, 0, 1280, 720); // position en haut à gauche, taille 1024x600
|
|
w.setWindowFlags(Qt::FramelessWindowHint); // pas de barre de fenêtre
|
|
w.setFixedSize(1024, 600); // taille non redimensionnable
|
|
w.show();
|
|
|
|
return app.exec();
|
|
}
|