Add a information message in the filename editor window

This commit is contained in:
lupoDharkael
2017-07-25 12:51:02 +02:00
parent dc005f6cf0
commit abedbdc749
4 changed files with 35 additions and 13 deletions

View File

@@ -22,6 +22,7 @@
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QLineEdit>
#include <QLabel>
#include <QPushButton>
FileNameEditor::FileNameEditor(QWidget *parent) : QGroupBox(parent) {
@@ -31,6 +32,7 @@ FileNameEditor::FileNameEditor(QWidget *parent) : QGroupBox(parent) {
void FileNameEditor::initLayout() {
m_layout = new QVBoxLayout(this);
m_layout->addWidget(new QLabel(tr("Edit the name of your captures:"), this));
m_layout->addWidget(m_helperButtons);
m_layout->addWidget(m_nameEditor);
m_layout->addWidget(m_outputLabel);