Improved Comments in whole emulator. Finalized emulator section in docu.

This commit is contained in:
t-moe
2015-06-07 15:29:46 +02:00
parent 3e4fbab00a
commit 4b5768cedc
8 changed files with 131 additions and 146 deletions

View File

@@ -33,12 +33,11 @@ protected:
~MainWindow();
private slots:
void on_cboZoom_currentIndexChanged(int index);
void on_cboZoom_currentIndexChanged(int index); //slot that is called when the zoomlevel changed
private:
//QMutex render_mutex;
QImage image;
int currentScale;
QImage image; //Display buffer
int currentScale; //current scale factor
void checkAndSendEvent(QPoint pos, bool down);
Ui::MainWindow *ui;