aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/win32-file-dlg.c
blob: 81f993fd7bf34d0296b81445dcd5c31252efdb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
/* win32-file-dlg.c
 * Native Windows file dialog routines
 *
 * $Id$
 *
 * Ethereal - Network traffic analyzer
 * By Gerald Combs <gerald@ethereal.com>
 * Copyright 2004 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include "globals.h"

#include <gtk/gtk.h>

#include <stdio.h>

#include <windows.h>
#include <windowsx.h>
#include <commdlg.h>
#include <richedit.h>
#include <tchar.h>
#include <wchar.h>

#include <stdlib.h>
#include <sys/stat.h>
#include <io.h>
#include <fcntl.h>

#include "alert_box.h"
#include "color.h"
#include "color_filters.h"
#include "epan/filesystem.h"
#include "epan/addr_resolv.h"
#include "merge.h"
#include "epan/prefs.h"
#include "print.h"
#include "simple_dialog.h"
#include "util.h"
#include "epan/strutil.h"

#include "capture_file_dlg.h"
#include "main.h"
#include "menu.h"
#include "dlg_utils.h"
#include "capture_dlg.h"

#include "win32-file-dlg.h"

typedef enum {
    merge_append,
    merge_chrono,
    merge_prepend
} merge_action_e;

/*
 * XXX - There should be separate open and save lists, and they should
 * come from Wiretap.
 */
#define FILE_TYPES_OPEN \
    _T("Accellent 5Views (*.5vw)\0")			_T("*.5vw\0")               \
    _T("Ethereal/tcpdump (*.cap, *.pcap)\0")		_T("*.cap;*.pcap\0")        \
    _T("Novell LANalyzer (*.tr1)\0")			_T("*.tr1\0")               \
    _T("NG/NAI Sniffer (*.cap, *.enc, *.trc)\0")	_T("*.cap;*.enc;*.trc\0")   \
    _T("Sun snoop (*.snoop)\0")				_T("*.snoop\0")             \
    _T("WildPackets EtherPeek (*.pkt)\0")		_T("*.pkt\0")               \
    _T("All Files (*.*)\0")				_T("*.*\0")

#define FILE_OPEN_DEFAULT 2 /* Ethereal/tcpdump */

#define FILE_TYPES_SAVE FILE_TYPES_OPEN

#define FILE_SAVE_DEFAULT FILE_OPEN_DEFAULT

#define FILE_TYPES_MERGE FILE_TYPES_OPEN

#define FILE_MERGE_DEFAULT FILE_OPEN_DEFAULT

#define FILE_TYPES_EXPORT \
    _T("Plain text (*.txt)\0")		        	_T("*.txt\0")	\
    _T("PostScript (*.ps)\0")			        _T("*.ps\0")	\
    _T("CSV (Comma Separated Values summary (*.csv)\0")	_T("*.csv\0")	\
    _T("PSML (XML packet summary) (*.psml)\0") 		_T("*.psml\0")	\
    _T("PDML (XML packet detail) (*.pdml)\0")  		_T("*.pdml\0")

#define FILE_TYPES_RAW \
    _T("Raw data (*.bin, *.dat, *.raw)\0")	_T("*.bin;*.dat;*.raw\0")	\
    _T("All Files (*.*)\0")			_T("*.*\0")

#define FILE_RAW_DEFAULT 1

#define FILE_TYPES_COLOR \
    _T("Text Files (*.txt)\0")	_T("*.txt\0")	\
    _T("All Files (*.*)\0")	_T("*.*\0")

#define FILE_DEFAULT_COLOR 2


static UINT CALLBACK open_file_hook_proc(HWND of_hwnd, UINT ui_msg, WPARAM w_param, LPARAM l_param);
static UINT CALLBACK save_as_file_hook_proc(HWND of_hwnd, UINT ui_msg, WPARAM w_param, LPARAM l_param);
static UINT CALLBACK merge_file_hook_proc(HWND mf_hwnd, UINT ui_msg, WPARAM w_param, LPARAM l_param);
static UINT CALLBACK export_file_hook_proc(HWND of_hwnd, UINT ui_msg, WPARAM w_param, LPARAM l_param);
static UINT CALLBACK export_raw_file_hook_proc(HWND of_hwnd, UINT ui_msg, WPARAM w_param, LPARAM l_param);
static void range_update_dynamics(HWND sf_hwnd, packet_range_t *range);
static void range_handle_wm_initdialog(HWND dlg_hwnd, packet_range_t *range);
static void range_handle_wm_command(HWND dlg_hwnd, HWND ctrl, WPARAM w_param, packet_range_t *range);

static int            filetype;
static packet_range_t range;
static merge_action_e merge_action;
static print_args_t   print_args;
/* XXX - The reason g_sf_hwnd exists is so that we can call
 *       range_update_dynamics() from anywhere; it's currently
 *       static, but if we move to using the native Windows
 *       print dialog and put range widgets in it as well,
 *       it might be moved to a separate file.
 *
 *       However, the save file dialog hogs the foreground, so
 *       this may not be necessary (and, in fact, the file dialogs
 *       should arguably be modal to the window for the file
 *       being opened/saved/etc., even on GTK+ 1.2[.x]).
 */
static HWND           g_sf_hwnd = NULL;

gboolean
win32_open_file (HWND h_wnd) {
    static OPENFILENAME ofn;
    TCHAR  file_name[MAX_PATH] = _T("");
    int    err;
    char  *dirname;

    /* XXX - Check for version and set OPENFILENAME_SIZE_VERSION_400
       where appropriate */
    ZeroMemory(&ofn, sizeof(ofn));
#ifdef OPENFILENAME_SIZE_VERSION_400
    of.lStructSize = OPENFILENAME_SIZE_VERSION_400;
#else
    ofn.lStructSize = sizeof(ofn);
#endif
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    /* XXX - Grab the rest of the extension list from ethereal.nsi. */
    ofn.lpstrFilter = FILE_TYPES_OPEN;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = FILE_OPEN_DEFAULT;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    /* XXX - Assuming that we're using UTF8 elsewhere. */
    if (prefs.gui_fileopen_style == FO_STYLE_SPECIFIED && prefs.gui_fileopen_dir[0] != '\0') {
	ofn.lpstrInitialDir = utf_8to16(prefs.gui_fileopen_dir);
    } else {
	ofn.lpstrInitialDir = NULL;
    }
    ofn.lpstrTitle = _T("Ethereal: Select a capture file");
    ofn.Flags = OFN_ENABLESIZING | OFN_ENABLETEMPLATE | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY |
	    OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lpfnHook = open_file_hook_proc;
    ofn.lpTemplateName = _T("ETHEREAL_OPENFILENAME_TEMPLATE");

    /* XXX - Get our filter */

    if (GetOpenFileName(&ofn)) {
	if (cf_open(&cfile, utf_16to8(file_name), FALSE, &err) != CF_OK) {
	    return FALSE;
	}
	switch (cf_read(&cfile)) {
            case CF_READ_OK:
            case CF_READ_ERROR:
                dirname = get_dirname(utf_16to8(file_name));
                set_last_open_dir(dirname);
                return TRUE;
                break;
	}
    }
    return FALSE;
}


void
win32_save_as_file(HWND h_wnd, action_after_save_e action_after_save, gpointer action_after_save_data) {
    static OPENFILENAME ofn;
    TCHAR  file_name[MAX_PATH] = _T("");
    gchar *dirname;

    /* XXX - Check for version and set OPENFILENAME_SIZE_VERSION_400
       where appropriate */
    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    /* XXX - Grab the rest of the extension list from ethereal.nsi. */
    ofn.lpstrFilter = FILE_TYPES_SAVE;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = FILE_SAVE_DEFAULT;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    if (prefs.gui_fileopen_style == FO_STYLE_SPECIFIED && prefs.gui_fileopen_dir[0] != '\0') {
	ofn.lpstrInitialDir = utf_8to16(prefs.gui_fileopen_dir);
    } else {
	ofn.lpstrInitialDir = NULL;
    }
    ofn.lpstrTitle = _T("Ethereal: Save file as");
    ofn.Flags = OFN_ENABLESIZING | OFN_ENABLETEMPLATE | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY |
	    OFN_PATHMUSTEXIST | OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lpfnHook = save_as_file_hook_proc;
    ofn.lpTemplateName = _T("ETHEREAL_SAVEFILENAME_TEMPLATE");

    if (GetSaveFileName(&ofn)) {
	g_sf_hwnd = NULL;
	/* Write out the packets (all, or only the ones from the current
	   range) to the file with the specified name. */
	/* XXX - If we're overwriting a file, GetSaveFileName does the
	   standard windows confirmation.  cf_save() then rejects the overwrite. */
	if (cf_save(&cfile, utf_16to8(file_name), &range, filetype, FALSE) != CF_OK) {
	    /* The write failed.  Try again. */
	    win32_save_as_file(h_wnd, action_after_save, action_after_save_data);
	    return;
	}

	/* Save the directory name for future file dialogs. */
	dirname = get_dirname(utf_16to8(file_name));  /* Overwrites cf_name */
	set_last_open_dir(dirname);

	/* we have finished saving, do we have pending things to do? */
	switch(action_after_save) {
	    case(after_save_no_action):
		break;
	    case(after_save_open_dialog):
		win32_open_file(h_wnd);
		break;
	    case(after_save_open_recent_file):
		menu_open_recent_file_cmd(action_after_save_data);
		break;
	    case(after_save_open_dnd_file):
		dnd_open_file_cmd(action_after_save_data);
		break;
	    case(after_save_merge_dialog):
		win32_merge_file(h_wnd);
		break;
#ifdef HAVE_LIBPCAP
	    case(after_save_capture_dialog):
		capture_start_confirmed();
		break;
#endif
	    case(after_save_close_file):
		cf_close(&cfile);
		break;
	     case(after_save_exit):
		main_do_quit();
		break;
	    default:
		g_assert_not_reached();
	}
    }
    g_sf_hwnd = NULL;
}


void
win32_merge_file (HWND h_wnd) {
    static      OPENFILENAME ofn;
    TCHAR       file_name[MAX_PATH] = _T("");
    char       *dirname;
    cf_status_t merge_status;
    char       *in_filenames[2];
    int         err;
    char       *tmpname;

    /* XXX - Check for temp file and prompt accordingly */

    /* XXX - Check for version and set OPENFILENAME_SIZE_VERSION_400
       where appropriate */
    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    /* XXX - Grab the rest of the extension list from ethereal.nsi. */
    ofn.lpstrFilter = FILE_TYPES_MERGE;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = FILE_MERGE_DEFAULT;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    if (prefs.gui_fileopen_style == FO_STYLE_SPECIFIED && prefs.gui_fileopen_dir[0] != '\0') {
	ofn.lpstrInitialDir = utf_8to16(prefs.gui_fileopen_dir);
    } else {
	ofn.lpstrInitialDir = NULL;
    }
    ofn.lpstrTitle = _T("Ethereal: Merge with capture file");
    ofn.Flags = OFN_ENABLESIZING | OFN_ENABLETEMPLATE | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY |
	    OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lpfnHook = merge_file_hook_proc;
    ofn.lpTemplateName = _T("ETHEREAL_MERGEFILENAME_TEMPLATE");

    if (GetOpenFileName(&ofn)) {
	filetype = cfile.cd_t;

	/* merge or append the two files */

        tmpname = NULL;
	switch (merge_action) {
	    case merge_append:
		/* append file */
		in_filenames[0] = utf_16to8(file_name);
		in_filenames[1] = cfile.filename;
		merge_status = cf_merge_files(&tmpname, 2, in_filenames, filetype, TRUE);
		break;
	    case merge_chrono:
		/* chonological order */
		in_filenames[0] = cfile.filename;
		in_filenames[1] = utf_16to8(file_name);
                merge_status = cf_merge_files(&tmpname, 2, in_filenames, filetype, FALSE);
		break;
	    case merge_prepend:
		/* prepend file */
		in_filenames[0] = cfile.filename;
		in_filenames[1] = utf_16to8(file_name);
                merge_status = cf_merge_files(&tmpname, 2, in_filenames, filetype, TRUE);
		break;
	    default:
		g_assert_not_reached();
	}

	if(merge_status != CF_OK) {
	    /* merge failed */
            g_free(tmpname);
//	    if (rfcode != NULL)
//		dfilter_free(rfcode);
	    return;
	}

	cf_close(&cfile);

	/* Try to open the merged capture file. */
	if (cf_open(&cfile, tmpname, TRUE /* temporary file */, &err) != CF_OK) {
	    /* We couldn't open it; don't dismiss the open dialog box,
	       just leave it around so that the user can, after they
	       dismiss the alert box popped up for the open error,
	       try again. */
//	    if (rfcode != NULL)
//		dfilter_free(rfcode);
            return;
	}

	/* Attach the new read filter to "cf" ("cf_open()" succeeded, so
	   it closed the previous capture file, and thus destroyed any
	   previous read filter attached to "cf"). */
//	cfile.rfcode = rfcode;

	switch (cf_read(&cfile)) {
            case CF_READ_OK:
            case CF_READ_ERROR:
                dirname = get_dirname(utf_16to8(file_name));
                set_last_open_dir(dirname);
                menu_name_resolution_changed();
                break;
            case CF_READ_ABORTED:
                break;
        }
    }
}

void
win32_export_file(HWND h_wnd, export_type_e export_type) {
    static            OPENFILENAME ofn;
    TCHAR             file_name[MAX_PATH] = _T("");
    char             *dirname;
    cf_print_status_t status;

    /* XXX - Check for version and set OPENFILENAME_SIZE_VERSION_400
       where appropriate */
    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    ofn.lpstrFilter = FILE_TYPES_EXPORT;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = export_type;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    if (prefs.gui_fileopen_style == FO_STYLE_SPECIFIED && prefs.gui_fileopen_dir[0] != '\0') {
	ofn.lpstrInitialDir = utf_8to16(prefs.gui_fileopen_dir);
    } else {
	ofn.lpstrInitialDir = NULL;
    }
    ofn.lpstrTitle = _T("Ethereal: Export");
    ofn.Flags = OFN_ENABLESIZING | OFN_ENABLETEMPLATE | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY |
	    OFN_PATHMUSTEXIST | OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lpfnHook = export_file_hook_proc;
    ofn.lpTemplateName = _T("ETHEREAL_EXPORTFILENAME_TEMPLATE");

    /* Fill in our print (and export) args */

    print_args.format              = PR_FMT_TEXT;
    print_args.to_file             = TRUE;
    print_args.cmd                 = NULL;
    print_args.print_summary       = TRUE;
    print_args.print_dissections   = print_dissections_as_displayed;
    print_args.print_hex           = FALSE;
    print_args.print_formfeed      = FALSE;

    if (GetSaveFileName(&ofn)) {
	print_args.file = utf_16to8(file_name);
	switch (ofn.nFilterIndex) {
	    case export_type_text:	/* Text */
		print_args.stream = print_stream_text_new(TRUE, print_args.file);
		if (print_args.stream == NULL) {
		    open_failure_alert_box(print_args.file, errno, TRUE);
		    return;
		}
		status = cf_print_packets(&cfile, &print_args);
		break;
	    case export_type_ps:	/* PostScript (r) */
		print_args.stream = print_stream_ps_new(TRUE, print_args.file);
		if (print_args.stream == NULL) {
		    open_failure_alert_box(print_args.file, errno, TRUE);
		    return;
		}
		status = cf_print_packets(&cfile, &print_args);
		break;
            case export_type_csv:     /* CSV */
                status = cf_write_csv_packets(&cfile, &print_args);
                break;
	    case export_type_psml:	/* PSML */
		status = cf_write_psml_packets(&cfile, &print_args);
		break;
	    case export_type_pdml:	/* PDML */
		status = cf_write_pdml_packets(&cfile, &print_args);
		break;
	    default:
		return;
	}

	switch (status) {
	    case CF_PRINT_OK:
		break;
            case CF_PRINT_OPEN_ERROR:
		open_failure_alert_box(print_args.file, errno, TRUE);
		break;
            case CF_PRINT_WRITE_ERROR:
		write_failure_alert_box(print_args.file, errno);
		break;
	}
	/* Save the directory name for future file dialogs. */
	dirname = get_dirname(utf_16to8(file_name));  /* Overwrites cf_name */
	set_last_open_dir(dirname);
    }
}

void
win32_export_raw_file(HWND h_wnd) {
    static        OPENFILENAME ofn;
    TCHAR         file_name[MAX_PATH] = _T("");
    char         *dirname;
    const guint8 *data_p = NULL;
    const char   *file = NULL;
    int           fd;

    if (!cfile.finfo_selected) {
	/* This shouldn't happen */
	simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "No bytes were selected.");
	return;
    }

    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    /* XXX - Grab the rest of the extension list from ethereal.nsi. */
    ofn.lpstrFilter = FILE_TYPES_RAW;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = FILE_RAW_DEFAULT;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    if (prefs.gui_fileopen_style == FO_STYLE_SPECIFIED && prefs.gui_fileopen_dir[0] != '\0') {
	ofn.lpstrInitialDir = utf_8to16(prefs.gui_fileopen_dir);
    } else {
	ofn.lpstrInitialDir = NULL;
    }
    ofn.lpstrTitle = _T("Ethereal: Export Raw Data");
    ofn.Flags = OFN_ENABLESIZING | OFN_ENABLETEMPLATE | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY |
	    OFN_PATHMUSTEXIST | OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lCustData = cfile.finfo_selected->length;
    ofn.lpfnHook = export_raw_file_hook_proc;
    ofn.lpTemplateName = _T("ETHEREAL_EXPORTRAWFILENAME_TEMPLATE");

    /*
     * XXX - The GTK+ code uses get_byte_view_data_and_length().  We just
     * grab the info from cfile.finfo_selected.  Which is more "correct"?
     */

    if (GetSaveFileName(&ofn)) {
	data_p = tvb_get_ptr(cfile.finfo_selected->ds_tvb, 0, -1) +
		cfile.finfo_selected->start;
        fd = open(utf_16to8(file_name), O_WRONLY|O_CREAT|O_TRUNC|O_BINARY, 0666);
        if (fd == -1) {
	    open_failure_alert_box(file, errno, TRUE);
	    return;
        }
        if (write(fd, data_p, cfile.finfo_selected->length) < 0) {
	    write_failure_alert_box(file, errno);
	    close(fd);
	    return;
        }
        if (close(fd) < 0) {
	    write_failure_alert_box(file, errno);
	    return;
        }

	/* Save the directory name for future file dialogs. */
	dirname = get_dirname(utf_16to8(file_name));  /* Overwrites cf_name */
	set_last_open_dir(dirname);
    }
}

void
win32_export_color_file(HWND h_wnd) {
    static OPENFILENAME ofn;
    TCHAR  file_name[MAX_PATH] = _T("");
    gchar *dirname;

    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    /* XXX - Grab the rest of the extension list from ethereal.nsi. */
    ofn.lpstrFilter = FILE_TYPES_COLOR;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = FILE_DEFAULT_COLOR;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    ofn.lpstrInitialDir = NULL;
    ofn.lpstrTitle = _T("Ethereal: Export Color Filters");
    ofn.Flags = OFN_ENABLESIZING | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY |
	    OFN_PATHMUSTEXIST | OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lpfnHook = NULL;
    ofn.lpTemplateName = NULL;

    filetype = cfile.cd_t;

    /* XXX - Support marked filters */
    if (GetSaveFileName(&ofn)) {
	if (!color_filters_export(utf_16to8(file_name), FALSE))
	    return;

	/* Save the directory name for future file dialogs. */
	dirname = get_dirname(utf_16to8(file_name));  /* Overwrites cf_name */
	set_last_open_dir(dirname);
    }
}

void
win32_import_color_file(HWND h_wnd) {
    static OPENFILENAME ofn;
    TCHAR  file_name[MAX_PATH] = _T("");
    gchar *dirname;

    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = h_wnd;
    ofn.hInstance = (HINSTANCE) GetWindowLong(h_wnd, GWL_HINSTANCE);
    /* XXX - Grab the rest of the extension list from ethereal.nsi. */
    ofn.lpstrFilter = FILE_TYPES_COLOR;
    ofn.lpstrCustomFilter = NULL;
    ofn.nMaxCustFilter = 0;
    ofn.nFilterIndex = FILE_DEFAULT_COLOR;
    ofn.lpstrFile = file_name;
    ofn.nMaxFile = MAX_PATH;
    ofn.lpstrFileTitle = NULL;
    ofn.nMaxFileTitle = 0;
    ofn.lpstrInitialDir = NULL;
    ofn.lpstrTitle = _T("Ethereal: Import Color Filters");
    ofn.Flags = OFN_ENABLESIZING | OFN_EXPLORER |
	    OFN_NOCHANGEDIR | OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY |
	    OFN_PATHMUSTEXIST | OFN_ENABLEHOOK;
    ofn.lpstrDefExt = NULL;
    ofn.lpfnHook = NULL;
    ofn.lpTemplateName = NULL;

    /* XXX - Support marked filters */
    if (GetOpenFileName(&ofn)) {
	if (!color_filters_import(utf_16to8(file_name), NULL))
	    return;

	/* Save the directory name for future file dialogs. */
	dirname = get_dirname(utf_16to8(file_name));  /* Overwrites cf_name */
	set_last_open_dir(dirname);
    }
}


/*
 * Private routines
 */
static void
format_handle_wm_initdialog(HWND dlg_hwnd, print_args_t *args) {
    HWND cur_ctrl;

    /* Set the "Packet summary" box */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_SUMMARY_CB);
    SendMessage(cur_ctrl, BM_SETCHECK, args->print_summary, 0);

    /* Set the "Packet details" box */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_DETAIL_CB);
    SendMessage(cur_ctrl, BM_SETCHECK, args->print_dissections != print_dissections_none, 0);

    /* Set the "Packet details" combo */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_DETAIL_COMBO);
    SendMessage(cur_ctrl, CB_ADDSTRING, 0, (WPARAM) _T("All collapsed"));
    SendMessage(cur_ctrl, CB_ADDSTRING, 0, (WPARAM) _T("As displayed"));
    SendMessage(cur_ctrl, CB_ADDSTRING, 0, (WPARAM) _T("All expanded"));

    switch (args->print_dissections) {
	case print_dissections_none:
	case print_dissections_collapsed:
	    SendMessage(cur_ctrl, CB_SETCURSEL, 0, 0);
	    break;
	case print_dissections_as_displayed:
	    SendMessage(cur_ctrl, CB_SETCURSEL, 1, 0);
	    break;
	case print_dissections_expanded:
	    SendMessage(cur_ctrl, CB_SETCURSEL, 2, 0);
	default:
	    g_assert_not_reached();
    }

    /* Set the "Packet bytes" box */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_BYTES_CB);
    SendMessage(cur_ctrl, BM_SETCHECK, args->print_hex, 0);

    /* Set the "Each packet on a new page" box */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_NEW_PAGE_CB);
    SendMessage(cur_ctrl, BM_SETCHECK, args->print_formfeed, 0);

    print_update_dynamic(dlg_hwnd, args);
}

static void
print_update_dynamic(HWND dlg_hwnd, print_args_t *args) {
    HWND cur_ctrl;

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_SUMMARY_CB);
    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
	args->print_summary = TRUE;
    else
	args->print_summary = FALSE;

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_DETAIL_CB);
    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
	cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_DETAIL_COMBO);
	switch (SendMessage(cur_ctrl, CB_GETCURSEL, 0, 0)) {
	    case 0:
		args->print_dissections = print_dissections_collapsed;
		break;
	    case 1:
		args->print_dissections = print_dissections_as_displayed;
		break;
	    case 2:
		args->print_dissections = print_dissections_expanded;
		break;
	    default:
		g_assert_not_reached();
	}
	EnableWindow(cur_ctrl, TRUE);
    } else {
	args->print_dissections = print_dissections_none;
	cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_DETAIL_COMBO);
	EnableWindow(cur_ctrl, FALSE);
    }

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_BYTES_CB);
    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
	args->print_hex = TRUE;
    else
	args->print_hex = FALSE;

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_PKT_NEW_PAGE_CB);
    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
	args->print_formfeed = TRUE;
    else
	args->print_formfeed = FALSE;
}


#define PREVIEW_STR_MAX      200
#define PREVIEW_TIMEOUT_SECS   3


/* If preview_file is NULL, disable the elements.  If not, enable and
 * show the preview info. */
static gboolean
preview_set_filename(HWND of_hwnd, gchar *preview_file) {
    HWND        cur_ctrl;
    int         i;
    gboolean    enable = FALSE;
    wtap       *wth;
    const struct wtap_pkthdr *phdr;
    int         err = 0;
    gchar      *err_info;
    TCHAR       string_buff[PREVIEW_STR_MAX];
    long        data_offset;
    guint       packet = 0;
    guint64     filesize;
    time_t      ti_time;
    struct tm  *ti_tm;
    guint       elapsed_time;
    time_t      time_preview;
    time_t      time_current;
    double      start_time = 0;
    double      stop_time = 0;
    double      cur_time;
    gboolean    is_breaked = FALSE;

    if (preview_file != NULL && strlen(preview_file) > 0) {
	enable = TRUE;
    }

    for (i = EWFD_PT_FILENAME; i <= EWFD_PTX_ELAPSED; i++) {
	cur_ctrl = GetDlgItem(of_hwnd, i);
	if (cur_ctrl) {
	    EnableWindow(cur_ctrl, enable);
	}
    }

    for (i = EWFD_PTX_FILENAME; i <= EWFD_PTX_ELAPSED; i++) {
	cur_ctrl = GetDlgItem(of_hwnd, i);
	if (cur_ctrl) {
	    SetWindowText(cur_ctrl, _T("-"));
	}
    }

    if (enable) {
	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_FILENAME);
	SetWindowText(cur_ctrl, utf_8to16(get_basename(preview_file)));

	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_FORMAT);
	wth = wtap_open_offline(preview_file, &err, &err_info, TRUE);
	if (cur_ctrl && wth == NULL) {
	    if(err == WTAP_ERR_FILE_UNKNOWN_FORMAT) {
		SetWindowText(cur_ctrl, _T("unknown file format"));
	    } else {
		SetWindowText(cur_ctrl, _T("error opening file"));
	    }
	    return FALSE;
	}

	/* size */
        filesize = wtap_file_size(wth, &err);
	_snwprintf(string_buff, PREVIEW_STR_MAX, _T("%") _T(PRIu64) _T(" bytes"), filesize);
	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_SIZE);
	SetWindowText(cur_ctrl, string_buff);

	/* type */
	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_FORMAT);
	SetWindowText(cur_ctrl, utf_8to16(wtap_file_type_string(wtap_file_type(wth))));

	time(&time_preview);
	while ( (wtap_read(wth, &err, &err_info, &data_offset)) ) {
	    phdr = wtap_phdr(wth);
            cur_time = nstime_to_sec( (const nstime_t *) &phdr->ts );
	    if(packet == 0) {
		start_time  = cur_time;
		stop_time = cur_time;
	    }
	    if (cur_time < start_time) {
		start_time = cur_time;
	    }
	    if (cur_time > stop_time){
		stop_time = cur_time;
	    }
	    packet++;
	    if(packet%100) {
		time(&time_current);
		if(time_current-time_preview >= PREVIEW_TIMEOUT_SECS) {
		    is_breaked = TRUE;
		    break;
		}
	    }
	}

	if(err != 0) {
	    _snwprintf(string_buff, PREVIEW_STR_MAX, _T("error after reading %u packets"), packet);
	    cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_PACKETS);
	    SetWindowText(cur_ctrl, string_buff);
	    wtap_close(wth);
	    return TRUE;
	}

	/* packet count */
	if(is_breaked) {
	    _snwprintf(string_buff, PREVIEW_STR_MAX, _T("more than %u packets (preview timeout)"), packet);
	} else {
	    _snwprintf(string_buff, PREVIEW_STR_MAX, _T("%u"), packet);
	}
	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_PACKETS);
	SetWindowText(cur_ctrl, string_buff);

	/* first packet */
	ti_time = (long)start_time;
	ti_tm = localtime( &ti_time );
	if(ti_tm) {
	    _snwprintf(string_buff, PREVIEW_STR_MAX,
		     _T("%04d-%02d-%02d %02d:%02d:%02d"),
		     ti_tm->tm_year + 1900,
		     ti_tm->tm_mon + 1,
		     ti_tm->tm_mday,
		     ti_tm->tm_hour,
		     ti_tm->tm_min,
		     ti_tm->tm_sec);
	} else {
		_snwprintf(string_buff, PREVIEW_STR_MAX, _T("?"));
    }
	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_FIRST_PKT);
	SetWindowText(cur_ctrl, string_buff);

	/* elapsed time */
	elapsed_time = (unsigned int)(stop_time-start_time);
	if(elapsed_time/86400) {
	    _snwprintf(string_buff, PREVIEW_STR_MAX, _T("%02u days %02u:%02u:%02u"),
	    elapsed_time/86400, elapsed_time%86400/3600, elapsed_time%3600/60, elapsed_time%60);
	} else {
	    _snwprintf(string_buff, PREVIEW_STR_MAX, _T("%02u:%02u:%02u"),
	    elapsed_time%86400/3600, elapsed_time%3600/60, elapsed_time%60);
	}
	if(is_breaked) {
	    _snwprintf(string_buff, PREVIEW_STR_MAX, _T("unknown"));
	}
	cur_ctrl = GetDlgItem(of_hwnd, EWFD_PTX_ELAPSED);
	SetWindowText(cur_ctrl, string_buff);

	wtap_close(wth);
    }

    return TRUE;

}

// XXX - Copied from "filter-util.c" in the ethereal-win32 branch
/* XXX - The only reason for the "filter_text" parameter is to be able to feed
 * in the "real" filter string in the case of a CBN_SELCHANGE notification message.
 */
void
filter_tb_syntax_check(HWND hwnd, TCHAR *filter_text) {
    TCHAR     *strval = NULL;
    gint       len;
    dfilter_t *dfp;

    /* If filter_text is non-NULL, use it.  Otherwise, grab the text from
     * the window */
    if (filter_text) {
        len = (lstrlen(filter_text) + 1) * sizeof(TCHAR);
        strval = g_malloc(len);
        memcpy(strval, filter_text, len);
    } else {
        len = GetWindowTextLength(hwnd);
        if (len > 0) {
            len++;
            strval = g_malloc(len);
            GetWindowText(hwnd, strval, len);
        }
    }

    if (len == 0) {
        /* Default window background */
        SendMessage(hwnd, EM_SETBKGNDCOLOR, (WPARAM) 1, COLOR_WINDOW);
        return;
    } else if (dfilter_compile(utf_16to8(strval), &dfp)) { /* colorize filter string entry */
        if (dfp != NULL)
            dfilter_free(dfp);
        /* Valid (light green) */
        SendMessage(hwnd, EM_SETBKGNDCOLOR, 0, 0x00afffaf);
    } else {
        /* Invalid (light red) */
        SendMessage(hwnd, EM_SETBKGNDCOLOR, 0, 0x00afafff);
    }

    if (strval) g_free(strval);
}


static UINT CALLBACK
open_file_hook_proc(HWND of_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
    HWND      cur_ctrl, parent;
    OFNOTIFY *notify = (OFNOTIFY *) l_param;
    TCHAR     sel_name[MAX_PATH];

    switch(msg) {
	case WM_INITDIALOG:
	    /* XXX - Retain the filter text, and fill it in. */

	    /* Fill in our resolution values */
	    cur_ctrl = GetDlgItem(of_hwnd, EWFD_MAC_NR_CB);
	    SendMessage(cur_ctrl, BM_SETCHECK, g_resolv_flags & RESOLV_MAC, 0);
	    cur_ctrl = GetDlgItem(of_hwnd, EWFD_NET_NR_CB);
	    SendMessage(cur_ctrl, BM_SETCHECK, g_resolv_flags & RESOLV_NETWORK, 0);
	    cur_ctrl = GetDlgItem(of_hwnd, EWFD_TRANS_NR_CB);
	    SendMessage(cur_ctrl, BM_SETCHECK, g_resolv_flags & RESOLV_TRANSPORT, 0);

	    preview_set_filename(of_hwnd, NULL);
	    break;
	case WM_NOTIFY:
	    switch (notify->hdr.code) {
		case CDN_FILEOK:
		    /* XXX - Fetch the read filter */
		    /* Fetch our resolution values */
		    g_resolv_flags = prefs.name_resolve & RESOLV_CONCURRENT;
		    cur_ctrl = GetDlgItem(of_hwnd, EWFD_MAC_NR_CB);
		    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
			g_resolv_flags |= RESOLV_MAC;
		    cur_ctrl = GetDlgItem(of_hwnd, EWFD_NET_NR_CB);
		    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
			g_resolv_flags |= RESOLV_NETWORK;
		    cur_ctrl = GetDlgItem(of_hwnd, EWFD_TRANS_NR_CB);
		    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
			g_resolv_flags |= RESOLV_TRANSPORT;
		    break;
		case CDN_SELCHANGE:
		    /* This _almost_ works correctly.  We need to handle directory
		       selections, etc. */
		    parent = GetParent(of_hwnd);
		    CommDlg_OpenSave_GetSpec(parent, sel_name, MAX_PATH);
		    preview_set_filename(of_hwnd, utf_16to8(sel_name));
		    break;
		default:
		    break;
	    }
	    break;
	case WM_COMMAND:
	    cur_ctrl = (HWND) l_param;
	    switch(w_param) {
		case (EN_UPDATE << 16) | EWFD_FILTER_EDIT:
		    filter_tb_syntax_check(cur_ctrl, NULL);
		    break;
                case EWFD_FILTER_BTN:
                    /* XXX - Integrate with the filter dialog? */
                    break;
		default:
		    break;
	    }
	    break;
	default:
	    break;
    }
    return 0;
}

/* XXX - Copied verbatim from gtk/capture_file_dlg.c.  Perhaps it
 * should be in wiretap instead?
 */

static gboolean
can_save_with_wiretap(int ft)
{
    /* To save a file with Wiretap, Wiretap has to handle that format,
     and its code to handle that format must be able to write a file
     with this file's encapsulation type. */
    return wtap_dump_can_open(ft) && wtap_dump_can_write_encap(ft, cfile.lnk_t);
}

/* Generate a list of the file types we can save this file as.

   "filetype" is the type it has now.

   "encap" is the encapsulation for its packets (which could be
   "unknown" or "per-packet").

   "filtered" is TRUE if we're to save only the packets that passed
   the display filter (in which case we have to save it using Wiretap)
   and FALSE if we're to save the entire file (in which case, if we're
   saving it in the type it has already, we can just copy it).

   The same applies for sel_curr, sel_all, sel_m_only, sel_m_range and sel_man_range
*/

static void
build_file_format_list(HWND sf_hwnd) {
    HWND  format_cb;
    int   ft;
    guint index;
    guint item_to_select;

    /* Default to the first supported file type, if the file's current
       type isn't supported. */
    item_to_select = 0;

    format_cb = GetDlgItem(sf_hwnd, EWFD_FILE_TYPE_COMBO);
    SendMessage(format_cb, CB_RESETCONTENT, 0, 0);

    /* Check all file types. */
    index = 0;
    for (ft = 0; ft < WTAP_NUM_FILE_TYPES; ft++) {
	if (!packet_range_process_all(&range) || ft != cfile.cd_t) {
	    /* not all unfiltered packets or a different file type.  We have to use Wiretap. */
	    if (!can_save_with_wiretap(ft))
		continue;       /* We can't. */
	}

	/* OK, we can write it out in this type. */
	SendMessage(format_cb, CB_ADDSTRING, 0, (LPARAM) utf_8to16(wtap_file_type_string(ft)));
	SendMessage(format_cb, CB_SETITEMDATA, (LPARAM) index, (WPARAM) ft);
	if (ft == filetype) {
	    /* Default to the same format as the file, if it's supported. */
	    item_to_select = index;
	}
	index++;
    }

    SendMessage(format_cb, CB_SETCURSEL, (WPARAM) item_to_select, 0);
}

#define RANGE_TEXT_MAX 128
static UINT CALLBACK
save_as_file_hook_proc(HWND sf_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
    HWND           cur_ctrl;
    OFNOTIFY      *notify = (OFNOTIFY *) l_param;
    int            new_filetype, index;

    switch(msg) {
	case WM_INITDIALOG:
	    g_sf_hwnd = sf_hwnd;

	    /* Default to saving all packets, in the file's current format. */
	    filetype = cfile.cd_t;

	    /* init the packet range */
	    packet_range_init(&range);

	    /* Fill in the file format list */
	    build_file_format_list(sf_hwnd);

	    range_handle_wm_initdialog(sf_hwnd, &range);

	    break;
	case WM_COMMAND:
	    cur_ctrl = (HWND) l_param;

	    switch (w_param) {
		case (CBN_SELCHANGE << 16) | EWFD_FILE_TYPE_COMBO:
		    index = SendMessage(cur_ctrl, CB_GETCURSEL, 0, 0);
		    if (index != CB_ERR) {
			new_filetype = SendMessage(cur_ctrl, CB_GETITEMDATA, (WPARAM) index, 0);
			if (new_filetype != CB_ERR) {
			    if (filetype != new_filetype) {
				if (can_save_with_wiretap(new_filetype)) {
				    cur_ctrl = GetDlgItem(sf_hwnd, EWFD_CAPTURED_BTN);
				    EnableWindow(cur_ctrl, TRUE);
				    cur_ctrl = GetDlgItem(sf_hwnd, EWFD_DISPLAYED_BTN);
				    EnableWindow(cur_ctrl, TRUE);
				} else {
				    cur_ctrl = GetDlgItem(sf_hwnd, EWFD_CAPTURED_BTN);
				    SendMessage(cur_ctrl, BM_SETCHECK, 0, 0);
				    EnableWindow(cur_ctrl, FALSE);
				    cur_ctrl = GetDlgItem(sf_hwnd, EWFD_DISPLAYED_BTN);
				    EnableWindow(cur_ctrl, FALSE);
				}
				filetype = new_filetype;
			    }
			}
		    }
		    break;
		default:
		    range_handle_wm_command(sf_hwnd, cur_ctrl, w_param, &range);
		    break;
	    }
	    break;
	default:
	    break;
    }
    return 0;
}



/* For each range static control, fill in its value and enable/disable it. */
static void
range_update_dynamics(HWND dlg_hwnd, packet_range_t *range) {
    HWND     cur_ctrl;
    gboolean filtered_active = FALSE;
    TCHAR    static_val[100];
    gint     selected_num;

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_DISPLAYED_BTN);
    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
	filtered_active = TRUE;

    /* RANGE_SELECT_ALL */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_ALL_PKTS_CAP);
    EnableWindow(cur_ctrl, !filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), cfile.count);
    SetWindowText(cur_ctrl, static_val);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_ALL_PKTS_DISP);
    EnableWindow(cur_ctrl, filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), range->displayed_cnt);
    SetWindowText(cur_ctrl, static_val);

    /* RANGE_SELECT_CURR */
    selected_num = (cfile.current_frame) ? cfile.current_frame->num : 0;
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_SEL_PKT_CAP);
    EnableWindow(cur_ctrl, selected_num && !filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), selected_num ? 1 : 0);
    SetWindowText(cur_ctrl, static_val);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_SEL_PKT_DISP);
    EnableWindow(cur_ctrl, selected_num && filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), selected_num ? 1 : 0);
    SetWindowText(cur_ctrl, static_val);

    /* RANGE_SELECT_MARKED */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_MARKED_BTN);
    EnableWindow(cur_ctrl, cfile.marked_count);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_MARKED_CAP);
    EnableWindow(cur_ctrl, cfile.marked_count && !filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), cfile.marked_count);
    SetWindowText(cur_ctrl, static_val);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_MARKED_DISP);
    EnableWindow(cur_ctrl, cfile.marked_count && filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), range->displayed_marked_cnt);
    SetWindowText(cur_ctrl, static_val);

    /* RANGE_SELECT_MARKED_RANGE */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_FIRST_LAST_BTN);
    EnableWindow(cur_ctrl, range->mark_range_cnt);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_FIRST_LAST_CAP);
    EnableWindow(cur_ctrl, range->mark_range_cnt && !filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), range->mark_range_cnt);
    SetWindowText(cur_ctrl, static_val);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_FIRST_LAST_DISP);
    EnableWindow(cur_ctrl, range->displayed_mark_range_cnt && filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), range->displayed_mark_range_cnt);
    SetWindowText(cur_ctrl, static_val);

    /* RANGE_SELECT_USER */
    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_RANGE_CAP);
    EnableWindow(cur_ctrl, !filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), range->user_range_cnt);
    SetWindowText(cur_ctrl, static_val);

    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_RANGE_DISP);
    EnableWindow(cur_ctrl, filtered_active);
    _snwprintf(static_val, sizeof(static_val), _T("%u"), range->displayed_user_range_cnt);
    SetWindowText(cur_ctrl, static_val);
}

static void
range_handle_wm_initdialog(HWND dlg_hwnd, packet_range_t *range) {
    HWND cur_ctrl;

    /* Set the appropriate captured/displayed radio */
    if (range->process_filtered)
	cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_DISPLAYED_BTN);
    else
	cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_CAPTURED_BTN);
    SendMessage(cur_ctrl, BM_SETCHECK, TRUE, 0);

    /* dynamic values in the range frame */
    range_update_dynamics(dlg_hwnd, range);

    /* Set the appropriate range radio */
    switch(range->process) {
	case(range_process_all):
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_ALL_PKTS_BTN);
	    break;
	case(range_process_selected):
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_SEL_PKT_BTN);
	    break;
	case(range_process_marked):
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_MARKED_BTN);
	    break;
	case(range_process_marked_range):
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_FIRST_LAST_BTN);
	    break;
	case(range_process_user_range):
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_RANGE_BTN);
	    break;
	default:
	    g_assert_not_reached();
    }
    SendMessage(cur_ctrl, BM_SETCHECK, TRUE, 0);
}

static void
range_handle_wm_command(HWND dlg_hwnd, HWND ctrl, WPARAM w_param, packet_range_t *range) {
    HWND  cur_ctrl;
    gchar range_text[RANGE_TEXT_MAX];

    switch(w_param) {
	case (BN_CLICKED << 16) | EWFD_CAPTURED_BTN:
	case (BN_CLICKED << 16) | EWFD_DISPLAYED_BTN:
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_CAPTURED_BTN);
	    if (SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED)
		range->process_filtered = FALSE;
	    else
		range->process_filtered = TRUE;
	    range_update_dynamics(dlg_hwnd, range);
	    break;
	case (BN_CLICKED << 16) | EWFD_ALL_PKTS_BTN:
	    if (SendMessage(ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
		range->process = range_process_all;
		range_update_dynamics(dlg_hwnd, range);
	    }
	    break;
	case (BN_CLICKED << 16) | EWFD_SEL_PKT_BTN:
	    if (SendMessage(ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
		range->process = range_process_selected;
		range_update_dynamics(dlg_hwnd, range);
	    }
	    break;
	case (BN_CLICKED << 16) | EWFD_MARKED_BTN:
	    if (SendMessage(ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
		range->process = range_process_marked;
		range_update_dynamics(dlg_hwnd, range);
	    }
	    break;
	case (BN_CLICKED << 16) | EWFD_FIRST_LAST_BTN:
	    if (SendMessage(ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
		range->process = range_process_marked_range;
		range_update_dynamics(dlg_hwnd, range);
	    }
	    break;
	case (BN_CLICKED << 16) | EWFD_RANGE_BTN:
	    if (SendMessage(ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
		range->process = range_process_user_range;
		range_update_dynamics(dlg_hwnd, range);
		cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_RANGE_EDIT);
		SetFocus(cur_ctrl);
	    }
	    break;
	case (EN_SETFOCUS << 16) | EWFD_RANGE_EDIT:
	    cur_ctrl = GetDlgItem(dlg_hwnd, EWFD_RANGE_BTN);
	    SendMessage(cur_ctrl, BM_CLICK, 0, 0);
	    break;
	case (EN_CHANGE << 16) | EWFD_RANGE_EDIT:
	    SendMessage(ctrl, WM_GETTEXT, (WPARAM) RANGE_TEXT_MAX, (LPARAM) range_text);
	    packet_range_convert_str(range, range_text);
	    range_update_dynamics(dlg_hwnd, range);
	    break;
    }
}

static UINT CALLBACK
merge_file_hook_proc(HWND mf_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
    HWND      cur_ctrl, parent;
    OFNOTIFY *notify = (OFNOTIFY *) l_param;
    TCHAR     sel_name[MAX_PATH];

    switch(msg) {
	case WM_INITDIALOG:
	    /* XXX - Retain the filter text, and fill it in. */

	    /* Append by default */
	    cur_ctrl = GetDlgItem(mf_hwnd, EWFD_MERGE_PREPEND_BTN);
	    SendMessage(cur_ctrl, BM_SETCHECK, TRUE, 0);
	    merge_action = merge_append;

	    preview_set_filename(mf_hwnd, NULL);
	    break;
	case WM_NOTIFY:
	    switch (notify->hdr.code) {
		case CDN_FILEOK:
		    /* XXX - Fetch the read filter */

		    cur_ctrl = GetDlgItem(mf_hwnd, EWFD_MERGE_CHRONO_BTN);
		    if(SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
			merge_action = merge_chrono;
		    } else {
			cur_ctrl = GetDlgItem(mf_hwnd, EWFD_MERGE_PREPEND_BTN);
			if(SendMessage(cur_ctrl, BM_GETCHECK, 0, 0) == BST_CHECKED) {
			    merge_action = merge_prepend;
			}
		    }

		    break;
		case CDN_SELCHANGE:
		    /* This _almost_ works correctly.  We need to handle directory
		       selections, etc. */
		    parent = GetParent(mf_hwnd);
		    CommDlg_OpenSave_GetSpec(parent, sel_name, MAX_PATH);
		    preview_set_filename(mf_hwnd, utf_16to8(sel_name));
		    break;
		default:
		    break;
	    }
	    break;
	case WM_COMMAND:
	    cur_ctrl = (HWND) l_param;
	    switch(w_param) {
		case (EN_UPDATE << 16) | EWFD_FILTER_EDIT:
		    filter_tb_syntax_check(cur_ctrl, NULL);
		    break;
		default:
		    break;
	    }
	    break;
	default:
	    break;
    }
    return 0;
}


static UINT CALLBACK
export_file_hook_proc(HWND ef_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
    HWND           cur_ctrl;
    OFNOTIFY      *notify = (OFNOTIFY *) l_param;
    gboolean       pkt_fmt_enable;
    int            i, index;

    switch(msg) {
	case WM_INITDIALOG:
	    /* init the printing range */
	    packet_range_init(&print_args.range);
	    range_handle_wm_initdialog(ef_hwnd, &print_args.range);
	    format_handle_wm_initdialog(ef_hwnd, &print_args);

	    break;
	case WM_COMMAND:
	    cur_ctrl = (HWND) l_param;
	    switch (w_param) {
		case (CBN_SELCHANGE << 16) | EWFD_PKT_DETAIL_COMBO:
		default:
		    range_handle_wm_command(ef_hwnd, cur_ctrl, w_param, &print_args.range);
		    print_update_dynamic(ef_hwnd, &print_args);
		    break;
	    }
	    break;
	case WM_NOTIFY:
	    switch (notify->hdr.code) {
		case CDN_FILEOK:
		    break;
		case CDN_TYPECHANGE:
		    index = notify->lpOFN->nFilterIndex;

		    if (index == 2)	/* PostScript */
			print_args.format = PR_FMT_TEXT;
		    else
			print_args.format = PR_FMT_PS;
		    if (index == 3 || index == 4)
			pkt_fmt_enable = FALSE;
		    else
			pkt_fmt_enable = TRUE;
		    for (i = EWFD_PKT_FORMAT_GB; i <= EWFD_PKT_NEW_PAGE_CB; i++) {
			cur_ctrl = GetDlgItem(ef_hwnd, i);
			EnableWindow(cur_ctrl, pkt_fmt_enable);
		    }
		    break;
		default:
		    break;
	    }
	    break;
	default:
	    break;
    }
    return 0;
}

static UINT CALLBACK
export_raw_file_hook_proc(HWND ef_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
    HWND          cur_ctrl;
    OPENFILENAME *ofnp = (OPENFILENAME *) l_param;
    TCHAR         raw_msg[100];

    switch(msg) {
	case WM_INITDIALOG:
	    _snwprintf(raw_msg, sizeof(raw_msg), _T("%d byte%s of raw binary data will be written"),
		    ofnp->lCustData, plurality(ofnp->lCustData, "", "s"));
	    cur_ctrl = GetDlgItem(ef_hwnd, EWFD_EXPORTRAW_ST);
	    SetWindowText(cur_ctrl, raw_msg);
	    break;
	default:
	    break;
    }
    return 0;
}