Tagged Questions
12
votes
5answers
10k views
How to convert QString to std::string?
I am trying to do something like this:
QString string;
// do things...
std::cout << string << std::endl;
but the code doesn't compile.
How to output the content of qstring into the ...
3
votes
2answers
321 views
Format a Number to a specific QString format
I have a question about formatting a decimal number to a certain QString format. Basically, I have an input box in my program that can take any values. I want it to translate the value in this box ...
3
votes
1answer
92 views
Output QVector3D to QString
I was surprised to learn that QVector3D does not have a built-in way of outputting the x, y, and z coordinates as a QString. I can write a simple function to do this, but I was wondering if there was ...
3
votes
2answers
222 views
Qt: How to subtract two QSet of QString in case insensitivity mode
I'm working on a logical problem using Qt.
I've got two QSets of QString:
QSet<QString> set1: [ "aaa", "BBB" ]
QSet<QString> set2: [ "aaa", "bbb", "ccc", "ddd" ]
I want to subtract set1 ...
3
votes
2answers
231 views
What would be a QString replacement?
For many reasons (low performance, high resource consumption, large shared library size, large executable sizes, and our low end platform) my team consider moving out of Qt.
As a part of this we ...
3
votes
2answers
1k views
QChar to wchar_t
I need to convert a QChar to a wchar_t
I've tried the following:
#include <cstdlib>
#include <QtGui/QApplication>
#include <iostream>
using namespace std;
int main(int argc, ...
3
votes
5answers
1k views
Qt UI for existing C++ project
I have already written a C++ program and I would like to write a GUI for it. I realize Qt is a wonderful tool, however, Qt has it's own classes, which make me quite confused. eg: instead of String, Qt ...
2
votes
2answers
101 views
QString and german umlauts
I am working with C++ and QT and have a problem with german umlauts. I have a QString like "wir sind müde" and want to change it to "wir sind müde" in order to show it correctly in a ...
2
votes
1answer
182 views
Is is possible to pass a QString to a QMessageBox?
I'm working on QT application where the user will enter their information into several QLineEdits. They then will click son a Submit button. I would like a QMessageBox to appear asking if they would ...
2
votes
2answers
245 views
Using both std::string and QString interchangeably
I use Qt extensively in a software system I'm working on for graphical and GUI components. However, for most internal algorithms and processing of data Qt plays a smaller role.
I'll often run into ...
2
votes
2answers
301 views
QString errors when copying into QMap. Scope issue?
I'm currently stuck with regards to segfaults (sometimes sigabrts due to bad mallocs) whenever I try add a QString to a QMap as key inside the destructor of QWidget class I have - I think it has ...
2
votes
3answers
352 views
Class that inherits std::ostream and operator<< for QString
Hell ! I'm trying to make a class that would help me with outputting text to stdout ... Anyway, everything is working, except for one thing. Let's say that I've create object of my class called out. ...
2
votes
2answers
1k views
Parse and remove part of a QString
I want to parse some kind (or pure) XML code from a QString.
My QString is like:
<a>cat</a>My cat is very nice.
I want to obtain 2 strings:
cat, and My Cat is very nice.
I think a ...
1
vote
3answers
86 views
How to convert a pointer value to QString?
for debug purposes I often output pointer values (mostly this) to qDebug:
qDebug("pointer of current object = 0x%08x",this);, using "%08x" as format string and simply passing this as a parameter.
...
1
vote
3answers
67 views
restore runtime unicode strings
I'm building an application that receives runtime strings with encoded unicode via tcp, an example string would be "\u7cfb\u8eca\u4e21\uff1a\u6771\u5317 ...". I have the following but unfortunately I ...
1
vote
2answers
107 views
Memory issues with QTextEdit
I'm trying to use a QTextEdit to output a QstringList
e.g
void CTextBox::AddText(QStringList list, QStringList animList)
{
//CGraphics* graphics = CGraphics::GetInst();
//QStandardItem ...
1
vote
1answer
102 views
Convert WCHAR to QString in Qt
Convert WCHAR to QString in Qt.
Please help me to implement it to complete this convertion.
1
vote
1answer
2k views
Convert std::string to QString
I've got an std::string content that I know contains UTF-8 data. I want to convert it to a QString. How do I do that, avoiding the from-ASCII conversion in Qt?
1
vote
1answer
225 views
How to write a QString on several lines?
Do you have a better way to do that ?
QString str("I am a long long long"
+ QString("long long long")
+ QString("long QString") );
I don't like all this QString.
1
vote
2answers
343 views
How to convert from BYTE* to QString?
I have a DATA_BLOB structure but I need to convert it to QString. How can I do this?
1
vote
2answers
1k views
Qt QString cloning Segmentation Fault
I'm building my first Qt app using Qt Creator, and everything was going fine until I started getting a strange SIGSEGV from a line apparently harmless.
This is the error:
Program received signal ...
0
votes
1answer
49 views
How to read string as XML with QDomDocument object in QT
I am receiving string as a XML document with this function:
void HttpWindow::replyFinished(QNetworkReply *reply)
{
QString data = reply->readAll().trimmed();
bool ...
0
votes
2answers
129 views
QDateTime::fromString not accepting my QString?
I have a .txt file which is filled with lines like this below:
2011-03-03 03.33.13.222 4 2000 Information BUSINESS ...etc blabla
2011-03-03 03.33.13.333 4 2000 Information BUSINESS ...etc ...
0
votes
4answers
332 views
Concatenating two QStrings with an integer
I want to do something like this in C++ using Qt:
int i = 5;
QString directory = ":/karim/pic" + i + ".jpg";
where + means I want to concatenate the strings and the integer (that is, directory ...
0
votes
1answer
123 views
Qt based addSlashes version equivalent
I just wrote a Qt based php addSlashes function like, I wont to see any improvements, suggestions to it. I am planing to use this function to fill a file with hundred of insert query, to be more ...
0
votes
2answers
212 views
How to convert unicode QString to an std::string?
I need convert a QString to an std::string. However, if this string contains unicode symbols, I get ????. How can I convert the string with the proper encoding?
Thank you.
0
votes
3answers
525 views
How to convert a string representing decimal number in exponential form to float in Qt?
I have some decimal numbers in a text file represented in exponential form Eg: 144.2e-3. I want to store the values in float. In qt it returns "0" when i directly use the "number.toFloat()" method. ...
0
votes
2answers
237 views
QString, remove labels and content?
message.Text() is a QString.
I want to remove some text.
The text can be:
Normal: "This is a text"
With a label: "<label1>something</label1>This is a text"
First, I find if the text ...
0
votes
1answer
356 views
Opening a file from a Qt String
I am making a Qt application and I have a button to open a file, which is connected to a custom slot. This is the slot code so far:
void MainWindow::file_dialog() {
const QFileDialog *fd;
...
0
votes
2answers
616 views
Why have QString in struct sometimes a bad-ptr?
I've got an complicated error. The software send PrintParamters to a Printer a couple of times. At a certain moment all QStrings of the Parameter Struct are broken (bad ptr)
Is there an general issue ...
-2
votes
3answers
316 views
Desperate QString issue
I have been spending hours on solving the problem, searched doc and google, but cant find a valid solution
int a=0;
while (a<2)
{
//infos.stops is point to one array, called abc[10]
...