I create a small app in Qt Creator. I wanted this code in my QDialog
constructor, but it doesn't work.
std::string wyniki = "apg -q -n " + n + " -m " + m + " -x " + sx + " -a " + a;
if(exclude != "") wyniki+=" -E " + exclude.toUtf8().constData();
if(a==1)wyniki += " -M " + mode;
std::string result = exec(wyniki.c_str());
ui->plainTextEdit->setPlainText(qstr(result));
Compiler messages:
../APG-GUI/scores.cpp: In constructor 'Scores::Scores(QWidget*, int, int, int, int, QString, QString)':
../APG-GUI/scores.cpp:36:45: error: invalid operands of types 'const char*' and 'const char [5]' to binary 'operator+'
std::string wyniki = "apg -q -n " + n + " -m " + m + " -x " + sx + " -a " + a;
^
../APG-GUI/scores.cpp:37:67: error: invalid operands of types 'const char [5]' and 'const char*' to binary 'operator+'
if(exclude != "") wyniki+=" -E " + exclude.toUtf8().constData();
^
../APG-GUI/scores.cpp:38:20: error: no match for 'operator+=' (operand types are 'std::string {aka std::basic_string<char>}' and 'const QString')
if(a==1)wyniki += " -M " + mode;
^
../APG-GUI/scores.cpp:38:20: note: candidates are:
In file included from /usr/include/c++/4.9/string:52:0,
from /opt/Qt/5.3/gcc_64/include/QtCore/qstring.h:50,
from /opt/Qt/5.3/gcc_64/include/QtCore/qobject.h:49,
from /opt/Qt/5.3/gcc_64/include/QtWidgets/qwidget.h:46,
from /opt/Qt/5.3/gcc_64/include/QtWidgets/qdialog.h:45,
from /opt/Qt/5.3/gcc_64/include/QtWidgets/QDialog:1,
from ../APG-GUI/scores.h:4,
from ../APG-GUI/scores.cpp:1:
/usr/include/c++/4.9/bits/basic_string.h:949:7: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator+=(const std::basic_string<_CharT, _Traits, _Alloc>&) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]
operator+=(const basic_string& __str)
^
/usr/include/c++/4.9/bits/basic_string.h:949:7: note: no known conversion for argument 1 from 'const QString' to 'const std::basic_string<char>&'
/usr/include/c++/4.9/bits/basic_string.h:958:7: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator+=(const _CharT*) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]
operator+=(const _CharT* __s)
^
/usr/include/c++/4.9/bits/basic_string.h:958:7: note: no known conversion for argument 1 from 'const QString' to 'const char*'
/usr/include/c++/4.9/bits/basic_string.h:967:7: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator+=(_CharT) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]
operator+=(_CharT __c)
^
/usr/include/c++/4.9/bits/basic_string.h:967:7: note: no known conversion for argument 1 from 'const QString' to 'char'
../APG-GUI/scores.cpp:39:45: error: no matching function for call to 'Scores::exec(const char*)'
std::string result = exec(wyniki.c_str());
^
../APG-GUI/scores.cpp:39:45: note: candidate is:
In file included from /opt/Qt/5.3/gcc_64/include/QtWidgets/QDialog:1:0,
from ../APG-GUI/scores.h:4,
from ../APG-GUI/scores.cpp:1:
/opt/Qt/5.3/gcc_64/include/QtWidgets/qdialog.h:93:17: note: virtual int QDialog::exec()
virtual int exec();
^
/opt/Qt/5.3/gcc_64/include/QtWidgets/qdialog.h:93:17: note: candidate expects 0 arguments, 1 provided
../APG-GUI/scores.cpp:40:48: error: 'qstr' was not declared in this scope
ui->plainTextEdit->setPlainText(qstr(result));
I exactly do not know reasons of that malfunction. Why I can't use =+
operator? That's built-into the C++! Everything I have (I think I have) propely declared and checked that to times. I am beginner to Qt, so maybe I did something wrong. I was looking for solution in Internet, but, unfortunately, didn't find anything according to my problem. Below I post header's I use and variables declarations:
#include "scores.h"
#include "cstdio"
#include "ui_scores.h"
#include "cstdlib"
#include "iostream"
#include "string"
int n,m,sx,a;
QString mode, exclude;
My constructor code (which includes "bad" lines):
Scores::Scores(QWidget *parent, int nk, int mk, int xk, int ak, QString modesk, QString excludek) :
QDialog(parent),
ui(new Ui::Scores)
{
n = nk;
m = mk;
a = ak;
mode = modesk;
sx = xk;
exclude = excludek;
ui->setupUi(this);
std::string wyniki = std::string("apg -q -n ") + n + " -m " + m + " -x " + sx + " -a " + a; //badline
if(exclude != "") wyniki+=" -E " + exclude.toUtf8().constData(); //badline
if(a==1)wyniki += " -M " + mode; //badline
std::string result = exec(wyniki.c_str()); //badline
ui->plainTextEdit->setPlainText(qstr(result));
}