mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-09 05:25:26 +00:00
44 lines
908 B
C++
44 lines
908 B
C++
|
|
#ifndef GRAPHOPTIONSWIDGET_H
|
|
#define GRAPHOPTIONSWIDGET_H
|
|
|
|
#include <QDialog>
|
|
#include <QPushButton>
|
|
#include <memory>
|
|
|
|
#include "core/Cutter.h"
|
|
|
|
class PreferencesDialog;
|
|
|
|
namespace Ui {
|
|
class GraphOptionsWidget;
|
|
}
|
|
|
|
class GraphOptionsWidget : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GraphOptionsWidget(PreferencesDialog *dialog);
|
|
~GraphOptionsWidget();
|
|
private:
|
|
std::unique_ptr<Ui::GraphOptionsWidget> ui;
|
|
|
|
void triggerOptionsChanged();
|
|
|
|
private slots:
|
|
void updateOptionsFromVars();
|
|
|
|
void on_maxColsSpinBox_valueChanged(int value);
|
|
void on_minFontSizeSpinBox_valueChanged(int value);
|
|
void on_graphOffsetCheckBox_toggled(bool checked);
|
|
|
|
void checkTransparentStateChanged(int checked);
|
|
void bitmapGraphScaleValueChanged(double value);
|
|
void checkGraphBlockEntryOffsetChanged(bool checked);
|
|
void layoutSpacingChanged();
|
|
};
|
|
|
|
|
|
#endif //GRAPHOPTIONSWIDGET_H
|