Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2092,3 +2092,22 @@ void MainWindow::on_actionastig_in_polar_triggered()
delete graph;
}


void MainWindow::on_actiondebugSomething_triggered()
{







}


void MainWindow::on_actionStop_auto_invert_triggered()
{
m_surfaceManager->m_askAboutReverse = true;
QMessageBox::information(this, "auto invert", "DFTFringe will now ask if it thinks it needs to invert a wave front.");
}

4 changes: 4 additions & 0 deletions mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ private slots:

void on_actionastig_in_polar_triggered();

void on_actiondebugSomething_triggered();

void on_actionStop_auto_invert_triggered();

private:

Ui::MainWindow *ui;
Expand Down
12 changes: 12 additions & 0 deletions mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
<addaction name="separator"/>
<addaction name="actionSave_PDF_report"/>
<addaction name="actionCreate_Movie_of_wavefronts"/>
<addaction name="actiondebugSomething"/>
</widget>
<widget class="QMenu" name="menuView">
<property name="title">
Expand Down Expand Up @@ -124,6 +125,7 @@
<addaction name="actionwave_front_transforms"/>
<addaction name="actiontilt_versus_astig_analysis"/>
<addaction name="actionDebugStuff"/>
<addaction name="actionStop_auto_invert"/>
</widget>
<widget class="QMenu" name="menuSimulations">
<property name="title">
Expand Down Expand Up @@ -1514,6 +1516,16 @@ em;
<string>Show astig in polar form of selected wave fronts</string>
</property>
</action>
<action name="actiondebugSomething">
<property name="text">
<string>debugSomething</string>
</property>
</action>
<action name="actionStop_auto_invert">
<property name="text">
<string>Stop auto invert</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
Expand Down
Loading