/
definitly
/
volsndkodi
Обзор
Документация
Войти
/
definitly
/
volsndkodi
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
main.cpp
19 строк
535 B
Your Name
новый файл: Makefile
27 сен 2025, 08:29
27 сен 2025, 08:29
8eb5029
Код
Авторство
О чём код?
#include "mainwindow.h" #include <QApplication> #include <QtGui> #include <QtWidgets> int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; int screenWidth = QApplication::desktop()->screenGeometry().width(); int screenHeight = QApplication::desktop()->screenGeometry().height(); int windowWidth = w.width(); int windowHeight = w.height(); int x = (screenWidth - windowWidth) / 2; int y = (screenHeight - windowHeight) / 2; w.move(x, y); w.show(); return a.exec(); }