Insert fill circle into cell of QTableWidget
-
Hi,
Is posible insert circle into cell of QTableWidget? I need the size of the circle can be changed dynamically.
-
Hi,
Use a custom QStyledItemDelegate and do the drawing yourself in there.
-
@SGaist Thank you for your answer.
Sorry but I'm starting to use QT, could you give me an example? How would you insert it in the table?
-
See the Star Item Delegate Example.
-
There are too many classes to just paint a circle in a cell. There is no other way?
-
@juaniyoalm
Well you can also add the circle as an icon to the cell.
If you add blank text, the effect is similar.However, how big do u need the circle to be ?
It cannot be bigger than the cell height in any case.Update: this was just to answer if there was alternatives.
However, a delegate is far better for it.
-
You need one class: the delegate.
In this example they have two if you take the custom editor that you likely don't need.
-
Hi
Adding to SGaist . Its not as bad as it looks.
For a paint circle only delegate, you need very little code.#include <QStyledItemDelegate> #include <QPainter> class CircleDelegate: public QStyledItemDelegate { protected: void paint(QPainter* painter, const QStyleOptionViewItem& opt, const QModelIndex& index) const { // set brush to green if selected else blue ( not needed just for fun) if (opt.state & QStyle::State_Selected) { painter->setBrush(Qt::green); } else { painter->setBrush(Qt::blue); } // paint a circle int CircleSize=10; painter->drawEllipse(opt.rect.center(), CircleSize, CircleSize); } };
and you set it to the table by
ui->tableWidget->setItemDelegateForColumn(1, new CircleDelegate());
the 1 is the col where u want itYou will need to read over
http://doc.qt.io/qt-5/model-view-programming.html
mostly section Item roles
as to make circle dynamic in size, you can use
a Qt::UserRole and setData.
so the size comes from the model.
-
Just a couple of small addition to @mrjj 's code:
- you'll probably also need to reimplement
sizeHint()
to return a size appropriate to contain the circle. - blindly modifying the painter argument is risky. You should call
painter->save();
before setting the brush andpainter->restore();
after you finished the painting
- you'll probably also need to reimplement
-
Thank you, the solution is good for me!!! but I would like that the background of cells is fill too. This colour have to change too.
I thought about inserting a rectangle but I would need the circle to be located on top...
-
@juaniyoalm
Hi
Just use other paint methods like
painter->drawRect(opt.rect);
-
@mrjj Thank you so much!!
Okay, I have that solved.
Another question is that the size of each circle depends on a value that my mushroom class has. In my class I created a paint method but I do not know how to link that method with the delegate or what is the way to write the method.
-
@juaniyoalm
Hi, is the value in the model ?
The delegate can use values from model.
so the color and size of circle could come from model.
-
No, that value is in a c++class. I have to create a custom model... It's ok?? Or I can use a default model??
-
@juaniyoalm
You can use http://doc.qt.io/qt-5/qstandarditemmodel.html
if it is. dont have to be custom.
I though you already had a model ?
Also is this with a QTableWidget ?
(it uses a model already )
-
-
@juaniyoalm
Super. With view its much easier.
so you have to construct a model with the data
that comes from the class.
Did you make a qstandarditemmodel before ?
-
@mrjj
Yes, I did but without data class
-
@mrjj
Do you show me how to make??
-
@juaniyoalm
Hi
Please read about userRoles and setDatahttp://doc.qt.io/qt-5/model-view-programming.html
section Item rolesyou can simply put the color / size in user role, or you can have
it directly as an item in your model.
Both ways are fine.
Then delegate read the user role and use the data.
-
I read it and I have tried it but my problem is that size circle depends that value of class and colour of background another value of class. I don't know how do it...
-
@juaniyoalm
Hi
Well the delegate cannot go read into other external classes.
So you have to at some point take the values from the classes and
put into the model.
How often does those values change in the classes ?
-
The parameters will change very often. There will be hundreds of instances of the class and the values will change.
-
The problem is not in the number of instances but rather how you access them.
How are you currently handling these differed classes ?
-
The program will be a simulation of the habitat of fungus and fungivores. I have a world class, which contains a matrix (world), and an array of fungivores. The matrix is composed of cell. The cell class contains an array of fungivores (fungivores that are in that cell) and an int that represents the amount of fungus there is. In the course of the execution the value of fungus and the number of fungivores that there will be in each cell will change. That's what I have to represent in the UI. The amount of fungus will represent it by painting the green cells, with an intensity between 0 and 255, depending on the value, and the amount of fungivors will represent it with a circle, the size of the circle will depend on the value. Once I have this sequential version, I will have to make a parallel version.
-
@juaniyoalm
So can you keep those fungus-intensity-ints in (a column in) your model? Then your view can access it.
-
Is the matrix a two dimensional table ?
-
@SGaist
Yes, in each cell there is fungus (int value) and fungivores (array of fungivores).I've tried pass QPair or Qlist to QStandarItemModel but is not posible cast to qvariant
-
What are you currently using to store that "matrix" ?
-
Vector<Vector<Cell>>
-
Some answer please???
-
Please show some patience and allow 24 hours to run before bumping your own thread. This is a community forum where people answer on their own time. They might not even live in the same timezone as you.
As for your current trouble. You can build a QAbstractTableModel that will give access to your matrix. For the specific members of your
Cell
class, you can use custom roles.
-
I'm sorry, it was my vacation day and I wanted to move forward with the project. I'm sorry.
To assign the matrix to the model simply the model creates a variable of the same type as the matrix and initialize the model I assign it in some way, is it correct? I do not understand the roles very well ...
-
You should also provide APIs that will allow you ton modify that matrix.
As for the roles, they are there to retrieve specific information from the model's elements.
-
@SGaist said in Insert fill circle into cell of QTableWidget:
You should also provide APIs that will allow you ton modify that matrix.
As for the roles, they are there to retrieve specific information from the model's elements.I'm sorry but I still do not understand well the models and roles in QT.
Can anyone give me an example of how the model class should be?I have a matrix (vector <vector <Cell >>) and when modifying some attributes of the Cell class, have to change what is painted in the graphic representation (Only the one in the cell corresponding to the coordinates of the matrix).
-
@juaniyoalm
Hi
Its something like this
https://meetingcpp.com/blog/items/an-introduction-into-qt-part-3.html
However he uses a
std::vector<PersonalData> mydata;
where you have
vector <vector <Cell >>
so you need to use both index.row and index.col
to address your matrix. ( the data)
-
@mrjj Thanks so much.
I was doing it that way, but how did I assign the matrix to the model variable? At this moment, I am creating the matrix in mainwindow class ...
-
@juaniyoalm
Hi
well the vector <vector <Cell >> matrix could be inside the model
and you would use method like the Addperson in sample to fill it.
Much like you do now. when maxtrix is outside of the model.
You could also fill it in mainwindow and simply give whole matrix to model
to copy it to internal variable.(matrix) but thats a bit waste full.Also i been wanting to ask you. You do use a TableView because you need scrolling correct?
I mean there are far more rows with cells than can fit on on screen ?
-
Yes, there is no row limit, it can be 20 rows, 100 or 1000 xD. I always have to think about what I do to behave well when I do the parallel implementation, using pthread and openmp.
-
@juaniyoalm
Ok so scrolling is needed:)
Also make sure to check out QtConcurrent and QThread before jumping to pthread.