mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-06 00:06:00 -04:00
--User changes
-Add variations filter/selection dialog. --Bug fixes -Fix summary window not properly indicating the presence of pose affine. -Remove a file named Fractorium.aps which had been erroneously committed a year ago. --Code changes -Use qobject_cast instead of dynamic_cast where appropriate. -Add more override keyword where appropriate. -Add variations list to settings for filter dialog.
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
#include "TableWidget.h"
|
||||
#include "FinalRenderDialog.h"
|
||||
#include "OptionsDialog.h"
|
||||
#include "VariationsDialog.h"
|
||||
#include "AboutDialog.h"
|
||||
#include "CurvesGraphicsView.h"
|
||||
#include "DoubleSpinBoxTableItemDelegate.h"
|
||||
@ -19,6 +20,7 @@
|
||||
|
||||
class GLWidget;
|
||||
class FractoriumOptionsDialog;
|
||||
class FractoriumVariationsDialog;
|
||||
class FractoriumFinalRenderDialog;
|
||||
class FractoriumAboutDialog;
|
||||
class GLEmberControllerBase;
|
||||
@ -138,6 +140,7 @@ public slots:
|
||||
void OnActionFinalRender(bool checked);
|
||||
void OnFinalRenderClose(int result);
|
||||
void OnActionOptions(bool checked);
|
||||
void OnActionVariationsDialog(bool checked);
|
||||
|
||||
void OnActionAbout(bool checked);//Help.
|
||||
|
||||
@ -333,6 +336,8 @@ private:
|
||||
//Xforms Affine.
|
||||
|
||||
//Xforms Variations.
|
||||
void Filter();
|
||||
void Filter(const QString& text);
|
||||
|
||||
//Xforms Selection.
|
||||
void ClearXformsSelections();
|
||||
@ -364,6 +369,7 @@ private:
|
||||
QColorDialog* m_ColorDialog;
|
||||
FractoriumFinalRenderDialog* m_FinalRenderDialog;
|
||||
FractoriumOptionsDialog* m_OptionsDialog;
|
||||
FractoriumVariationsDialog* m_VarDialog;
|
||||
FractoriumAboutDialog* m_AboutDialog;
|
||||
|
||||
//Params.
|
||||
|
Reference in New Issue
Block a user