Method SetTemplate.
--HG-- branch : feature
This commit is contained in:
parent
10e1c2fbfa
commit
b9bd1b60e4
|
@ -361,7 +361,7 @@ void DialogEditLabel::ImportTemplate()
|
||||||
{
|
{
|
||||||
VLabelTemplate ltemplate;
|
VLabelTemplate ltemplate;
|
||||||
ltemplate.setXMLContent(VLabelTemplateConverter(fileName).Convert());
|
ltemplate.setXMLContent(VLabelTemplateConverter(fileName).Convert());
|
||||||
InitEditLines(ltemplate.ReadLines());
|
SetTemplate(ltemplate.ReadLines());
|
||||||
}
|
}
|
||||||
catch (VException &e)
|
catch (VException &e)
|
||||||
{
|
{
|
||||||
|
@ -516,7 +516,7 @@ QVector<VLabelTemplateLine> DialogEditLabel::GetTemplate() const
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogEditLabel::InitEditLines(const QVector<VLabelTemplateLine> &lines)
|
void DialogEditLabel::SetTemplate(const QVector<VLabelTemplateLine> &lines)
|
||||||
{
|
{
|
||||||
ui->listWidgetEdit->blockSignals(true);
|
ui->listWidgetEdit->blockSignals(true);
|
||||||
ui->listWidgetEdit->clear();
|
ui->listWidgetEdit->clear();
|
||||||
|
|
|
@ -50,6 +50,7 @@ public:
|
||||||
virtual ~DialogEditLabel();
|
virtual ~DialogEditLabel();
|
||||||
|
|
||||||
QVector<VLabelTemplateLine> GetTemplate() const;
|
QVector<VLabelTemplateLine> GetTemplate() const;
|
||||||
|
void SetTemplate(const QVector<VLabelTemplateLine> &lines);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void ShowLineDetails();
|
void ShowLineDetails();
|
||||||
|
@ -78,8 +79,6 @@ private:
|
||||||
|
|
||||||
QString ReplacePlaceholders(QString line) const;
|
QString ReplacePlaceholders(QString line) const;
|
||||||
|
|
||||||
|
|
||||||
void InitEditLines(const QVector<VLabelTemplateLine> &lines);
|
|
||||||
void InitPreviewLines(const QVector<VLabelTemplateLine> &lines);
|
void InitPreviewLines(const QVector<VLabelTemplateLine> &lines);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user