Tagged Questions
QTableWidget is a Qt class providing an item-based table view with a default model.
4
votes
1answer
207 views
Sort vertical headers of QTableWidget
I have a QTableWidget that is used to display lots of data, basically derived from a function f(a,b). All a values go into the horizontal header, all b values into the vertical header and all f(a,b) ...
4
votes
1answer
4k views
Qt How to make a column in QTableWidget read only
I would like to have one column in QTableWidget NOT editable. I forums have read a lot about some flags bould could not manage to implement.
Thanks in advance!
3
votes
1answer
255 views
QtDesigner & PySide: QTableWidget don't get accessible
I made a form in QtDesigner. This form gets loaded from PySide with help of the function
widget = loader.load(file, parent)
However, the QTableWidget (with objectNname buffer_table) don't get ...
3
votes
2answers
3k views
How can I add a checkbox/radio botton to QTableWidget
How can I add a checkbox/radiobutton/combobox to a QTableWidget or a QListWidget?
Is there some tutorial I could read?
3
votes
1answer
111 views
How to keep header from being selected when there is one item in a QTableWidget?
I can't seem to keep the horizontal header from being selected when I select a single row in a QTableWidget.
Example:
How can I prevent the header from being selected too? This only happens when ...
2
votes
1answer
40 views
How to limit the selection in a QTableWidget
How would I go about limiting the rows/columns selected in a QTableWidget? I need to force the user to use a contiguous selection (already done) to select exactly two columns and any amount of rows.
...
2
votes
2answers
84 views
Qt widget resizes to width=256, while it shouldn't
Form setup:
QSplitter (highlighted on the image) that contains QTreeWidget (left) and QTableWidget (right):
Non-default properties of these two widgets within QSplitter:
QTreeWidget
minimumSize ...
2
votes
3answers
94 views
How to extract content, result of selectedItems()
The code below produces a little dialog box like the one shown, where the rows of the table can be selected (CTRL key for multiple select, or toggle on/off). Then clicking the 'Ok' button, the ...
2
votes
1answer
188 views
QTableWidget Horizontal Header CSS
I'm trying to style a QTableWidget using the latest Qt SDK (4.7.4). From Googling, I've seen that I need to do something like this:
QHeaderView::section {
background: red;
/* ... */
}
...
2
votes
2answers
350 views
Qt/C++ QTableWidget: Doing something when a header is doubleclicked
I have a QTableWidget in my form and I want to do something when a user doubleclicks on the header of a row or column. I am using the following connect statement:
...
2
votes
1answer
262 views
Qt - can QTable have column labels rotated by 90 degrees?
I have many narrow columns with very long labels. I want to rotate the labels by 90 degrees. Is it possible?
2
votes
1answer
421 views
How to edit multiline text in cell of QTableWidget?
How to edit cell manually like in Excel:
Alt + Enter -> line break (true break, not simply line break symbol on the same line)
Enter -> exit from edit mode?
EDIT:
Text in one cell in view mode:
Line1
...
2
votes
2answers
3k views
2
votes
2answers
5k views
Qt - How to associate data with QTableWidgetItem?
I want to associate additional data with each QTableWidgetItem inserted into the table, in order to use that data in future, when it is being clicked on a table item. But that data should not be ...
2
votes
1answer
1k views
Change table columns width on resizing window or splitter
Consider there is a QTablWidget and a QTextEdit. Both of them are in a horisontal QSplitte. Let the QTable widget has 2 columns.
The problem is to resize the table columns' width as you do resize ...
2
votes
4answers
3k views
QTableWidget: How can I get tighter lines with less vertical spacing padding?
The QTableWdiget is fabulous for simple grid displays. Changing colors, fonts, etc is straightforward.
However, I did not manage to give the grid a 'tighter' look with less vertical whitespace. I ...
2
votes
2answers
1k views
Hide the border of the selected cell in qtablewidget in pyqt?
Is there a way i can hide the border of the selected cell(or make the border color as white)in a qtablewidget.. By default a border with dotted line is shown.. Can u help me...
1
vote
1answer
17 views
QTableWidget; Using the celllChanged signal
Im a student programmer using Qt to develop a GUI for work and I have ran into a problem using the QTableWidget. I have a spreadsheet made from this widget that takes various values as user input. I ...
1
vote
1answer
27 views
Use QTableWidget's sorting abilities for a custom model
I have implemented a QTableView and need to sort my table. However, I like the way QTableWidget handles sorting. Can I somehow "grab" or use QTableWidget's sortItems() functionality in my QTableView ...
1
vote
0answers
71 views
QTableWidget - setCellWidget
I try to insert a custom widget into a QTableWidget using the setCellWidget function
void QTableWidget::setCellWidget ( int row, int column, QWidget * widget )
My problem is now, that the paint ...
1
vote
3answers
190 views
Qt - QIcon in QTableWidget cell
I have tried numerous ways to display a QIcon in a QTableWidget cell and I am not sure why it is not working. I have a button that when pressed adds a row to the table. Here is the code...
void ...
1
vote
1answer
167 views
How can i set labels of QHeaderView in PyQt?
In Pyqt, I am trying to make the QHeaderView of a QTableWidget respond to right mouse clicks.
I have subclassed QHeaderView and i have overloaded the mousePressEvent.
Then i can set it as as the ...
1
vote
2answers
141 views
QT, QTableWidget: Changing Items with the cellChanged()-signal
I am using a QTableWidget. On the cellChanged()-signal I add or update a row in a sqlite database. After executing my SQL statements i want to add a button/CellWidget to an item in this row. As this ...
1
vote
1answer
133 views
How to disable QTableWidget scrolling to selected cell?
Currently, if the user clicks on a cell that is only partially visible, the window automatically scrolls over so that the cell is fully displayed. Is there any way to stop the table doing this? Thanks ...
1
vote
1answer
95 views
QComboboxes in a QTableWidget
I would like one of the cells in a table to be a QComboBox. However, I don't want them displayed as such all the time, only when a user selects that cells. Are there any more convenient ways of ...
1
vote
2answers
104 views
Add a String as an Item to a tableWidget in QT/Python
I have an array with strings and I want to add each string in a different row and the same column of a tableWidget.
I'm using the function setItem to change the desired field, but I get the error ...
1
vote
1answer
201 views
How to change the height of a horizontalHeader (QTableWidget)
I have a QTableWidget and I want to change the size of the horizontalHeaders. But there is only a function to set the width. But how do you change the height? Hope someone can help me.
1
vote
1answer
741 views
Adding images to a QTableWidget in PyQt
I'm very new to Python and even newer to PyQt. I've managed to create a table, but want to add images in certain cells. I've read that I need to subclass the QTableWidget class, or possibly the ...
1
vote
1answer
525 views
How do I use the QTable? Adding, editing, removing and retrieving rows
How do you use the QTable object. I have searched the internet and the examples don't really seem to make sense. Do you just create a new row within the extended class. It all seems fussing. How do ...
1
vote
1answer
834 views
How do I get some slot/function to be executed when a certain QTableWidgetItem is checked / unchecked in PyQt
I have a dynamically created table, that has N rows and M QTableWidgetItems (that are only used as checkboxes) per row - I need to run code that knows the row and the column whenever a checkbox is ...
1
vote
1answer
211 views
problem with replacing a background image using signal / slot in qt
i want to make a simple chess program. So far i've made the board using QTableWidget and loaded the piece pictures in the cells of table. Now i wnat to use signal and slot so that when user clicks a ...
1
vote
2answers
794 views
Resizing a cell's height and Witdth and loading an image in QTableWidget
I want to make a 8*8 table with square cells ( a chess board ).Now I have the code to make the table but don't know how to resize the cells to be square shaped.
I also want to put picturs of pieces ...
1
vote
3answers
582 views
Get previous value of QComboBox, which is in a QTableWidget, when the value is changed
Say I have a QTableWidget and in each row there is a QComboBox and a QSpinBox. Consider that I store their values is a QMap theMap;
When comboBoxes value or spin boxes value is being changed I want ...
1
vote
2answers
460 views
QTableWidget::itemAt() returns seemingly random items
I've just started using Qt, so please bear with me. When I use QTableWidget->getItemAt(), it returns a different item from if I used currentItemChanged and clicked the same item. I believe it's ...
1
vote
1answer
182 views
Which button was clicked?
How can I detect which mouse button was clicked (right or left)
in the slot for QtCore.SIGNAL('cellClicked(int,int)')?
1
vote
3answers
260 views
1
vote
3answers
801 views
QTableWidget signal cellChanged(): distinguish between user input and change by routines
i am using PyQt but my question is a general Qt one:
I have a QTableWidget that is set up by the function updateTable. It writes the data from DATASET to the table when it is called. Unfortunately ...
1
vote
2answers
212 views
Why does Qt add more than three columns when I use restoreState() on a QTableWidget?
My code looks somehow like the following:
table = QTableWidget()
table.horizontalHeader().restoreState(settings.value("savedState"))
table.setColumnCount(3)
settings.setValue("savedState", ...
0
votes
1answer
12 views
How to prevent user from resizing columns of QTableWidget?
I'd like to manage width of my columns in a table personally, but after resizing them from the code, I cannot figure out a way to prevent user from resizing them manually. I found out that QTableView ...
0
votes
1answer
60 views
Crash in Deleting selected items from QTablewidget
I have a QTablewidget with the following settings
tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows);
tableWidget->setSelectionMode(QAbstractItemView::ExtendedSelection);
I am ...
0
votes
1answer
46 views
Addressing QTableWidget Colums
I am a student programmer and have been building a GUI in Qt for my company. I am writing a member function SetData to basically act as an intermediary between my Ui elements and member variables. In ...
0
votes
1answer
91 views
Python - PyQt - QTable Widget - adding rows
i am new to PyQt and still bit confused anyhow. I have a text file structure like this:
Name Surname Telephone Email
Where spaces are actually tabs " \t " now when i read this file whit my ...
0
votes
1answer
140 views
How to implement Excel-like filter mechanism on QTableWidget?
Can anybody give me some idea to create a filter mechanism (as available in Microsoft Excel) on QTableWidget?
Whenever I click on a column name, I want the header filter mechanism to automatically ...
0
votes
1answer
80 views
How to set QTableWidget's data
I am writting an application with PyQt. I have a list like:
rList = [['no','status'], ['anotherno','anotherstatus']]
and I have a QTAbleWidget with 2 columns. How can I set the QTableWidget's data ...
0
votes
0answers
51 views
using a combobox inside a tableWidget help in python
I am trying to add a combobox inside a tableWidget in python. I can get the combobox to work inside the tablewidget. The only problem is that I am wanting to grab the currentIndex data when the ...
0
votes
2answers
108 views
QTableWidget itemDoubleClicked signal link to textEdit
i have a populated tableWidget and i want to select the row header upon doubleClick and grab the text in the row header then populate a textEdit with it.
i have:
connect(ui->tableWidget, ...
0
votes
1answer
56 views
Problems getting and setting data on QTableWidgets
I have two QTableWidgets and I'm trying to synchronize them as an exercise to figure out how to get / set data.
The current code I have is:
void MainWindow::on_tableWidget_2_cellChanged(int row, int ...
0
votes
1answer
35 views
Will cell widgets inside QTableWidgets be deleated upon cleaning?
Suppose I fill some cells of a QTableWidget with buttons:
ui->table->setCellWidget (i, 2, new QPushButton ("Details"));
Just a little bit later I scratch them all and do it again:
...
0
votes
1answer
224 views
how to make a cell in a QTableWidget read only?
i have the following code defining the gui of my app
class Ui (object):
def setupUi():
self.tableName = QtGui.QTableWidget(self.layoutWidget_20)
...
0
votes
1answer
153 views
HowTo draw border for QTableWidget row?
I'm trying to make a border for rows in QTableWidget with different ways, but all solutions don't respond my requirements. All that I want, is to draw a rectangle around a whole row. I had try ...