blob: d3548af6b287d5570cbd5456a8f7e82e8c33450b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef STYLECONFIGWIDGET_H
#define STYLECONFIGWIDGET_H
#include "plugins/genericplugin.h"
#include "customconfigwidgetplugin.h"
#include "guiSQLiteStudio_global.h"
class GUI_API_EXPORT StyleConfigWidget : public GenericPlugin, public CustomConfigWidgetPlugin
{
public:
StyleConfigWidget();
bool isConfigForWidget(CfgEntry* key, QWidget* widget);
void applyConfigToWidget(CfgEntry* key, QWidget* widget, const QVariant& value);
QVariant getWidgetConfigValue(QWidget* widget, bool& ok);
const char* getModifiedNotifier() const;
QString getFilterString(QWidget* widget) const;
};
#endif // STYLECONFIGWIDGET_H
|