aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main.c
AgeCommit message (Collapse)AuthorFilesLines
2008-06-23Get rid of the static capture_opts pointer - it collides with parameterGuy Harris1-30/+30
names, as noted by John Smith. svn path=/trunk/; revision=25546
2008-06-19Update the statusbar expert info icon when changing profile.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=25491
2008-06-18Reload the interface list on the welcome page when changing profile andStig Bjørlykke1-0/+3
after editing the interface options. svn path=/trunk/; revision=25479
2008-06-17The recent.gui_time_precision fix introduced a worse bug when changingStig Bjørlykke1-1/+0
profiles, so I revert this and will investigate some more... svn path=/trunk/; revision=25469
2008-06-15Initialize recent.gui_time_precision when changing profile to avoid a crashStig Bjørlykke1-1/+2
in some rare cases. svn path=/trunk/; revision=25457
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-9/+9
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-4/+4
svn path=/trunk/; revision=25244
2008-04-28Split the recent file in two, one for the configuration profileStig Bjørlykke1-4/+51
and one common for all profiles. svn path=/trunk/; revision=25186
2008-04-21Allow configuration of tap update interval.Martin Mathieson1-6/+22
- rename rtp_player config group to taps/statistics - will rename prefs_rtp_player files later (svn didn't seem keen to rename with changes present, and output says its just a copy/delete anyway...) svn path=/trunk/; revision=25133
2008-04-17colors_init() doesn't have anything to do with packet coloring, it'sGuy Harris1-1/+3
just our initialization routine for low-level GTK+ stuff, such as getting the system colormap and the "black" and "white" colors; we have to call it before calling get_color(). svn path=/trunk/; revision=25090
2008-04-13change all preferences related filenames from xy_prefs to prefs_xyUlf Lamping1-1/+0
svn path=/trunk/; revision=24975
2008-04-13move all code from color.c into color_utils.cUlf Lamping1-1/+1
remove color.c rename colors.h into color_utils.h (hopefully this reduces confusion to /color.h) svn path=/trunk/; revision=24974
2008-04-12various code cleanupUlf Lamping1-100/+84
svn path=/trunk/; revision=24964
2008-04-12move "airpcap toolbar" code from main.c into new file(s) main_airpcap_toolbarUlf Lamping1-463/+4
svn path=/trunk/; revision=24961
2008-04-12move "filter toolbar" code from main.c into new file(s) main_filter_toolbarUlf Lamping1-296/+8
svn path=/trunk/; revision=24960
2008-04-12move tap_dfilter_dlg.h from / to /gtk (and use the callback mechanism in ↵Ulf Lamping1-0/+4
main.c instead) svn path=/trunk/; revision=24956
2008-04-12proto_draw -> main_proto_drawUlf Lamping1-1/+1
svn path=/trunk/; revision=24954
2008-04-12Clean up indentation.Guy Harris1-1/+1
svn path=/trunk/; revision=24951
2008-04-12rename packet_list to main_packet_listUlf Lamping1-1/+1
svn path=/trunk/; revision=24950
2008-04-12Added an option to save column widths in the recent file.Stig Bjørlykke1-2/+3
Not 100% implemented for usage with configuration profiles with different column layout yet, as this requires some of the recent values to be saved in each profile. svn path=/trunk/; revision=24949
2008-04-12rename menu -> main_menuUlf Lamping1-2/+1
remove old (and unused and confusing) ../menu.h svn path=/trunk/; revision=24947
2008-04-12cleanup of "capture_in_progress" ugly hack from main_toolbar, call ↵Ulf Lamping1-1/+9
capture_if_dlg directly from within main.c svn path=/trunk/; revision=24943
2008-04-12rename toolbar to main_toolbarUlf Lamping1-3/+1
svn path=/trunk/; revision=24940
2008-04-12Mark some unused arguments.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=24939
2008-04-12move statusbar related code from main.c into it's own main_statusbar.cUlf Lamping1-592/+24
svn path=/trunk/; revision=24937
2008-04-12move drag_and_drop declarations into it's own fileUlf Lamping1-0/+1
svn path=/trunk/; revision=24927
2008-04-12compat_macros.h is gone now!!!Ulf Lamping1-9/+11
all GTK1 compatibility code was removed, so this file can simply be dropped svn path=/trunk/; revision=24923
2008-04-12move stock icon code from toolbar.c into specific stock_icons file(s)Ulf Lamping1-0/+3
svn path=/trunk/; revision=24921
2008-04-11last round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-26/+26
svn path=/trunk/; revision=24918
2008-04-11replace WIDGET_SET_SIZE with gtk_widget_set_size_requestUlf Lamping1-10/+10
svn path=/trunk/; revision=24910
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-4/+4
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-11OBECT_..._DATA --> g_object_..._dataBill Meier1-38/+38
svn path=/trunk/; revision=24892
2008-04-09Remove:Anders Broman1-4/+0
#ifdef NEED_G_ASCII_STRCASECMP_H #include "g_ascii_strcasecmp.h" #endif svn path=/trunk/; revision=24868
2008-04-09fix some GTK1 related commentsUlf Lamping1-3/+3
svn path=/trunk/; revision=24862
2008-04-09fix a comment typoUlf Lamping1-1/+1
svn path=/trunk/; revision=24861
2008-04-08remove GTK1 specific font handlingUlf Lamping1-3/+3
svn path=/trunk/; revision=24842
2008-04-07replace confusing #if checking for GlIB2.6.0 by #if GLIB_CHECK_VERSION(2,6,0)Ulf Lamping1-2/+2
svn path=/trunk/; revision=24822
2008-04-05fix compilation without HAVE_AIRPCAPUlf Lamping1-3/+3
svn path=/trunk/; revision=24799
2008-04-05click on the "expert info" indicator opens the corresponding dialogUlf Lamping1-23/+57
svn path=/trunk/; revision=24798
2008-04-05update expert info LED also while doing live capturingUlf Lamping1-27/+23
svn path=/trunk/; revision=24793
2008-04-05remove GTK1 stuffUlf Lamping1-138/+4
svn path=/trunk/; revision=24788
2008-04-05add an "LED" to the statusbar, that indicates the most important level of ↵Ulf Lamping1-9/+57
expert info in the capture file svn path=/trunk/; revision=24777
2008-04-04carve out the (currently disabled) welcome page into it's own file to ↵Ulf Lamping1-526/+2
slightly reduce the huge main.c file size svn path=/trunk/; revision=24773
2008-03-06Free another allocated string.Stig Bjørlykke1-1/+2
svn path=/trunk/; revision=24577
2008-03-01Custom column updates:Stephen Fisher1-31/+7
- Change apply / prepare / ... as filter to use the field's value, which is now stored in fdata as well as cinfo. Now we don't have to reprocess the entire packet list when using these features. This also prevents the use of these features from overwriting custom column information. (custom columns can now be used in apply / prepare ... as filter) - Break col_expr and col_expr_val out into a struct that is included not only in cinfo, but now also fdata. - Have col_custom_set_fstr() quote FT_STRING & FT_STRINGZ when storing the col_expr_val value (for filter creation). svn path=/trunk/; revision=24511
2008-02-29Next attempt to cleanup some string functions, including:Stig Bjørlykke1-1/+1
strncpy -> g_strlcpy, strncat -> g_strlcat svn path=/trunk/; revision=24504
2008-02-22Fix compile errors if 'configure ... --without-pcap'Bill Meier1-1/+2
svn path=/trunk/; revision=24416
2008-02-17Remove redundant (repeated) "PortAudio" from "About Wireshark" screen.Bill Meier1-1/+1
svn path=/trunk/; revision=24372
2008-02-13Add a priority level to each context in the info status bar. Use it to makeGerald Combs1-7/+57
sure we don't overwrite filter status messages during live captures. When "!=" is used in a display filter, point the user to the User's Guide. svn path=/trunk/; revision=24315
2008-02-11Wireshark occasionally starts up behind other applications. Bring it to theGerald Combs1-0/+3
front. svn path=/trunk/; revision=24304