aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2006-10-02further code cleanup: don't use the term "marked" for the color filters, the ↵Ulf Lamping1-26/+26
right term is "selected". That caused me "concerns" wether the marked feature of the packet list was involved - which is actually not svn path=/trunk/; revision=19399
2006-10-02instead of reverting the whole changes by the *first* cancelled dialog box, ↵Ulf Lamping1-13/+24
revert them by clicking "Cancel" on the *last* dialog - this behaviour just makes more sense. svn path=/trunk/; revision=19397
2006-10-02Don't show Tools menu at all if Lua not presentMartin Mathieson1-1/+3
svn path=/trunk/; revision=19394
2006-10-02various (huge) code cleanup incl. splitting of the coloring dialog and the ↵Ulf Lamping5-664/+783
actual color rule edit dialog into two files - this makes the things much more clearer now (at least for me) svn path=/trunk/; revision=19392
2006-10-01If the Cancel button was clicked and another filter dialog is still open - ↵Ulf Lamping1-43/+93
yes that's possible - reverse the changes on it as well to reflect the current internal list. svn path=/trunk/; revision=19391
2006-10-01Change the filter dialog (capture and display filters), so it has a real ↵Ulf Lamping1-64/+106
Cancel button now - the former Close button didn't reverted the changes done. svn path=/trunk/; revision=19390
2006-09-30add a missing #includeUlf Lamping1-0/+1
svn path=/trunk/; revision=19384
2006-09-30A new field information flag, FI_URL, to indicate a field contains a URL.Graeme Lunt1-1/+9
This is used to display the field underlined and to allow the user to double-click on it (like FT_FRAMENUM) to open the URL in the configured browser. Example usage in the x509ce and logotype certificate extensions. svn path=/trunk/; revision=19383
2006-09-29from Stephen Fisher:Ulf Lamping1-1/+1
Attached is a patch for consideration that changes the title in the preferences notebook to be the full description of the preference (but leaves the short name in the preferences list on the left). svn path=/trunk/; revision=19370
2006-09-29fix the context menu "Protocol Preferences" bug AGAIN (bug introduced again ↵Ulf Lamping1-1/+1
in 19291) svn path=/trunk/; revision=19369
2006-09-28Avoid to add an empty menu if there's no Lua.Luis Ontanon1-1/+6
svn path=/trunk/; revision=19346
2006-09-27* rename REGISTER_STAT_GROUP_E -> register_stat_group_tLuis Ontanon4-5/+14
* Add a "Tools" menu * allow wslua's register_menu to register menu items into more menus svn path=/trunk/; revision=19338
2006-09-24instead of simply removing G_BEGIN_DECLS (maybe someone wants to use it in a ↵Ulf Lamping1-0/+6
c++ project), use an #if GTK_MAJOR_VERSION >= 2 around all definitions. This will also make it clear that this widget won't work with gtk 1.x svn path=/trunk/; revision=19317
2006-09-24Squelch some compiler warnings.Guy Harris1-4/+4
svn path=/trunk/; revision=19313
2006-09-24we dont have G_BEGIN_DECLS on old gtk/glib versionsRonnie Sahlberg1-2/+0
since we dont use c++ anyway we dont need these macros svn path=/trunk/; revision=19310
2006-09-23Get rid of a tab after a / that caused make on MacOS X to believe that \t ↵Luis Ontanon1-1/+1
was another target svn path=/trunk/; revision=19305
2006-09-23rtp_player.c is already included in WIRESHARK_GTK_SRC, no need to mention it ↵Ulf Lamping1-1/+0
twice svn path=/trunk/; revision=19299
2006-09-23GTK2: add an analog VU meter like display widget Ulf Lamping5-9/+1740
Win32: use the widget to display the RSSI and Link Speed values as this is far better understandable than the raw numerical values (especially if you don't know the values well). the GTK VU meter widget is based on LGPL'ed code from http://www.mumblelina.com/index.php?gtkvumeter=1 ... and I've heavily changed and extended it to fit the problem here. We might use the VU meter widget later at other places as well ... svn path=/trunk/; revision=19298
2006-09-22experimental: append the current maximum expert warning level to the "File" ↵Ulf Lamping1-8/+13
statusbar, e.g. "[Expert: Chat]". I'm still looking for a good way to display the current expert level and this seems to be the best place. However, ideas are still welcome ... svn path=/trunk/; revision=19297
2006-09-22Don't complain if we can't find airpcap.dll.Gerald Combs1-6/+1
svn path=/trunk/; revision=19296
2006-09-22Move Copy below the tree manipulation options.Jaap Keuter1-3/+3
svn path=/trunk/; revision=19292
2006-09-22Add support for reading from stdin under Windows. Based on a patch sentGerald Combs5-21/+21
in last year by Gianluca Varenni. Add partial support for reading from named pipes (currently disabled). Move utf_8to16() and utf_16to8() to a separate module (unicode-utils.[ch]) so that we don't have to cut and paste code in dumpcap.c. Fix up whitespace. svn path=/trunk/; revision=19291
2006-09-21Include "rtp_player.h" in "voip_calls.c" if we're supporting the RTPGuy Harris3-2/+8
player, so that we get declartions of rtp_player_init() and add_rtp_packet(). Constify the first argument to add_rtp_packet(), as it's passed a pointer to a const value. svn path=/trunk/; revision=19272
2006-09-18Fix protocol reference link URL.Gerald Combs1-1/+1
svn path=/trunk/; revision=19256
2006-09-15Use the same caption in the Win32 version as in the GTK dialogs: "Wireshark: ↵Ulf Lamping1-1/+1
Select a capture file" -> "Wireshark: Open Capture File" svn path=/trunk/; revision=19238
2006-09-12Move the PortAudio stuff to from version_info.c to gtk/main.c, so it canGuy Harris1-1/+17
use Pa_GetVersionText(). (The word-wrapping stuff appears to work.) svn path=/trunk/; revision=19222
2006-09-12various nmake related build file cleanupsUlf Lamping3-21/+10
svn path=/trunk/; revision=19198
2006-09-10From Alejandro Vaquero:Anders Broman1-2/+2
Need to use HAVE_LIBPORTAUDIO instead of PORTAUDIO_DIR in voip_calls.c And build the windows version with Port audio. svn path=/trunk/; revision=19187
2006-09-10minor cleanup for making codecsBill Meier1-1/+0
svn path=/trunk/; revision=19184
2006-09-05rtp_player.c will now compile with the new API, although it will notJörg Mayer1-3/+72
actually do something useful except to print that the new API is not supported. Adapt acinclude.m4 to provide PORTAUDIO_API_1 and add back the check_message to indicate *why* we are checking for the type. svn path=/trunk/; revision=19148
2006-09-05Move the include of rtp_player.h after the include of stuff it needs,Guy Harris1-6/+7
and include rtp_analysis.h as well, as it declares something else rtp_player.h needs. svn path=/trunk/; revision=19146
2006-09-04Comment #endifs so you can tell what they match.Guy Harris1-2/+2
svn path=/trunk/; revision=19144
2006-09-04Build with rtp_player.c.Guy Harris1-0/+1
svn path=/trunk/; revision=19143
2006-09-04Correct some typos and add some comments.Anders Broman2-7/+7
svn path=/trunk/; revision=19135
2006-09-04The previous way of (not) including portaudio support didn'tJörg Mayer3-8/+8
work reliably (at least it didn't work on my system). Change it to just wrap the rtp_player.[hc] files into a #if defined(...) #endif. svn path=/trunk/; revision=19134
2006-09-03Ad $Id: § and reorder and reformat some comments in the header.Jörg Mayer1-43/+53
svn path=/trunk/; revision=19127
2006-09-02Fix path and name.Anders Broman1-2/+0
svn path=/trunk/; revision=19120
2006-09-02Squelch compiler warnings, and get rid of unused variables andGuy Harris2-29/+25
declarations. Define functions with no arguments as such. Clean up white space. Declare tables in the codec .h files. svn path=/trunk/; revision=19118
2006-09-02Move the codecs into a top-level "codecs" subdirectory; there's noGuy Harris11-215/+4
guarantee that all programs using the codecs will necessarily be using GTK+. svn path=/trunk/; revision=19117
2006-09-01- Add svn:ignoreJörg Mayer1-30/+32
- Replace the completely wrong Makefile.am (was a copy of makefile.nmake) by the version the author sent. As I needed to retrieve it from the ML archives, it may be different from the originally sent version. If someone still has the original version in his inbox, please send it to me. svn path=/trunk/; revision=19107
2006-08-31move value_strings from expert_dialogs into expert.c to remove duplicatesUlf Lamping2-34/+0
keep the highest severity level of the current file (experimental) svn path=/trunk/; revision=19104
2006-08-31dont include config.nmake in the codecs makefile it appears it is not neededRonnie Sahlberg1-1/+1
dont link with libcodec.a 1, this should be a shared library not a static one? 2, its not built on unix so it is missing making unix/linux build work again svn path=/trunk/; revision=19101
2006-08-31the commands for a rule in a amkefile must in classical makefiles start with ↵Ronnie Sahlberg1-3/+3
a TAB not with spaces. svn path=/trunk/; revision=19100
2006-08-31Remove trailing backslash from CFLAGSJaap Keuter1-1/+1
svn path=/trunk/; revision=19099
2006-08-30From Alejandro Vaquero:Anders Broman4-11/+92
- Change the "listen_rtp" to "rtp_player" - Change from a plugin to be part of the core - By default it will not compile with the rtp_player. In order to compile it is necessary to: + For windows: uncomment the line "PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake + For linux: using the "--with-portaudio=yes" svn path=/trunk/; revision=19094
2006-08-30From Alejandro Vaquero:Anders Broman2-0/+1871
- Change the "listen_rtp" to "rtp_player" - Change from a plugin to be part of the core - By default it will not compile with the rtp_player. In order to compile it is necessary to: + For windows: uncomment the line "PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake + For linux: using the "--with-portaudio=yes" svn path=/trunk/; revision=19093
2006-08-30From Alejandro Vaquero:Anders Broman8-0/+203
The "codecs" svn path=/trunk/; revision=19092
2006-08-30Remove a lot of XXX:Ulf Lamping1-23/+102
- add help buttons to the dialogs - the read filter fields are now working (the filter button still not) - PDML export don't need "Packet Format" settings, grey them out - fix a bug in the filter fields coloring function (g_alloc space was too small) svn path=/trunk/; revision=19091
2006-08-30have only one Export/File menu entry for the Win32 dialog, instead of 5 ↵Ulf Lamping1-0/+5
entries leading to exactly the same dialog (with a single setting - the file type - set different) we might want the Unix/GTK version work the same way, as this is how other programs I know work as well ... and making the documentation easier by desribing only one way how it's working svn path=/trunk/; revision=19090
2006-08-30add some file dialog related help pagesUlf Lamping3-4/+48
use file related instead of print related help pages for the export dialogs svn path=/trunk/; revision=19089