Tagged Questions
The qlist tag has no wiki summary.
6
votes
3answers
111 views
How can I remove elements from a QList while iterating over it using foreach?
I'm new to Qt and trying to learn the idioms.
The foreach documentation says:
Qt automatically takes a copy of the container when it enters a foreach loop. If you modify the container as you are ...
6
votes
2answers
205 views
When does a deep copy happen to a QList?
In a class I'm working on, I am juggling several QLists. I have heard that Qt tries not to make deep copies of lists whenever possible. From what I understand, that means that no deep copy happens ...
3
votes
2answers
245 views
Qt - QList const correctness
A QList<T *> can't easily be const-correct. Consider the function
void f(QList<T *> list)
{
list[0]->constFunction();
}
I can change f to
void f(QList<const T *> list)
...
3
votes
5answers
1k views
dynamic memory in QList
I don't have much experience with QT and this problem came out today.
QList<int> memList;
const int large = 100000;
getchar();
for (int i=0; i<large; i++)
{
memList.append(i);
}
cout ...
2
votes
1answer
352 views
Qt - QList children - struct or custom classes derived from QObject?
I'm currently working on Qt application on Symbian platform. Application has an sqlite database and initial data is populated from txt files.
I'm implementing online update from data that comes in ...
2
votes
2answers
574 views
QT: Store QTextStream in QList
I'm trying to open multiple files simultaneously (random number of files) and store their textstreams in qlist for simple using in other code:
QList<QTextStream> files;
QList<QString> ...
2
votes
2answers
2k views
Save QList<int> to QSettings
I want to save a QList<int> to my QSettings without looping through it.
I know that I could use writeArray() and a loop to save all items or to write the QList to a QByteArray and save this but ...
2
votes
3answers
1k views
Pointer to QList - at() vs. [] operator
I'm having problem with understanding some of QList behavior.
#include <QList>
#include <iostream>
using namespace std;
int main()
{
QList<double> *myList;
myList = new ...
1
vote
1answer
111 views
call of overloaded 'qHash(const double&)' is ambiguous
I get this error when I try to convert a QList to a QSet.
QList<double> x_pts;
x_pts << 4.1;
x_pts << 2.2;
x_pts << 2.2;
x_pts << 1.3;
qSort(x_pts);
QSet<double> ...
1
vote
1answer
146 views
Qt QMap.insert() failing
I have a levelObjects object that's a QList of QVariants of QMaps:
QList< QVariant > levelObjects;
Later on, when I try to change the value of something in one of the QMaps, it doesn't seem ...
1
vote
1answer
37 views
Error by creating a list of QGraphicsItems
I have a QGraphicsScene on which I would like to draw some special curves. For that I made a class in which I define these special curves as a new QGraphicsItem:
#include < QGraphicsItem>
...
1
vote
4answers
360 views
QList of user templated defined structs
Can I define a QList such that it holds a collection of templated structs, with each struct defined on different type ??
Consider:
template<typename T>struct AA
{
T value;
}
Can I declare ...
1
vote
4answers
281 views
C++ QList inheritance custom method problem
I am creating a custom QList of type Account* called AccountList through inheritance.
My interface declaration for AccountList is as follows:
class Client
{
public:
Client(QString ...
1
vote
3answers
1k views
Appending pointers to QList
I need to insert pointers of classes (inherited from QObject) into a QList. I know that the following syntax can be used:
.h
QList<MyObject*> list;
.cpp
list.append(new MyObject("first", ...
1
vote
1answer
156 views
App crashes when QList grows too large
I make an application which has to store a lot of data in memory to improve calculation performance.
It is a hierarchy of lists and objects where the top object is a QList<myObject*>. When ...
1
vote
2answers
1k views
QList memory deallocation
I'm trying to free memory after using QList, but it doesn't seem to work properly.
Here's my code:
QList<double> * myList;
myList = new QList<double>;
double myNumber;
cout << ...
1
vote
2answers
2k views
Saving QList<T> to a file?
I've got a QList of QLineEdit*'s
QList<QLineEdit*> example;
Example will hold 100 items of lineEdits.
When I try to save or load to a file, it fails to save or load the QList properly, if ...
0
votes
0answers
37 views
Can't write a Qlist to a file using QDataStream
I am trying to develop a Qt App using 4.7.3 which involves the writing of a QList to a flie.
My class is:
class Task
{
public:
QString ta, desc;
QTime ti;
QDate da;
int ...
0
votes
1answer
76 views
QListWidget Align Items Center
I am adding a list of strings to a QList Widget like this:
myList.addItems( [ 'item1' , 'item2' , 'item3' ] )
By default the list aligns these to the left but I want to get them in the center of ...
0
votes
2answers
128 views
QList/QHash store abstract elements
I'd like to store in QHash elements that inherits from one class. So I've got:
class ImageInterface
{
public:
ImageInterface();
ImageInterface(const QString& path);
virtual QString ...
0
votes
2answers
107 views
Valgrind memory leak reported in QT list append
I am using a serializer in QT C++. It looks ok but valgrind (memcheck tool) is reporting a memory leak on this function.
Valgrind cmd: valgrind --tool=memcheck --leak-check=full
QDataStream ...
0
votes
0answers
91 views
Removing items from a QList of pointers
I have a QList of pointers to objects.
QList <MyObj*> mylist;
I add to the list as follows
mylist.append(new MyObj(1));
mylist.append(new MyObj(2));
So far so good.
So for exampple if I ...
0
votes
1answer
179 views
Deleting multiple rows in QTableView
While searching for clues on how i can delete multiple rows from QTableView i came across this function: remove selected rows from QTableView
Here is the code:-
QItemSelection selection( ...
0
votes
1answer
231 views
Using Qt: Invalid conversion from const void* to void* while using QList<Type *const>
I've been messing around with Qt and C++ for a while, but I've run into this error and can't seem to figure out why it crops up. There are a lot of other questions that have been answered out there ...
0
votes
1answer
126 views
QT MVC Help please
Okay, I have the following code:
QFileSystemModel *model = new QFileSystemModel;
model->setRootPath(QDir::currentPath());
model->setFilter(QDir::Files | ...
0
votes
3answers
162 views
Qt: Storing a custom object in a collection by value
Let's say I have this class:
class Bear
{
public:
Bear ();
Bear (Bear &other);
// ... methods
private:
BearInfo* m_pInfo;
};
Can I store Bear objects in a QList<Bear> by ...
0
votes
1answer
40 views
Make different lists from list
I use Qt and C++, I have a list (QList<int>)
list<<1<<3<<4<<5<<9<<22<<32<<45
I want to make this
If user enter 4 I want to make this;
...
0
votes
1answer
92 views
Store GMP/MPIR numbers in a QList
I am trying to write a program in C++ with QT4.7 and the MPIR library (v. 2.3.1).
During some calculations, I need to store a dynamic amount of mpz_t (the integer storage type) and want to use a ...
0
votes
1answer
91 views
QList of templated structures
Consider the following two structures:
template <typename T> struct duplet{
QString str;
T value;
}
struct MyObject{
QList<struct duplet> myList;
}
The compiler throws the ...
0
votes
2answers
98 views
what is an Equivalent to this line of code in c++ using the QT library ?
Given the declarations
class DBuffer
{
//...
};
typedef QList<DBuffer*> DBuffers;
QList<int> fds;
QMap<int, DBuffers> buffers;
what does the line of code in the function ...
0
votes
3answers
215 views
Objects added to QList lose all of their member data
I'm making a QList of a custom class called ControlIcon. I create the ControlIcons, and load them up with member variables, and then add them to the list. Here's the append code:
...
0
votes
4answers
643 views
Constant class members, assignment operator and QList
Please conform if I am correct and tell me whether there is a better solution:
I understand that objects with constant members like int const width; can not be handled by the synthetic assignment ...
0
votes
3answers
408 views
how to send QList<Object *> objects to another class?
hi
i'm trying to send a QList as a parameter to another class but for some reason i lose all it's content ...
(when i open the object with the debuger i see for objects...)
trying to send QList ...
0
votes
2answers
336 views
Element is removed from QList but static counter of existing objects doesn't decrease
I have question about removing element from QList.
"myclass.h":
class node2D : public QObject
{
Q_OBJECT
public:
node2D(){++s_NCount;};
~node2D(){--s_NCount;};
int ...
0
votes
2answers
471 views
Inheriting from a container with non-virtual destructor
I'm trying to use forward declarations and d-pointers to eliminate some include dependencies. Everything is working well, except that I have used XList typedefs for readability in many places (e.g: ...