Files
Kallery/mainwindow.cpp

17 lines
380 B
C++
Raw Normal View History

2025-02-19 13:58:04 +01:00
#include "mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
2025-02-19 15:23:20 +01:00
imageGallery = new ImageGallery(this);
setCentralWidget(imageGallery);
setWindowTitle("Image Gallery");
imageGallery->addImage("/home/krzys/Obrazy/kod.png");
imageGallery->addImage("/home/krzys/Obrazy/kod.png");
resize(800, 600);
2025-02-19 13:58:04 +01:00
}
MainWindow::~MainWindow()
{
}