aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/gsm_a_stat.c
AgeCommit message (Collapse)AuthorFilesLines
2004-05-23use new functions in window API (ui_util.h),ulfl1-46/+8
use window_new instead of dlg_window_new for the statistics windows (as these are no dialog windows) do some code cleanup git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10979 f5534014-38df-0310-8fa8-9805f1628bb7
2004-04-12added a close button to the dialogs,ulfl1-34/+22
use the dlg_window_new function for all dialogs git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10584 f5534014-38df-0310-8fa8-9805f1628bb7
2004-03-13replaced sprintf / snprintf by g_snprintf,ulfl1-6/+5
various other string related changes git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10373 f5534014-38df-0310-8fa8-9805f1628bb7
2004-02-23statistics menu redesigned, now looking more like the former menu,ulfl1-9/+9
items now again grouped by function, not by ISO layer git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10202 f5534014-38df-0310-8fa8-9805f1628bb7
2004-02-22Redesigned the menu structure of the former statistics stuff,ulfl1-14/+9
now sorted by ISO-layer, than alphabetically (now longer by functionality). Seperated the tap registering from the actual menu making stuff, so the seperate step of registering the tap and the menu is no longer needed. Removed all things related to this double registering. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10180 f5534014-38df-0310-8fa8-9805f1628bb7
2004-02-11Most taps that now include "tap_menu.h" no longer need to includeguy1-2/+1
<stdio.h> to define FILE; get rid of the include. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10034 f5534014-38df-0310-8fa8-9805f1628bb7
2004-02-11Move the declaration of "register_tap_menu_item()" into a newguy1-2/+2
"tap_menu.h" file, and have the Ethereal taps include that rather than "menu.h", so we don't have to worry about making sure we've included <stdio.h> to define FILE, etc. just because some "menu.h" functions require it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10031 f5534014-38df-0310-8fa8-9805f1628bb7
2004-02-06replaced every appearance of gtk_scrolled_window_new() withulfl1-4/+3
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9999 f5534014-38df-0310-8fa8-9805f1628bb7
2004-01-31Pass ESD_BTN_OK rather than NULL as a second argument toguy1-2/+2
"simple_dialog()"; NULL might be #defined to be a pointer expression on some platforms, causing compiler warnings (and, on platforms where a null pointer doesn't have all its bits 0, possibly causing misbehavior, although I don't think there are any such platforms on which Ethereal runs). Don't allow 0 as button mask argument to "simple_dialog()". Squelch a compiler warning. Report fatal problems as errors, not warnings. Report file I/O errors with "file_open_error_message()". Report file write errors (including those reported by "close()", e.g. some errors writing to an NFS server) when saving raw packet data to a file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9915 f5534014-38df-0310-8fa8-9805f1628bb7
2004-01-21implemented dlg_button_row_new to get a standard function forulfl1-17/+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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9771 f5534014-38df-0310-8fa8-9805f1628bb7
2004-01-21use stock buttons whereever possible,ulfl1-2/+2
added some ethereal specific stock icons git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9763 f5534014-38df-0310-8fa8-9805f1628bb7
2004-01-03Make Analyze/Statistics have an accelerator of Alt+A S and movesharpe1-9/+9
Analyze/Summary to Alt+A Y. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9537 f5534014-38df-0310-8fa8-9805f1628bb7
2003-12-17From Lars Roland: have common code to handle display filter dialogs inguy1-9/+9
taps, and use that in the H.225 taps. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9327 f5534014-38df-0310-8fa8-9805f1628bb7
2003-12-16Use gtk compatibility macros (from compat_macros.h) instead of some gtk+oabad1-11/+8
v1.2 functions which are deprecated in gtk+ v2. Update OBJECT_SET_DATA macros to cast "data" to (gpointer). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9296 f5534014-38df-0310-8fa8-9805f1628bb7
2003-12-13Put back "menu.h" - it's needed to declare "register_tap_menu_item()".guy1-1/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9279 f5534014-38df-0310-8fa8-9805f1628bb7
2003-12-13removed unused #include "menu.h" from the stats.c filesulfl1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9273 f5534014-38df-0310-8fa8-9805f1628bb7
2003-12-10Oops, I checked the wrong tap into CVS somehow.guy1-131/+559
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9234 f5534014-38df-0310-8fa8-9805f1628bb7
2003-12-09From Michael Lum:guy1-0/+307
new taps for GSM A-interface; fixes for ANSI A-interface taps. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9220 f5534014-38df-0310-8fa8-9805f1628bb7