5#include <QItemSelection>
7#include "polynomialsolver.h"
8#include "polfileeditorwindow.h"
63 void polynomial_solved();
71 void onlistRootsView_selectionChanged(QItemSelection, QItemSelection);
72 void onSolvePolFileRequested(QString path);
75 void on_solveButton_clicked();
77 void unlockInterface();
79 void on_listRootsView_clicked(
const QModelIndex &index);
81 void on_actionOpen_pol_file_triggered();
83 void on_actionQuit_triggered();
85 void on_actionAbout_MPSolve_triggered();
87 void on_actionOpen_editor_triggered();
89 void on_actionAbort_computations_triggered();
91 void closeEvent(QCloseEvent *);
93 void onPolFileEditorWindowDestroyed();
95 void on_openPolFileButton_clicked();
97 void on_zoomInButton_clicked();
99 void on_zoomOutButton_clicked();
104 QString m_selectedPolFile;
Definition: mainwindow.h:18
mps_output_goal selectedGoal()
selectedGoal returns the goal for the computation. Can be either set to MPS_OUTPUT_GOAL_ISOLATE or to...
Definition: mainwindow.cpp:110
PolynomialBasis polynomialBasis()
polynomialBasis returns the polynomial basis selected by the user.
Definition: mainwindow.cpp:95
int requiredDigits()
requiredDigits returns the number of accuracy digits required by the user
Definition: mainwindow.cpp:83
void openEditor(QString polFile="")
openEditor performs the necessary steps to set up the PolFileEditorWindow and activate it.
Definition: mainwindow.cpp:43
void openPolFile(QString path)
openPolFile loads a .pol file given its path
Definition: mainwindow.cpp:153
mps_algorithm selectedAlgorithm()
selectedAlgorithm return the algorithm currently selected by the user.
Definition: mainwindow.cpp:88
Definition: polfileeditorwindow.h:15
The PolynomialSolver class aims to solve a polynomial given its coefficients or the content of the li...
Definition: polynomialsolver.h:22