aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/win32-file-dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2006-10-03Implement a real "Cancel" button for the coloring rules dialog - this was a ↵Ulf Lamping1-5/+5
hard one! It seems to be working without bugs and as designed now. As this was a huge internal change, new bugs are very probable - please report. The implementation isn't still perfect, a new dialog internal list could possibly be removed again. However, I want to check in at this condition, just in case I make things worse - again. svn path=/trunk/; revision=19413
2006-09-22Add support for reading from stdin under Windows. Based on a patch sentGerald Combs1-1/+1
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-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-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-23fix #927: Win32: delete an existing file, if the user want's to overwrite a ↵Ulf Lamping1-2/+5
file and confirmed this already svn path=/trunk/; revision=19008
2006-06-23use file name information from wiretap instead of "build in" valuesUlf Lamping1-33/+140
remove "double combobox" from the save dialog append the default file extension to the save file name, if the user didn't added one svn path=/trunk/; revision=18563
2006-06-22bugfix: saving the user specified packet range text must be utf8'ed, ↵Ulf Lamping1-1/+1
otherwise only the first char will be used svn path=/trunk/; revision=18547
2006-05-31Rename the main executable to "wireshark", along with more conversions:Gerald Combs1-6/+6
ethereal.com -> wireshark.org mailing lists and addresses ETHEREAL -> WIRESHARK Man pages Automake/Autoconf names svn path=/trunk/; revision=18271
2006-05-30ethereal.nsi -> wireshark.nsiGerald Combs1-6/+6
svn path=/trunk/; revision=18254
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-9/+9
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-04-30Add "file_dlg.h" to declare "set_last_open_dir()".Guy Harris1-0/+3
Try leaving "dlg_utils.h" out. svn path=/trunk/; revision=18041
2006-04-29Most of the stuff in file_dlg.c is specific to capture files, so renameGuy Harris1-2/+2
it to capture_file_dlg.c, and rename its header file. We might want to move the generic file dialog stuff to a file_dlg.c file (it's currently in dlg_utils.c), and move the non-capture-file dialog stuff in capture_file_dlg.c to another file. svn path=/trunk/; revision=18034
2006-04-28Fetch a combobox control handle before we try to use it. Add some neededGerald Combs1-11/+6
_T macros. Remove some extraneous comments. svn path=/trunk/; revision=18026
2006-04-26Properly set our export file name before we try to use it. Fixes bug 894.Gerald Combs1-1/+1
svn path=/trunk/; revision=18012
2006-04-14bugfix: don't crash with a Null pointer exception, if the open file preview ↵Ulf Lamping1-8/+12
timestamp can't be converted svn path=/trunk/; revision=17860
2006-03-28Make sure the export dialog is large enough. Fix a Unicode issue whileGerald Combs1-3/+3
we're at it. svn path=/trunk/; revision=17754
2006-03-08Use Unicode for all native Win32 calls. Unicode Windows applicationsGerald Combs1-124/+135
use UTF-16 internally and GTK+ 2.x uses UTF-8, which means we have to do a lots of conversions. Add utf_8to16() and utf_16to8 convenience functions to strutil.c. svn path=/trunk/; revision=17534
2006-02-22Remove svn:executable property from source filesJaap Keuter1-0/+0
svn path=/trunk/; revision=17370
2006-02-17More duplicate code removal.Gerald Combs1-9/+2
svn path=/trunk/; revision=17339
2006-02-17Include some header files so that we can get rid of duplicate code andGerald Combs1-23/+12
call various GTK+ routines. svn path=/trunk/; revision=17338
2006-02-16Move common control initialization to gtk/main.c where it belongs.Gerald Combs1-34/+4
Remove a MessageBox() call used for debugging. Fixup whitespace. svn path=/trunk/; revision=17319
2006-02-15Update a comment.Guy Harris1-3/+9
svn path=/trunk/; revision=17313
2006-02-13Add a placeholder for integrating with the display filter dialog.Gerald Combs1-0/+3
svn path=/trunk/; revision=17286
2006-02-13Copy over the file open/save code from the Win32 native branch.Gerald Combs1-0/+1453
The Windows-native routines were integrated by inserting #if GTK_MAJOR_VERSION >= 2 && _WIN32 win32_native_routine(GDK_WINDOW_HWND(top_level->window)); return; #endif at the beginning of each GTK+ file routine. There's probably a prettier way to do this. Some of the sizes need to be tweaked in win32-file-dlg.rc, but everything seems to work. Fix up whitespace. svn path=/trunk/; revision=17285