2021-08-30 16:59:08 +08:00
|
|
|
#ifndef EDITORCODECOMPLETIONWIDGET_H
|
|
|
|
#define EDITORCODECOMPLETIONWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include "settingswidget.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class EditorCodeCompletionWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
class EditorCodeCompletionWidget : public SettingsWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit EditorCodeCompletionWidget(const QString& name, const QString& group, QWidget *parent = nullptr);
|
|
|
|
~EditorCodeCompletionWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::EditorCodeCompletionWidget *ui;
|
|
|
|
|
|
|
|
// SettingsWidget interface
|
|
|
|
protected:
|
|
|
|
void doLoad() override;
|
|
|
|
void doSave() override;
|
2021-09-30 11:20:43 +08:00
|
|
|
private slots:
|
|
|
|
void on_btnClearUsageData_clicked();
|
2021-08-30 16:59:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITORCODECOMPLETIONWIDGET_H
|