RedPanda-CPP/RedPandaIDE/settingsdialog/editorgeneralwidget.h

32 lines
666 B
C
Raw Normal View History

2021-06-07 11:02:03 +08:00
#ifndef EDITORGENERALWIDGET_H
#define EDITORGENERALWIDGET_H
#include <QWidget>
#include "settingswidget.h"
namespace Ui {
class editorgeneralwidget;
}
class EditorGeneralWidget : public SettingsWidget
{
Q_OBJECT
public:
explicit EditorGeneralWidget(const QString& name, const QString& group, QWidget *parent = nullptr);
~EditorGeneralWidget();
private:
Ui::editorgeneralwidget *ui;
// SettingsWidget interface
protected:
void doLoad() override;
void doSave() override;
private slots:
void on_chkCaretUseTextColor_stateChanged(int arg1);
void on_chkShowIndentLines_stateChanged(int arg1);
2021-06-07 11:02:03 +08:00
};
#endif // EDITORGENERALWIDGET_H