QList is a class in Qt that implements a list, providing fast index-access, as well as fast insertions and removals of elements.
-1
votes
1answer
20 views
Using QList as the input for QwtPlotCurves setSamples
I have two QList (XList, YList) which saves the dynamic data. I want to use these as the input of the QwtPlotCurves by setSamples. After I check the documentation:
void setSamples (const double ...
0
votes
2answers
46 views
QObject set QList as parent using setParent()
I'm trying to use QObject tree delete mechanism to delete the list and all QObjects that are stored in the list. QT is still my very week area...
QList<QObject*>* list = new ...
0
votes
1answer
45 views
QSetting<data type> for a QList
I have a QList of some non-primitive data type, say
QList <DockWidget*> tmp;
I want to store this whole list into settings, for writing and reloading, so that i don't lose my settings on ...
0
votes
1answer
72 views
QT how to use QTableView to display a QMap within a QList
I am having a QList as follow:
QList< QMap<QString, QString> > x;
for example:
table(1) <name<name(1),ABC> >
table(1) <age<age(1),10> >
I would like to have ...
0
votes
2answers
74 views
Qt: c++: how to “return” QList from function from a class to my “MainWindow.cpp” [closed]
I am creating a QList in a function "B" in class "A.cpp". I would like to return this x to my MainWindow.cpp by writing a return statement in my "A.cpp" as follow:
QList< QMap<QString, ...
0
votes
2answers
54 views
Qt QList C3892: cannot assign to a variable that is const
I have const correctness issue with QList.
I have a method getValue whose signature i cannot change returning const double and here
double vs = MinInput->getValue(0, 0);
vs is const.
I would ...
0
votes
1answer
66 views
C++ QList const correctness [duplicate]
I would like to fill in a QList<double> with const double values.
These const double are returned by a method which i am not to change.
How to do it simply ?
0
votes
1answer
69 views
QList of Custom Objects
I am trying to create a QList of custom objects, but am unable to do so. The compilation error I receive when trying to do so is:
error: symbol(s) not found for architecture x86_64 (file not found)
...
-1
votes
1answer
49 views
Segmentation fault with a element of QList
In my application I have a list of pointer to QFile objects:
QList<QFile*> files
This function adds the elements on the list:
void MumuServer::openFiles(){
QDir ...
0
votes
1answer
27 views
Moving an object from one QList to another
I have two arrays that holds active and inactive QWebPage respectively, that is, I want to limit the maximum running QWebPages, so I did this,
I use two QList object,
QList<QWebPage*> pages; ...
0
votes
1answer
86 views
C++ Qt memory allocation exception with QList
How can this ever happen that this throws an exception
for(int h = 0 ; h < listOne.count() ; ++h) {
delete[] listOne[h];
}
with QList listOne ? I delete float* arrays iterating ...
0
votes
3answers
71 views
Feed a QList with another
hi i'm trying to send a QList as a parameter to another class but for some reason i got a read access violation...
CompareTimeChannel.h
class CompareTimeChannel : public IDataChannel
public:
...
0
votes
1answer
30 views
Error with QMutableListIterator
After appending an item to a QList which is pointed to by a QMutableListIterator, I find out the next value of the iterator points outside the list.
Or can't I point the iterator to any where in the ...
4
votes
3answers
237 views
QList doesn't have resize method?
I just noticed that QList doesn't have a resize method, while QVector, for example, has one. Why is this? And is there an equivalent function?
0
votes
1answer
244 views
QML SectionScroller and QList<QObject*>
I use QList<QObject*> as a model in my app. As there might be a lot of elements, I decided to use SectionScroller. When I try to scroll using the SectionScroller I'm getting a
Error: Unable to ...
1
vote
1answer
95 views
qt serialize qlist of pointers
I'm implementing a game.
I have a map, divided into cells that describe the terrain map. Each cell should be an instance of the class terrain. I need to serialize this map and the file has to be as ...
1
vote
3answers
196 views
Remove duplicate object from QList
I have a QList<MyData>, where MyData have 2 member, int id (unique) and QString name. I want to remove all duplicate entries based on name, and that entry must the highest id between other ...
1
vote
5answers
454 views
Accessing C++ QLists from QML
If I've got a list of things in C++, how do I expose that to QML (in Qt5 / QtQuick 2)? It seems like QML can only understand QObject-derived classes, which is an issue because QObjects can't be put in ...
0
votes
1answer
156 views
List of string pairs in Qt
Is there any list-like container that can contain two QStrings per entry?
QList<QString> can only contain one QString perentry, but I need something like QList<QString, QString>, so when ...
0
votes
2answers
58 views
QList and MyClass undeclared identifier
I have weird problem with Qt 4.
I'm trying to make QList of MyClass, but it says MyClass: undeclared identifier.
I'm using it in global objects.. here's code and let me know what I'm doing wrong.
...
0
votes
1answer
115 views
'&' : illegal operation on bound member function expression
Just getting into QT, and I'm attempting to create an array of LineEdit text boxes.
error: C2276: '&' : illegal operation on bound member function expression
on the following line:
...
0
votes
1answer
396 views
Issue with QListview with custom model using qabstractlistmodel
Trying to implement a custom model for my qlistview. I've been reading the links of past posts similar to to mine but I haven't been able to get it to work.
I wanted to list my my object that ...
1
vote
1answer
145 views
QList: Out of memory
I have a graphical application written in Qt for embedded linux. Part of this application is to update a display screen every 250 ms. However, after about 8-10 hours the application crashes with a ...
0
votes
1answer
197 views
QList index out of range
Using a timer I call the slot checkBookings() repeatedly.
I am able to compile and run the program, but it crashes when executing the above FOR loop.
Error:"ASSERT failure in QList::at: "index out ...
0
votes
1answer
273 views
Walk Directory recursively issue
I am trying to walk a directory recursively and modify its contents,that modification should be done for all files and files of sub directories.
void EncryptMountedFolder(QString DirPath)
{
...
0
votes
0answers
134 views
Qml not reading returned C++ list
I have a QML ListView using a C++ QList model defined using: setContextProperty.
rootContext->setContextProperty("myModel", QVariant::fromValue(shopModel.dataList));
I have also created c++ a ...
0
votes
1answer
100 views
Qt - How to Draw an Icon Image to a QListWidgetItem
I have QListWidget, in that I had added the items. i had made the QListWidgetItems to scroll from right to left in a QWidget. Now i want to add a Icon image before every item that is Scrolling in the ...
1
vote
1answer
577 views
Remove elements from QList of pointers
I have a QList variable. How can I erase all the elements starting from an X index and removing all the subsequents N elements taking care of freeing also the memory?
0
votes
1answer
278 views
Qt QList and delete
I have a QList with pointers to objects with class type Model. I would like to delete appropriately this QList after it has being used. I know Qt philosophy is to avoid C-style memory management. How ...
1
vote
1answer
231 views
Init QList<MyStruct> as static class member gives LNK2001 error
This is best explained by the code itself. I want to use a QList<MyStruct> as a static member, but get a linker error 2001 (LNK2001). The code is in the same order in file MyClass.h
struct ...
0
votes
4answers
255 views
C++ QList in if statement, what is default value?
I find some code sample with these oddl lines
QList<TDataXml *> *newXMLData = input->getValue<QList<TDataXml *>>();
if(newXMLData)
{
// do things
}
I dont ...
3
votes
3answers
500 views
Printing Qt data structures (QList, QString, etc.) in XCode 3.xx GDB
I am trying to debug some Qt containers in XCode and the results I get back from GDB are not useful:
print l1
$1 = (QSharedPointer<QList<SNAPSHOT> > &) @0x102780650: {
...
0
votes
2answers
494 views
Qt crashes when using QList (heap corruption)
I've built Qt from sources with MSVC2008 as it was recommended to avoid any incompatibility issues. I'm having a problem though when using Qt functions that return QList objects.
...
0
votes
1answer
677 views
Qt setHorizontalHeaderLabels for tableWidget
How would I go about using the setHorizontalHeaderLabels property of my tableWidget to specify names for my columns as opposed to numbers? I want to keep my rows as numbers, but change my columns to ...
0
votes
1answer
384 views
How to make QList<Type*> work with indexOf() and custom operator==()?
Given the following code:
QList<Vertex*> _vertices; //this gets filled
//at some other point i want to check if there's already
//a vertex with the same payload inside the list
Vertex* v = new ...
0
votes
2answers
310 views
Qt QList not working as expected
I am building a QList<QList<double>> * the following way, to be returned in function randomPoint():
QList<QList<double>> *solverMethod::randomPoint(double* bottom_, double* ...
0
votes
2answers
185 views
QList for touch-points not being created, “A data abort exception has occurred”
I am trying to get touch inputs for my program targeting an N8 (and a C7), and I am not able to create a QList for keeping touchpoints using QTouchEvent::touchPoints(). The program crashes with the ...
-2
votes
1answer
259 views
no match for 'operator=' in '* __result = * __first'
I'm trying to copy a QList in a std::vector this is my code:
std::copy(_param_31.listJobs->list_USCOREjobs.begin(),
_param_31.listJobs->list_USCOREjobs.end(),
...
0
votes
1answer
136 views
Reference QList Inherited from Derived Class
If have a class, Book, that just inherited QList< char >, I am wondering if it is possible to reference the QList from within Book?
For example, if I want to iterate through element in the QList, ...
3
votes
1answer
142 views
Input values into custom class with “<<”
I am new to C++, and I am trying to figure out how to do the following:
I have a class that holds a QList. I am trying to populate the QList as demonstrated below. I am wondering how would I achieve ...
1
vote
2answers
1k views
Can two threads read from the same QList at the same time?
Pretty new to threading and I have this QList that the threads share between them. They all have their own space that they can work on, and the GUI (the model/view) access this list constantly. I then ...
0
votes
0answers
352 views
Qt QList<double> not filled properly
With Qt, I am filling a QList with double entered by user in a QTableWidget. I iterate through the items in first line of widget. n is the number of parameters to add in QList, read from a QLineEdit.
...
2
votes
1answer
752 views
Nested QMap and QList won't let me append/push_back
I am trying to utilize a nested QList:
QMap<int, QMap<QString, QList<int> > > teamGames;
for (int team1 = 1; team1 <= TOTAL_TEAMS; ++team1) {
...
0
votes
1answer
582 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 ...
8
votes
3answers
3k 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 ...
0
votes
1answer
871 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
752 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 ...
1
vote
1answer
498 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> ...
0
votes
2answers
297 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
348 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 ...


