aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/supported_protos_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2011-08-17Use gtk_widget_override_font() in GTK 3.0 ( Untested on GTK 3.0)Anders Broman1-0/+4
svn path=/trunk/; revision=38591
2011-08-08Remove 2 usages of deprecated gtk_quit_add_destroy() which, AFAIKT, weren't ↵Bill Meier1-7/+3
needed. svn path=/trunk/; revision=38415
2009-11-10Removed some unused variables and unused assignments.Stig Bjørlykke1-3/+2
svn path=/trunk/; revision=30918
2009-08-27Add #include <stdio.h>Bill Meier1-1/+3
svn path=/trunk/; revision=29581
2009-04-16Fix the last of the Win64 problems in the gtk directory.Gerald Combs1-9/+9
svn path=/trunk/; revision=28063
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-04-13sort #includes by directoriesUlf Lamping1-7/+9
svn path=/trunk/; revision=24969
2008-04-12where it's not necessary, remove #include "compat_macros.h"Ulf Lamping1-1/+0
svn path=/trunk/; revision=24922
2008-04-11last round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-2/+2
svn path=/trunk/; revision=24918
2008-04-11OBJECT_..._DATA --> g_object_..._dataBill Meier1-1/+1
svn path=/trunk/; revision=24899
2008-04-07remove GTK1 codeUlf Lamping1-147/+0
svn path=/trunk/; revision=24824
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-3/+3
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2005-12-04Check for a null blurb pointer for a field, as is done in some otherGuy Harris1-7/+16
locations, and initialize the blurb field to NULL for protocols, now that we support the blurb being a null pointer. svn path=/trunk/; revision=16672
2005-08-20renamed ui_util.c/.h to gui_utils.c/.h to prevent confusion with identical ↵Ulf Lamping1-1/+1
named ui_util.h in / dir svn path=/trunk/; revision=15465
2005-07-24Constify to remove a bunch of warnings. Add some casts to squelchGuy Harris1-4/+4
(presumably-)harmless-but-otherwise-unremovable const-to-nonconst warnings. In the TACACS dissector, clean up the variables used in option parsing to avoid some const-to-nonconst warnings. Clean up some white space. svn path=/trunk/; revision=15043
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-06-17move font related stuff to new file font_utils.c/.hUlf Lamping1-9/+10
do some font related renaming/code cleanup svn path=/trunk/; revision=11166
2004-05-23use new functions in window API (ui_util.h),Ulf Lamping1-17/+7
use window_new instead of dlg_window_new for the statistics windows (as these are no dialog windows) do some code cleanup svn path=/trunk/; revision=10979
2004-03-13various string related changes, mainly replace sprintf/snprintf by g_snprintfUlf Lamping1-11/+7
svn path=/trunk/; revision=10371
2004-02-20Give it an RCS ID.Guy Harris1-0/+2
svn path=/trunk/; revision=10144
2004-02-06replaced every appearance of gtk_scrolled_window_new() withUlf Lamping1-6/+12
scrolled_window_new(). added gtk_scrolled_window_set_policy(AUTOMATIC,AUTOMATIC) to scrolled_window_new() added GTK2's gtk_scrolled_window_set_shadow(GTK_SHADOW_IN) to every place needed svn path=/trunk/; revision=9999
2004-01-21implemented dlg_button_row_new to get a standard function forUlf Lamping1-11/+8
layouting the dialog buttons, and use it where appropriate. This will help us with the GTK1/2 conflict on button layouts and will also result in a more consistent look of the dialogs at all. svn path=/trunk/; revision=9771
2004-01-10using button compatibility macrosUlf Lamping1-5/+1
svn path=/trunk/; revision=9636
2003-12-21Compiling with -pedantic:Jörg Mayer1-1/+1
warning: comma at end of enumerator list svn path=/trunk/; revision=9383
2003-12-17From Albert Chin: get rid of C++ comments.Guy Harris1-1/+1
svn path=/trunk/; revision=9305
2003-11-28using dlg_utils.c functions to catch the ESC key to close the dialogUlf Lamping1-8/+8
svn path=/trunk/; revision=9110
2003-11-19Use "OK" for the "OK" button, as we do elsewhere.Guy Harris1-1/+1
svn path=/trunk/; revision=9025
2003-11-18seperated "supported protocols and protocol fields" dialog, coming from ↵Ulf Lamping1-0/+508
help_dlg.c/.h svn path=/trunk/; revision=9018