aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/sparkline_delegate.h
AgeCommit message (Collapse)AuthorFilesLines
2014-08-08Use a QTreeWidget instead of QTableWidget.Gerald Combs1-0/+1
Even though Qt's widget naming suggests otherwise, a QTreeWidget is usually a better choice for tables than QTableWidget. The former gives you a nice, clean Plain Old Table while the latter gives you something that looks and acts like a spreadsheet. In this particular instance using QTreeWidget also gives us the option of adding sub-items with detailed information. Do so for attached addresses. Allow sorting by traffic while we're here. Simplify the column hiding logic. Make sure the sparkline delegate isn't editable. Change-Id: Ia36ba2e12c1c0cb86ae5b2154e6afcf6549ae049 Reviewed-on: https://code.wireshark.org/review/3466 Reviewed-by: Gerald Combs <gerald@wireshark.org> Tested-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2012-09-04Add modelines for Qtshark fileAlexis La Goutte1-0/+13
svn path=/trunk/; revision=44766
2012-08-14Minor cleanup: Get rid of unnecessary signal+slot customization and markGerald Combs1-0/+1
functions protected. svn path=/trunk/; revision=44481
2012-08-06Set svn propertiesJörg Mayer1-1/+1
svn path=/trunk/; revision=44286
2012-08-06Add Id header (and the standard copyright headers) to some files.Jörg Mayer1-0/+23
svn path=/trunk/; revision=44285
2012-08-06Don't call "Q_OBJECT" if there are no signals or slots defined.Jörg Mayer1-3/+2
Fix cmake (and possibly autotools) build for: lib/libqtui.a(interface_tree.cpp.o): In function `SparkLineDelegate': /home/jmayer/work/wireshark/svn/trunk/ui/qt/sparkline_delegate.h:10: undefined reference to `vtable for SparkLineDelegate' This would not show up using qtcreator due to the magic of qmake. I must admit that I don't fully understand what I am doing here, but I read the following thread to the bottom and one of the last posts contained the solution: http://stackoverflow.com/questions/1095298/gcc-c-linker-errors-undefined-reference-to-vtable-for-xxx-undefined-refere svn path=/trunk/; revision=44280
2012-08-03Move capture_globals.h from ui/gtk/ to ui/. Show interface activityGerald Combs1-0/+25
using sparklines in the qtshark main window. svn path=/trunk/; revision=44253