1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

Adds note on implementation obstacle.

This commit is contained in:
Thomas Harte 2020-06-01 22:08:21 -04:00
parent a30723c3d4
commit ab53165b34

View File

@ -5,6 +5,14 @@
#include "ui_mainwindow.h"
#include "timer.h"
/*
General Qt implementation notes:
* it seems like Qt doesn't offer a way to constrain the aspect ratio of a view by constraining
the size of the window (i.e. you can use a custom layout to constrain a view, but that won't
affect the window, so isn't useful for this project). Therefore the emulation window
*/
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)