-
Notifications
You must be signed in to change notification settings - Fork 0
/
DIALOGS.H
1284 lines (1056 loc) · 29.6 KB
/
DIALOGS.H
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
// dialogs.h : header file for classes which implement the dialog boxes
// used in Internet Navigator for getting or displaying information from
// or to the user.
//
#ifndef __DIALOGS_H__
#define __DIALOGS_H__
#include "socket.h"
#include "mail.h"
#include "news.h"
/////////////////////////////////////////////////////////////////////////////
// CExitDlg dialog: a class to implement an "Are you sure?" message box
// for confirming the user's decision to exit this application.
class CExitDlg : public CDialog
{
// Construction
public:
CExitDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CExitDlg)
enum { IDD = IDD_EXIT_APPLICATION };
BOOL m_bConfirmExit;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CExitDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CConnectDlg dialog : used to gather the password and user ID of the user
// when they want to connect to a FTP site
class CConnectDlg : public CDialog
{
// Construction
public:
CConnectDlg(CWnd* pParent = NULL, CString strSiteName = "");
// Dialog Data
//{{AFX_DATA(CConnectDlg)
enum { IDD = IDD_FTP_CONNECT };
CString m_strUserID;
CString m_strPassword;
//}}AFX_DATA
CString m_strSiteName;
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CConnectDlg)
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CWelcomeDlg dialog
class CWelcomeDlg : public CDialog
{
// Construction
public:
CWelcomeDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CWelcomeDlg)
enum { IDD = IDD_FTP_WELCOME };
CEdit m_ctlWelcome;
CString m_strWelcome;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CWelcomeDlg)
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CIRConnectDlg dialog
class CIRConnectDlg : public CDialog
{
// Construction
public:
CIRConnectDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CIRConnectDlg)
enum { IDD = IDD_IRC_CONNECT };
CButton m_btnOK;
CButton m_btnCancel;
CButton m_btnHelp;
CString m_strServer;
int m_nPortNum;
CString m_strNickname;
CString m_strInitialChannel;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CIRConnectDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CGopherConnect dialog
class CGopherConnect : public CDialog
{
// Construction
public:
CGopherConnect(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CGopherConnect)
enum { IDD = IDD_GOPHER_CONNECT };
CString m_strMenuTitle;
CString m_strSiteAddress;
CString m_strSelector;
UINT m_nPortNum;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CGopherConnect)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CVeronicaSearchDlg dialog
class CVeronicaSearchDlg : public CDialog
{
// Construction
public:
CVeronicaSearchDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CVeronicaSearchDlg)
enum { IDD = IDD_GOPHER_SEARCH };
CString m_strQuery;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CVeronicaSearchDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CAOLDirDlg dialog
class CAOLDirDlg : public CDialog
{
// Construction
public:
CAOLDirDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CAOLDirDlg)
enum { IDD = IDD_FTP_AOL_DIRECTORY };
CString m_strDirectory;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CAOLDirDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CWarnDlg dialog
class CWarnDlg : public CDialog
{
// Construction
public:
CWarnDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CWarnDlg)
enum { IDD = IDD_FTP_OPEN_WARNING };
int m_nType;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CWarnDlg)
afx_msg void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CIRCJoinDlg dialog
class CIRCJoinDlg : public CDialog
{
// Construction
public:
CIRCJoinDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CIRCJoinDlg)
enum { IDD = IDD_IRC_JOIN_CHANNEL };
CButton m_btnOK;
CButton m_btnCancel;
CString m_strChannel;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CIRCJoinDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFingerAddr dialog
class CFingerAddr : public CDialog
{
// Construction
public:
CFingerAddr(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFingerAddr)
enum { IDD = IDD_FINGER_ADDR };
CString m_strAddr;
BOOL m_bDontShowAgain;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CFingerAddr)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CIRCMessageDialog dialog
class CIRCMessageDialog : public CDialog
{
// Construction
public:
CIRCMessageDialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CIRCMessageDialog)
enum { IDD = IDD_IRC_SEND_PRIVMSG };
CString m_strMessage;
CString m_strRecipient;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CIRCMessageDialog)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CIRCSendCmdDialog dialog
class CIRCSendCmdDialog : public CDialog
{
// Construction
public:
CIRCSendCmdDialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CIRCSendCmdDialog)
enum { IDD = IDD_IRC_SEND_COMMAND };
CString m_strCommand;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CIRCSendCmdDialog)
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CIRCNicknameDialog dialog
class CIRCNicknameDialog : public CDialog
{
// Construction
public:
CIRCNicknameDialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CIRCNicknameDialog)
enum { IDD = IDD_IRC_CHANGE_NICKNAME };
CString m_strNewNickname;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CIRCNicknameDialog)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CDisconnectDialog dialog
class CDisconnectDialog : public CDialog
{
// Construction
public:
CDisconnectDialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CDisconnectDialog)
enum { IDD = IDD_DISCONNECT };
BOOL m_bConfirmSignOff;
//}}AFX_DATA
CInternetNavApp* m_pApp;
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CDisconnectDialog)
virtual void OnOK();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CMailBoxTitleDlg dialog
class CMailBoxTitleDlg : public CDialog
{
// Construction
public:
CMailBoxTitleDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMailBoxTitleDlg)
enum { IDD = IDD_NEW_MAILBOX };
CString m_strMailBoxTitle;
CString m_strFileName;
CInternetNavApp* m_pApp;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CMailBoxTitleDlg)
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CPOP3Dialog dialog
class CPOP3Dialog : public CDialog
{
// Construction
public:
CPOP3Dialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CPOP3Dialog)
enum { IDD = IDD_MAIL_LOGON };
CEdit m_ctlPassword;
CButton m_btnOK;
CString m_strUserID;
CString m_strPassword;
//}}AFX_DATA
public: // helper functions for retrieving dialog data
CString GetPassword() { return m_strPassword; }
CString GetUserID() { return m_strUserID; }
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CPOP3Dialog)
virtual BOOL OnInitDialog();
afx_msg void OnChangePassword();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CUserInformation dialog
class CUserInformation : public CDialog
{
// Construction
public:
CUserInformation(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CUserInformation)
enum { IDD = IDD_USER_INFORMATION };
CInternetNavApp* m_pApp;
CString m_strUser;
CString m_strCompany;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CUserInformation)
virtual void OnCancel();
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CNewsgroupsSetup dialog
class CNewsgroupsSetup : public CDialog
{
// Construction
public:
CNewsgroupsSetup(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CNewsgroupsSetup)
enum { IDD = IDD_NEWSGROUPS_SETUP };
CString m_strNNTPHost;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CNewsgroupsSetup)
afx_msg void OnArticleAge();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CMailSetup dialog
class CMailSetup : public CDialog
{
// Construction
public:
CMailSetup(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMailSetup)
enum { IDD = IDD_EMAIL_SETTINGS };
CString m_strEmailAddress;
CString m_strUserID;
CString m_strPassword;
CString m_strPOP3Address;
CString m_strSMTPAddress;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CMailSetup)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CGroupSubscribe dialog
class CGroupSubscribe : public CDialog
{
// Construction
public:
CGroupSubscribe(CWnd* pParent, QSocket* pSocket);
// Dialog Data
//{{AFX_DATA(CGroupSubscribe)
enum { IDD = IDD_ADD_NEWSGROUP };
CNewsgroupsListBox m_ctlGroupList;
CButton m_btnOK;
CButton m_btnCancel;
CButton m_btnHelp;
CButton m_btnGetList;
CString m_strNewsgroup;
CString m_strSelection;
//}}AFX_DATA
BOOL m_bKeepAdding;
CNewsDoc* m_pDoc;
// Attributes
public:
QSocket* m_pSocket; // our network connection
CInternetNavApp* m_pApp;
CInetnavStatusBar* m_pStatusBar;
CString m_strModStatus;
// Operations
public:
void DoFillListBox();
// Implementation
public:
virtual ~CGroupSubscribe();
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CGroupSubscribe)
afx_msg void OnDownloadGroups();
virtual void OnOK();
afx_msg void OnSelect();
virtual void OnCancel();
afx_msg void OnDblclkNewsgroupsList();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CAddressBook dialog
class CAddressBook : public CDialog
{
// Construction
public:
CAddressBook(CWnd* pParent = NULL);
// Dialog Data
//{{AFX_DATA(CAddressBook)
enum { IDD = IDD_ADDRESS_BOOK };
CButton m_btnBCC;
CButton m_btnCC;
CButton m_btnTo;
CListBox m_ctlAddressList;
CString m_strSelection;
//}}AFX_DATA
CComposeWnd* m_pComposeWnd;
CMailBoxDoc* m_pDoc;
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CAddressBook)
afx_msg void OnTo();
afx_msg void OnCC();
afx_msg void OnBCC();
afx_msg void OnAddAddress();
afx_msg void OnRemoveAddress();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CAddAddress dialog
class CAddAddress : public CDialog
{
// Construction
public:
CAddAddress(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CAddAddress)
enum { IDD = IDD_ADD_ADDRESS };
CString m_strAddress;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CAddAddress)
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CMailSignature dialog
class CMailSignature : public CDialog
{
// Construction
public:
CMailSignature(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMailSignature)
enum { IDD = IDD_MAIL_SIGNATURE };
CEdit m_ctlSignature;
CString m_strSignature;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CMailSignature)
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CArticleAge dialog
class CArticleAge : public CDialog
{
// Construction
public:
CArticleAge(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CArticleAge)
enum { IDD = IDD_ARTICLE_AGE };
long m_lDays;
int m_nHours;
int m_nMinutes;
int m_nSeconds;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CArticleAge)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CInetnavWelcomeDlg dialog
class CInetnavWelcomeDlg : public CDialog
{
// Construction
public:
CInetnavWelcomeDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CInetnavWelcomeDlg)
enum { IDD = IDD_INETNAV_WELCOME };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CInetnavWelcomeDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFTPUserDir dialog
class CFTPUserDir : public CDialog
{
// Construction
public:
CFTPUserDir(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFTPUserDir)
enum { IDD = IDD_FTP_USER_DIR };
CString m_strDirectory;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CFTPUserDir)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFlashConnectBegin dialog
class CFlashConnectBegin : public CDialog
{
// Construction
public:
CFlashConnectBegin(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFlashConnectBegin)
enum { IDD = IDD_FLASHCONNECT_BEGIN };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CFlashConnectBegin)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFlashConnectEnd dialog
class CFlashConnectEnd : public CDialog
{
// Construction
public:
CFlashConnectEnd(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFlashConnectEnd)
enum { IDD = IDD_FLASHCONNECT_END };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CFlashConnectEnd)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// COpenFtpSite dialog
class COpenFtpSite : public CDialog
{
// Construction
public:
COpenFtpSite(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(COpenFtpSite)
enum { IDD = IDD_OPEN_FTP_SITE };
CButton m_ctlUseAnonFTP;
CEdit m_ctlSiteAddress;
CString m_strSite;
BOOL m_bUseAnonFTP;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(COpenFtpSite)
afx_msg void OnChangeSiteAddress();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CArticleSignature dialog
class CArticleSignature : public CDialog
{
// Construction
public:
CArticleSignature(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CArticleSignature)
enum { IDD = IDD_NEWS_SIGNATURE };
CEdit m_ctlSignature;
CString m_strSignature;
//}}AFX_DATA
// Implementation
protected:
/*virtual void OnSetFont(CFont* pFont);*/
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CArticleSignature)
virtual void OnCancel();
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CDirectoryDialog dialog: a special file dialog which allows the user to
// choose a directory
class CDirectoryDialog : public CFileDialog
{
// Construction
public:
CDirectoryDialog(BOOL bOpenFileDialog, // TRUE for FileOpen,
// FALSE for FileSaveAs
LPCSTR lpszDefExt = NULL,
LPCSTR lpszFileName = NULL,
DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
LPCSTR lpszFilter = NULL,
CWnd* pParentWnd = NULL);
// Dialog Data
//{{AFX_DATA(CDirectoryDialog)
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
BOOL m_bDlgJustCameUp;
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CDirectoryDialog)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CDLComplete dialog
class CDLComplete : public CDialog
{
// Construction
public:
CDLComplete(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CDLComplete)
enum { IDD = IDD_DOWNLOAD_COMPLETE };
CString m_strFileDL;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CDLComplete)
// NOTE: the ClassWizard will add member functions here
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFtpDisconnected dialog
class CFtpDisconnected : public CDialog
{
// Construction
public:
CFtpDisconnected(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFtpDisconnected)
enum { IDD = IDD_DISCONNECTED };
CString m_strMsg;
//}}AFX_DATA
CString m_strSiteName;
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CFtpDisconnected)
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFileDownload dialog
class CFileDownload : public CDialog
{
// Construction
public:
CFileDownload(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFileDownload)
enum { IDD = IDD_DOWNLOAD_FILE };
CString m_strFileName;
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CFileDownload)
// NOTE: the ClassWizard will add member functions here
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CConnectMsg dialog