0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 16:39:07 +03:00

ObjectInspector for dark themes has been fixed

This commit is contained in:
Arin Alexander
2016-10-19 17:33:26 +03:00
parent 2768d13301
commit b8ecc89ff0
3 changed files with 66 additions and 6 deletions

View File

@@ -31,8 +31,22 @@
#define LRINTPROPITEM_H
#include "lrobjectpropitem.h"
#include <QSpinBox>
namespace LimeReport {
class SpinBoxEditor : public QWidget{
Q_OBJECT
public:
SpinBoxEditor(QWidget* parent);
int value();
void setValue(int value);
signals:
void editingFinished();
private:
QSpinBox* m_valueEditor;
};
class IntPropItem : public ObjectPropItem
{
Q_OBJECT