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

Object inspector has been fixed

This commit is contained in:
Arin Alexander
2016-11-01 14:56:06 +03:00
parent b8ecc89ff0
commit c623932afb
9 changed files with 75 additions and 20 deletions

View File

@@ -29,12 +29,27 @@
****************************************************************************/
#ifndef LRFONTPROPITEM_H
#define LRFONTPROPITEM_H
#include <QFontComboBox>
#include "lrobjectpropitem.h"
#include "lrboolpropitem.h"
#include "lrintpropitem.h"
namespace LimeReport{
class FontFamilyEditor : public QWidget{
Q_OBJECT
public:
FontFamilyEditor(QWidget* parent);
QFont currentFont();
void setFont(QFont font);
signals:
void editingFinished();
private:
QFontComboBox* m_valueEditor;
};
class FontFamilyPropItem : public ObjectPropItem
{
Q_OBJECT