aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk
AgeCommit message (Collapse)AuthorFilesLines
2014-01-26Drop support of Visual Studio 2005Alexis La Goutte2-13/+0
* Remove _MSC_VER < 1500 check * Cleanup config.nmake See http://www.wireshark.org/lists/wireshark-dev/201305/msg00159.html svn path=/trunk/; revision=54965
2014-01-22Clean up whitespace: use consistent indentation, etc;Bill Meier1-46/+59
Add editor modelines. svn path=/trunk/; revision=54883
2014-01-20Fix indent (use 4 spaces) and remove trailing whitespaceAlexis La Goutte1-3/+3
svn path=/trunk/; revision=54854
2014-01-20Split the GUI and the tap part to make it possible to adapt to Qt.Anders Broman3-213/+32
svn path=/trunk/; revision=54850
2014-01-17Fix [-Wmissing-prototypes]Anders Broman23-0/+44
svn path=/trunk/; revision=54834
2014-01-17Fix [-Wmissing-prototypes]Anders Broman28-0/+49
svn path=/trunk/; revision=54833
2014-01-16Fix [-Wmissing-prototypes]Anders Broman15-1/+28
svn path=/trunk/; revision=54826
2014-01-15Don't cast away constness.Guy Harris1-1/+1
svn path=/trunk/; revision=54818
2014-01-14In a source file that defines external functions, the header file thatGuy Harris1-1/+3
declares the functions must be included, in order to make sure the declarations match the function signature. Make it so. Don't cast away constness when passing something to a routine that takes a const pointer argument. svn path=/trunk/; revision=54747
2014-01-11Fix indent (use 4 spaces) and add modelinesAlexis La Goutte2-47/+73
svn path=/trunk/; revision=54695
2014-01-10Note in a comment that with Gtk 3.4.4 reselecting UE+channel doesn't work as ↵Martin Mathieson1-0/+3
other UEs seem to get selected while list is being repopulated during retapping svn path=/trunk/; revision=54690
2014-01-08Coverity 280335, 280336Martin Kaiser1-2/+4
check the return value of gtk_tree_selection_get_selected() svn path=/trunk/; revision=54657
2014-01-08Coverity 280334Martin Kaiser1-1/+2
check the return value of gtk_tree_selection_get_selected() if there was no selected item, wireshark would crash but this is very unlikely in practice svn path=/trunk/; revision=54656
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-19/+19
svn path=/trunk/; revision=54609
2014-01-05Enhance NSIS Windows installer (Wireshark Qt support)Alexis La Goutte2-109/+135
* Add Radiobox to choose File Association (Wireshark GTK or Qt) * Add Checkbox to choose Wireshark Qt icon will be installed (Startup, Desktop...) * Fix unistaller (don't remove all icons...) * ... svn path=/trunk/; revision=54605
2013-12-30Move tcap and camel "persistent data" functionality to the dissectors ↵Michael Mann2-2/+2
themselves instead of being part of epan directory. svn path=/trunk/; revision=54499
2013-12-29Make arrow down/ up work in gtk again.Jakub Zawadzki1-1/+1
Broken by r54328 g_ascii_isprint() can test only char type and event->keyval is unsigned int. svn path=/trunk/; revision=54492
2013-12-24add ssl detection to proto_get_frame_protocols()Martin Kaiser3-3/+3
svn path=/trunk/; revision=54439
2013-12-23From Ville Skyttä: Spelling FixesBill Meier9-12/+12
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9591 svn path=/trunk/; revision=54387
2013-12-23Add FT_SYSTEM_ID type and convert the dissectors that use print_system_id ↵Michael Mann1-1/+1
with FT_BYTES to now use FT_SYSTEM_ID type. svn path=/trunk/; revision=54383
2013-12-21fix some warnings.Jakub Zawadzki1-7/+7
svn path=/trunk/; revision=54334
2013-12-21Add missing includesJakub Zawadzki4-0/+5
svn path=/trunk/; revision=54332
2013-12-21ui/gtk/follow_stream.c was using isprint.h hack, change all isprint()Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=54329
2013-12-21isascii(x) && isprint(x) -> g_ascii_isprint(x)Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=54328
2013-12-21Drop isprint.h use g_ascii_isprint() when this include hack was enabled.Jakub Zawadzki4-13/+6
svn path=/trunk/; revision=54327
2013-12-20Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=54314
2013-12-19Rename more to_str functions to have ep_ in the name if they return ephemeralEvan Huus1-1/+1
buffers. Remove two unused functions. svn path=/trunk/; revision=54250
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-2/+2
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-18Remove unneeded #include epan/dissectors/packet-scsi.hAlexis La Goutte3-3/+0
svn path=/trunk/; revision=54234
2013-12-17Fix preprocessor macro and indentation.Evan Huus1-2/+2
svn path=/trunk/; revision=54178
2013-12-17Fix indent (use 4 spaces) and add modelinesAlexis La Goutte1-1310/+1322
svn path=/trunk/; revision=54176
2013-12-16Fix alignment issue in GTK2 flowgraph "packet choice" window.Bill Meier1-6/+24
(Issue reported by Alexis Lagoutte). ##Backport 1.10 svn path=/trunk/; revision=54148
2013-12-15Fix warning found by doxygenAlexis La Goutte1-0/+1
svn path=/trunk/; revision=54130
2013-12-15Fix some const/ not const warnings.Jakub Zawadzki7-14/+14
svn path=/trunk/; revision=54114
2013-12-14Create/use several extended value-strings;Bill Meier1-6/+29
(Sort & remove dups from underlying value_string arrays); Reformat a few long lines; Add editor modelines; svn path=/trunk/; revision=54103
2013-12-14Fix const warnings.Jakub Zawadzki16-19/+19
svn path=/trunk/; revision=54092
2013-12-14Fix warningsJakub Zawadzki1-3/+1
svn path=/trunk/; revision=54089
2013-12-14Fix some trivial warnings.Jakub Zawadzki3-0/+6
svn path=/trunk/; revision=54085
2013-12-13Address more Windows errors.Irene Rüngeler1-1/+1
svn path=/trunk/; revision=54032
2013-12-13Take sctp_stat.c off the list because it has been removed.Irene Rüngeler1-2/+1
svn path=/trunk/; revision=54027
2013-12-13Add dialogs and graphs to analyse SCTP behavior similar to the GTK version.Irene Rüngeler1-0/+1
svn path=/trunk/; revision=54026
2013-12-12Create/use a number of extended value-strings;Bill Meier1-57/+72
Remove or comment out dups from several value-string arrays; Sort a number of value-string arrays; Reformat many hf[] entries; Remove some unneeded initializers; Add editor-modelines; Use consistent indentation; Reformat whitespace. svn path=/trunk/; revision=53968
2013-12-10Trivial: The file name is prefs_capture.c, not capture_prefs.cChris Maynard1-1/+1
svn path=/trunk/; revision=53926
2013-12-10Get the "Decode As" dialog working, albeit with a few warts. It differsGerald Combs2-32/+12
from the GTK flavor in two major ways: - The "Decode As" and "User Specified Decodes" dialog have been unified. - You can modify the decode as behavior at any time, not just when you have a packet selected. Revert part of 53498 so that we can move items marked /*** THE FOLLOWING SHOULD NOT BE USED BY ANY DISSECTORS!!! ***/ from epan/decode_as.h to ui/decode_as_utils.h. Move "save" code from decode_as_dlg.c to decode_as_utils.c as well. In packet-dcerpc.c don't register a table named "ethertype". We might want to add checks for duplicate table names. To do: - Add support for ranges? - Either add support for DCERPC or make DCERPC use a regular dissector table. - Fix string selectors (i.e. BER). svn path=/trunk/; revision=53910
2013-12-10Use PT_TXTMOD_NONE for columns that should not be editable.Irene Rüngeler1-1/+7
svn path=/trunk/; revision=53906
2013-12-10Do not show uat preferences if not registered for the gui.Irene Rüngeler1-3/+4
svn path=/trunk/; revision=53904
2013-12-10Removed debug output.Stig Bjørlykke1-1/+0
svn path=/trunk/; revision=53903
2013-12-09Fix warningsJakub Zawadzki23-25/+25
svn path=/trunk/; revision=53885
2013-12-08Fix some warnings: cast discards `__attribute__((const))' qualifier from ↵Jakub Zawadzki8-9/+9
pointer target type svn path=/trunk/; revision=53875
2013-12-08From Deon van der Westhuysen via ↵Alexis La Goutte1-4/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9452 Patch: Stats_tree enhancements for sorting, averages and burst rate Add sort, save-as and new columns to Qt ui, remove old functions stats_tree.c / stats_tree_priv.h: Make all columns sortable. Remove unneeded functions stats_tree_get_strs_from_node, stats_tree_branch_to_str and stats_tree_is_sortable_column. stats_tree_stat.c: Set all columns sortable. stats_tree_dialog.cpp / stats_tree_dialog.h: Add new stats_tree columns. Make columns sortable. Remove copy to csv and copy to yaml buttons. Add copy to clipboard as plain text and save as buttons. stats_tree_dialog.ui: Remove copy to csv and copy to yaml buttons. Add copy to clipboard as plain text and save as buttons. Only define one column in ui, rest are added dynmically. From me : fix trailing whitespace svn path=/trunk/; revision=53848