aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/prefs_capture.c
AgeCommit message (Collapse)AuthorFilesLines
2010-03-04In Wireshark and TShark, run dumpcap to get interface lists and lists ofGuy Harris1-2/+1
link-layer header types for interfaces; if special privileges are necessary to open capture devices, Wireshark and TShark shouldn't have those privileges, but dumpcap should. svn path=/trunk/; revision=32104
2010-02-25GtkCombo --> GtkComboBoxEntryBill Meier1-15/+23
svn path=/trunk/; revision=32010
2010-01-13Improved the Interface Options dialog:Stig Bjørlykke1-20/+25
- Use toggle checkbox for Hide? column - Adjusted default column width (device name is shorter on UN*X) - Increased dialog height svn path=/trunk/; revision=31513
2009-11-10Removed some unused variables and unused assignments.Stig Bjørlykke1-1/+0
svn path=/trunk/; revision=30918
2009-06-16Let create_preference_option_menu() and create_preference_entry()Stig Bjørlykke1-4/+7
set the tooltips. svn path=/trunk/; revision=28762
2009-06-15Let create_preference_check_button() set the tooltips.Stig Bjørlykke1-18/+14
svn path=/trunk/; revision=28750
2009-06-15Added a preference to capture in Pcap-NG from GUI.Stig Bjørlykke1-2/+15
svn path=/trunk/; revision=28740
2009-05-18prefs_capture: Interface Options Edit dialog: code cleanup;Bill Meier1-286/+288
- Fix typo which caused Properties|Descriptions value field to be incorrectly right-justified; - Fix several (small) memory leaks; - Rename variables & rework comments: What was a clist was replaced by a treeview/liststore; - Remove a left-over line of code still calling a gtk_clist function; - Rename some constants and variables to more closely reflect usage; - Add some defensive coding; - Use gtk_combo_box_get_active_text if GTK+ is 2.6 or greater; - Simplify code in several places; - Use consistent indentation; svn path=/trunk/; revision=28398
2009-05-08Clist -> list_storeAnders Broman1-160/+338
svn path=/trunk/; revision=28310
2009-04-21Turn on -Wshorten-64-to-32 by default, and fix some issues that turnedGuy Harris1-9/+9
up (99 44/100% of which were assignments of double-precision floating-point constants to floats). Hopefully this will catch at least some P64 issues on UN*X. svn path=/trunk/; revision=28108
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-4/+4
equivalent API gtk_container_border_width() ==> gtk_container_set_border_width() gtk_container_children() ==> gtk_container_get_children() gtk_entry_new_with_max_length() ==> gtk_entry_new(); gtk_entry_set_max_length() gtk_menu_append() ==> gtk_menu_shell_append() gtk_menu_prepend() ==> gtk_menu_shell_prepend() gtk_notebook_set_page() ==> gtk_notebook_set_current_page() gtk_paned_gutter_size() ==> gtk_paned_set_gutter_size() gtk_radio_button_group() ==> gtk_radio_button_get_group() gtk_signal_connect() ==> g_signal_connect() gtk_signal_disconnect() ==> g_signal_handler_disconnect() gtk_signal_emit_by_name() ==> g_signal_emit_by_name() gtk_signal_handler_block_by_data() ==> g_signal_handlers_block_matched() gtk_signal_handler_block_by_func() ==> g_signal_handlers_block_by_func() gtk_signal_handler_unblock_by_data() ==> g_signal-handlers_unblock_matched() gtk_signal_handler_unblock_by_func() ==> g_signal-handlers_unblock_by_func() gtk_spin_button_get_value_as_float() ==> gtk_spin_button_get_value() gtk_toggle_button_set_state() ==> gtk_toggle_button_set_active() svn path=/trunk/; revision=25634
2008-06-21Added a help button in the Interface Options dialog.Stig Bjørlykke1-2/+13
Added the Interface Options docbook chapter. svn path=/trunk/; revision=25502
2008-06-18Reload the interface list on the welcome page when changing profile andStig Bjørlykke1-0/+4
after editing the interface options. svn path=/trunk/; revision=25479
2008-06-02Rewrote ifopts_options_add() to make it readable and simpler.Stig Bjørlykke1-111/+39
Fixed a bug where a one character comment would skip the interface. If syntax error in the comment just skip the comment instead of the interface. svn path=/trunk/; revision=25413
2008-06-02Rewrote to not use gtk_combo_box_get_active_text().Stig Bjørlykke1-8/+11
svn path=/trunk/; revision=25412
2008-06-02Added an option to set default link-layer header type for each interface.Stig Bjørlykke1-47/+246
Set linktype history for each interface so we don't mix them. Fixed some indents. svn path=/trunk/; revision=25411
2008-04-15don't use strdup() if you want to free the memory later with g_free(), this ↵Ulf Lamping1-3/+3
doesn't work (at least) on MSVC2005 builds! svn path=/trunk/; revision=25037
2008-04-14From Jim Young (bug 2212):Sake Blok1-1/+1
Add the profile name to the title of all the configuration windows. (this is a rewrite of Jim's patch) svn path=/trunk/; revision=25016
2008-04-13change all preferences related filenames from xy_prefs to prefs_xyUlf Lamping1-0/+838
svn path=/trunk/; revision=24975