aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/firewall_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-3/+3
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-21Removed the usage of topic_available() as we now have all topics.Stig Bjørlykke1-9/+3
svn path=/trunk/; revision=25505
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-2/+2
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-05-06Fix some of the Errors/warnings detected by checkapi.Anders Broman1-26/+26
svn path=/trunk/; revision=25244
2008-04-27Remove all GTK+ < 2.4 code and minimum version checks.Stephen Fisher1-21/+0
svn path=/trunk/; revision=25182
2008-04-16use the standard dialog button mechanism for the firewall dialogUlf Lamping1-16/+17
svn path=/trunk/; revision=25061
2008-04-13sort #includes by directoriesUlf Lamping1-15/+19
svn path=/trunk/; revision=24968
2008-04-12where it's not necessary, remove #include "compat_macros.h"Ulf Lamping1-1/+0
svn path=/trunk/; revision=24922
2008-04-11third round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-12/+12
svn path=/trunk/; revision=24914
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-3/+3
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-11OBJECT_..._DATA --> g_object_..._dataBill Meier1-8/+8
svn path=/trunk/; revision=24895
2008-04-06replace confusing #if checking for GTK2.4.0 (the GTK version when ↵Ulf Lamping1-2/+2
gtk_file_chooser was "invented") by #if GTK_CHECK_VERSION(2,4,0) svn path=/trunk/; revision=24819
2008-04-06remove GTK1 codeUlf Lamping1-37/+0
svn path=/trunk/; revision=24818
2007-01-22Fix various compiler warningsStephen Fisher1-1/+1
svn path=/trunk/; revision=20522
2006-08-26Get rid of aun unused routine.Guy Harris1-33/+0
svn path=/trunk/; revision=19040
2006-07-17gtk_text_buffer_select_range() was introduced in GTK+ 2.4, so don't use it.Gerald Combs1-1/+2
Set our selection range manually. svn path=/trunk/; revision=18750
2006-07-15Fix compilation problems for Windows and GTK1.Gerald Combs1-4/+4
svn path=/trunk/; revision=18741
2006-07-14Add support for generating firewall ACL rules. MAC, IPv4, port, andGerald Combs1-0/+867
IPv4+port rules are supported along with several syntaxes: IOS standard, IOS extended, ipfilter, ipfw, pf, and netsh. IPv6 is currently not supported, but shouldn't be too difficult to add. All of the rules were created using the documentation for each product. None of them have been tested. For the time being, use them with caution. svn path=/trunk/; revision=18737