What should I use, QTableWidget oder QTableView?
I'm currently working on a program to display some log files in a Table. I was using QTableWidget until now, but I want to implement some filtering options.
When searching the Internet for an answer I couldn't find out, what the difference between the two are, except that QTableView looks way more complicated. The log files that I'm displaying all have about 25 thousand rows. I have already written code where I can right-click on cells to add them to a "filterKeyword" List. I want to filter out all rows, that dont contain a keyword from the list (Doesnt matter in what column the keyword is).
Obviously the best would be, if there was a way to do this with QTableWidget, since I already have other Functions based on it.