mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-25 00:54:39 +03:00
Font editors has been fixed
This commit is contained in:
parent
449c9a47bd
commit
90ec21d2ab
@ -158,7 +158,6 @@ void FontEditorWidgetForPage::slotFontAttribsChanged(bool value)
|
|||||||
#ifdef HAVE_REPORT_DESIGNER
|
#ifdef HAVE_REPORT_DESIGNER
|
||||||
void FontEditorWidgetForDesigner::initEditor()
|
void FontEditorWidgetForDesigner::initEditor()
|
||||||
{
|
{
|
||||||
FontEditorWidget::initEditor();
|
|
||||||
connect(m_reportEditor,SIGNAL(itemPropertyChanged(QString,QString,QVariant,QVariant)),
|
connect(m_reportEditor,SIGNAL(itemPropertyChanged(QString,QString,QVariant,QVariant)),
|
||||||
this,SLOT(slotPropertyChanged(QString,QString,QVariant,QVariant)));
|
this,SLOT(slotPropertyChanged(QString,QString,QVariant,QVariant)));
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
void setItemEvent(BaseDesignIntf *item);
|
void setItemEvent(BaseDesignIntf *item);
|
||||||
QFontComboBox* fontNameEditor(){return m_fontNameEditor;}
|
QFontComboBox* fontNameEditor(){return m_fontNameEditor;}
|
||||||
virtual void initEditor();
|
void initEditor();
|
||||||
protected slots:
|
protected slots:
|
||||||
virtual void slotFontChanged(const QFont&);
|
virtual void slotFontChanged(const QFont&);
|
||||||
virtual void slotFontSizeChanged(const QString& value);
|
virtual void slotFontSizeChanged(const QString& value);
|
||||||
@ -94,7 +94,7 @@ class FontEditorWidgetForDesigner : public FontEditorWidget{
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit FontEditorWidgetForDesigner(ReportDesignWidget* reportEditor, const QString &title, QWidget *parent = 0)
|
explicit FontEditorWidgetForDesigner(ReportDesignWidget* reportEditor, const QString &title, QWidget *parent = 0)
|
||||||
: FontEditorWidget(title, parent), m_reportEditor(reportEditor){}
|
: FontEditorWidget(title, parent), m_reportEditor(reportEditor){initEditor();}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void initEditor();
|
void initEditor();
|
||||||
|
@ -197,7 +197,6 @@ void TextAlignmentEditorWidgetForPage::slotTextVAttribsChanged(bool value)
|
|||||||
#ifdef HAVE_REPORT_DESIGNER
|
#ifdef HAVE_REPORT_DESIGNER
|
||||||
void TextAlignmentEditorWidgetForDesigner::initEditor()
|
void TextAlignmentEditorWidgetForDesigner::initEditor()
|
||||||
{
|
{
|
||||||
TextAlignmentEditorWidget::initEditor();
|
|
||||||
connect(m_reportEditor,SIGNAL(itemPropertyChanged(QString,QString,QVariant,QVariant)),
|
connect(m_reportEditor,SIGNAL(itemPropertyChanged(QString,QString,QVariant,QVariant)),
|
||||||
this,SLOT(slotPropertyChanged(QString,QString,QVariant,QVariant)));
|
this,SLOT(slotPropertyChanged(QString,QString,QVariant,QVariant)));
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ public:
|
|||||||
int flag() const;
|
int flag() const;
|
||||||
protected:
|
protected:
|
||||||
void setItemEvent(BaseDesignIntf *item);
|
void setItemEvent(BaseDesignIntf *item);
|
||||||
virtual void initEditor();
|
void initEditor();
|
||||||
bool m_textAttibutesIsChanging;
|
bool m_textAttibutesIsChanging;
|
||||||
private:
|
private:
|
||||||
void updateValues(const Qt::Alignment& align);
|
void updateValues(const Qt::Alignment& align);
|
||||||
@ -84,7 +84,7 @@ class TextAlignmentEditorWidgetForDesigner: public TextAlignmentEditorWidget{
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
TextAlignmentEditorWidgetForDesigner(ReportDesignWidget* reportEditor, const QString &title, QWidget *parent = 0)
|
TextAlignmentEditorWidgetForDesigner(ReportDesignWidget* reportEditor, const QString &title, QWidget *parent = 0)
|
||||||
:TextAlignmentEditorWidget(title, parent), m_reportEditor(reportEditor){}
|
:TextAlignmentEditorWidget(title, parent), m_reportEditor(reportEditor){initEditor();}
|
||||||
protected:
|
protected:
|
||||||
void initEditor();
|
void initEditor();
|
||||||
protected slots:
|
protected slots:
|
||||||
|
@ -971,7 +971,7 @@ void TextItem::setTextItemFont(QFont value)
|
|||||||
if (font()!=value){
|
if (font()!=value){
|
||||||
QFont oldValue = font();
|
QFont oldValue = font();
|
||||||
setFont(value);
|
setFont(value);
|
||||||
update();
|
if (!isLoading()) update();
|
||||||
notify("font",oldValue,value);
|
notify("font",oldValue,value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -164,8 +164,10 @@ QFont BaseDesignIntf::font() const
|
|||||||
|
|
||||||
void BaseDesignIntf::setFont(QFont &font)
|
void BaseDesignIntf::setFont(QFont &font)
|
||||||
{
|
{
|
||||||
|
if (m_font != font){
|
||||||
m_font = font;
|
m_font = font;
|
||||||
update();
|
if (!isLoading()) update();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
qreal BaseDesignIntf::width() const
|
qreal BaseDesignIntf::width() const
|
||||||
|
@ -480,7 +480,7 @@ void ReportEnginePrivate::printToFile(const QString &fileName)
|
|||||||
|
|
||||||
bool ReportEnginePrivate::printToPDF(const QString &fileName)
|
bool ReportEnginePrivate::printToPDF(const QString &fileName)
|
||||||
{
|
{
|
||||||
return exportReport("PDF");
|
return exportReport("PDF", fileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ReportEnginePrivate::exportReport(QString exporterName, const QString &fileName, const QMap<QString, QVariant> ¶ms)
|
bool ReportEnginePrivate::exportReport(QString exporterName, const QString &fileName, const QMap<QString, QVariant> ¶ms)
|
||||||
|
Loading…
Reference in New Issue
Block a user