2017-10-12 21:27:50 +00:00
|
|
|
#ifndef AUTOCOMPLETESETTINGSEDITOR_H
|
|
|
|
#define AUTOCOMPLETESETTINGSEDITOR_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
//#include "ui_autocompletesettingsform.h"
|
|
|
|
|
2022-02-17 14:22:14 +00:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include <qtmaterialautocomplete.h>
|
2017-10-12 21:27:50 +00:00
|
|
|
#include "lib/qtmaterialoverlaywidget.h"
|
|
|
|
|
2022-02-17 14:22:14 +00:00
|
|
|
using namespace md;
|
2017-10-12 21:27:50 +00:00
|
|
|
|
|
|
|
class AutoCompleteSettingsEditor : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit AutoCompleteSettingsEditor(QWidget *parent = 0);
|
|
|
|
~AutoCompleteSettingsEditor();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void setupForm();
|
|
|
|
void updateWidget();
|
|
|
|
void selectColor();
|
|
|
|
|
|
|
|
private:
|
|
|
|
//Ui::AutoCompleteSettingsForm *const ui;
|
2022-02-17 14:22:14 +00:00
|
|
|
AutoComplete *const m_autocomplete;
|
2017-10-12 21:27:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // AUTOCOMPLETESETTINGSEDITOR_H
|