aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
AgeCommit message (Collapse)AuthorFilesLines
2014-01-26Fix indent (Use 4 spaces) and add modelinesAlexis La Goutte2-70/+96
svn path=/trunk/; revision=54964
2014-01-20Fix typo (only need one comma)Alexis La Goutte1-1/+1
svn path=/trunk/; revision=54852
2014-01-14Fix typo (Direcly => Directly)Alexis La Goutte1-2/+2
svn path=/trunk/; revision=54804
2014-01-14Make a routine not used outside this file static.Guy Harris1-3/+3
svn path=/trunk/; revision=54746
2014-01-14In a source file that defines external functions, the header file thatGuy Harris1-0/+2
declares the functions must be included, in order to make sure the declarations match the function signature. Make it so. svn path=/trunk/; revision=54745
2014-01-14Include ui/progress_dlg.h to get the declaration ofGuy Harris1-0/+2
delayed_create_progress_dlg(). svn path=/trunk/; revision=54744
2014-01-14#if 0 out an unused routine.Guy Harris1-0/+2
svn path=/trunk/; revision=54743
2014-01-11Remove (ugly) hack in about_dialog.cpp (include main.cpp to have function to ↵Alexis La Goutte2-13/+5
set comp_info_str and runtime_info_str variable) Now About Dialog is start after main() and variables is set by main(), only extern variable in wireshark_applicatin.h svn path=/trunk/; revision=54696
2014-01-08Don't create About window when Wireshark Qt startAlexis La Goutte2-7/+6
svn path=/trunk/; revision=54662
2014-01-07Remove svn:executable attribute.Jakub Zawadzki2-0/+0
svn path=/trunk/; revision=54637
2014-01-07include config.h at the top of the file.Jörg Mayer2-2/+5
A used parameter was marked unused. svn path=/trunk/; revision=54629
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-22/+22
svn path=/trunk/; revision=54612
2014-01-04Add tooltips for the total number of streams.Gerald Combs3-8/+21
svn path=/trunk/; revision=54585
2014-01-03Update NEWS and Release noteAlexis La Goutte1-10/+6
Revert part of last commit about AUTHORS-SHORT in Windows.... svn path=/trunk/; revision=54577
2014-01-02It is AUTHORS-SHORT.txt in WindowsAlexis La Goutte2-18/+24
Kept comment about dev release (and change logo) Use the some order like Wireshark GTK (Authors before Folders) svn path=/trunk/; revision=54569
2014-01-02Fix wireshark-qt startup coredump under autofoo and Windows: make cmake'sJeff Morriss1-8/+2
VERSION_* macros integers instead of numbers (and treat them as such in ui/qt/about_dialog.cpp). svn path=/trunk/; revision=54563
2014-01-02Add About window for Wireshark QtAlexis La Goutte10-6/+680
svn path=/trunk/; revision=54557
2014-01-02Fix icon in top of Wireshark Qt main windowAlexis La Goutte1-14/+5
svn path=/trunk/; revision=54556
2014-01-02Fix indent always use tabAlexis La Goutte1-215/+215
svn path=/trunk/; revision=54553
2013-12-24add ssl detection to proto_get_frame_protocols()Martin Kaiser4-4/+4
svn path=/trunk/; revision=54439
2013-12-23From Ville Skyttä: Spelling FixesBill Meier6-11/+11
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9591 svn path=/trunk/; revision=54387
2013-12-21Argh, fix include.Jakub Zawadzki1-1/+1
I start thinking about compiling (read: installing) Qt... svn path=/trunk/; revision=54339
2013-12-21fix warnings.Jakub Zawadzki4-1/+5
svn path=/trunk/; revision=54338
2013-12-21missing includeJakub Zawadzki1-0/+1
svn path=/trunk/; revision=54336
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-1/+1
obvious that the returned string is ephemeral, and opens up the original names in the API for versions that take a wmem pool (and thus can work in any scope). svn path=/trunk/; revision=54249
2013-12-18Add 'Filter Association' to context menu in packet list.Irene Rüngeler10-10/+48
svn path=/trunk/; revision=54219
2013-12-18Ignore the first line of the chunk statistics file.Irene Rüngeler2-21/+8
svn path=/trunk/; revision=54210
2013-12-18Translate a little leftover German to English.Jeff Morriss1-3/+3
svn path=/trunk/; revision=54208
2013-12-17Make Ubuntu Buildbot happyAlexis La Goutte1-1/+1
Fix following error: ../../../ui/qt/sctp_chunk_statistics_dialog.cpp: In member function ‘void SCTPChunkStatisticsDialog::fillTable(bool)’: ../../../ui/qt/sctp_chunk_statistics_dialog.cpp:145:29: error: ignoring return value of ‘char* fgets(char*, int, FILE*)’, declared with attribute warn_unused_result [-Werror=unused-result] svn path=/trunk/; revision=54188
2013-12-17Make translatable ready SCTP Graph for QtAlexis La Goutte5-50/+50
svn path=/trunk/; revision=54170
2013-12-17Find the right frame when plottable was clicked.Irene Rüngeler4-35/+59
svn path=/trunk/; revision=54167
2013-12-17Fill the chunk statistics. Read line with fgets instead of getline.Irene Rüngeler1-16/+8
svn path=/trunk/; revision=54166
2013-12-17Add the header files only once.Irene Rüngeler1-6/+0
svn path=/trunk/; revision=54165
2013-12-15Fix warning found by doxygenAlexis La Goutte1-1/+1
svn path=/trunk/; revision=54130
2013-12-14Remove not needed ';'Jakub Zawadzki2-2/+2
svn path=/trunk/; revision=54088
2013-12-14Add a bunch of tooltips.Gerald Combs1-7/+30
svn path=/trunk/; revision=54081
2013-12-13Simplify column sizing.Gerald Combs1-10/+5
svn path=/trunk/; revision=54068
2013-12-13Capture Interfaces dialog cleanup.Gerald Combs3-653/+630
Apply layouts as needed to allow resizing. Select the interface list by row. We might want to switch the interface list to a QTreeWidget. Today I learned that you can make QGroupBox titles checkable. Do that where we enable and disable groups of items. Flatten all of the group boxes. Change the output format combo to radio buttons. There are only two choices and we have lots of real estate available. Use a QDialogButtonBox so Qt can size and order the buttons appropriately. svn path=/trunk/; revision=54052
2013-12-13May this silences a warning of code that will go out next week.Michael Tüxen1-1/+4
svn path=/trunk/; revision=54042
2013-12-13Try to silence warnings and add a comment for Irene toMichael Tüxen2-3/+3
fix these appropriately next week. svn path=/trunk/; revision=54041
2013-12-13Try to silence a warning due to a temporary workaround.Michael Tüxen1-0/+2
svn path=/trunk/; revision=54040
2013-12-13Add Copyright and modelines (Fix also indent to use 4 spaces)Alexis La Goutte12-34/+466
svn path=/trunk/; revision=54038
2013-12-13Fix typoIrene Rüngeler1-1/+1
svn path=/trunk/; revision=54037
2013-12-13Fix typo.Irene Rüngeler1-0/+2
svn path=/trunk/; revision=54036
2013-12-13Fix gboolean bool conflict.Irene Rüngeler1-6/+6
svn path=/trunk/; revision=54035
2013-12-13Fix build when use Qt4Alexis La Goutte1-0/+6
ui/qt/sctp_chunk_statistics_dialog.cpp:16:40: error: ‘class QHeaderView’ has no member named ‘setSectionsClickable’ ui/qt/sctp_chunk_statistics_dialog.cpp:17:40: error: ‘class QHeaderView’ has no member named ‘setSectionsMovable’ svn path=/trunk/; revision=54034
2013-12-13Add sctp files to Makefile.amIrene Rüngeler1-0/+12
svn path=/trunk/; revision=54033
2013-12-13"Fix"Jörg Mayer1-3/+4
/home/jmayer/work/wireshark/svn/trunk/ui/qt/sctp_graph_byte_dialog.cpp:36:13: error: variable ‘minBytes’ set but not used [-Werror=unused-but-set-variable] guint32 minBytes, maxBytes; ^ cc1plus: all warnings being treated as errors svn path=/trunk/; revision=54030
2013-12-13"Fix" 'set but not used' warning turning error.Jörg Mayer1-7/+7
svn path=/trunk/; revision=54029
2013-12-13Add dialogs and graphs to analyse SCTP behavior similar to the GTK version.Irene Rüngeler25-5/+3623
svn path=/trunk/; revision=54026