-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWSWND.CPP
812 lines (660 loc) · 22.1 KB
/
NEWSWND.CPP
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
// newswnd.cpp: implementation file
//
#include "stdafx.h"
#include "inetnav.h"
#include "percent.h"
#include "dialogs.h"
#include <stdio.h>
#include "resource.h"
#include "propshts.h"
#include "mail.h"
#include "news.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CNewsWnd
IMPLEMENT_DYNCREATE(CNewsWnd, CMDIChildWnd)
CNewsWnd::CNewsWnd()
{
m_pApp = (CInternetNavApp*)AfxGetApp();
}
CNewsWnd::~CNewsWnd()
{
m_pApp = NULL;
}
BEGIN_MESSAGE_MAP(CNewsWnd, CMDIChildWnd)
//{{AFX_MSG_MAP(CNewsWnd)
ON_WM_CLOSE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CNewsWnd message handlers
BOOL CNewsWnd::LoadFrame(UINT nIDResource, DWORD dwDefaultStyle,
CWnd* pParentWnd, CCreateContext* pContext)
{
// Set CRect to be used for window size and position
CRect windowRect;
windowRect.left = 80;
windowRect.right = 562;
windowRect.top = 17;
windowRect.bottom = 375;
// only do this once
ASSERT_VALID_IDR(nIDResource);
ASSERT(m_nIDHelp == 0 || m_nIDHelp == nIDResource);
ASSERT(m_hMenuShared == NULL); // only do once
m_nIDHelp = nIDResource; // ID for help context (+HID_BASE_RESOURCE)
// parent must be MDI Frame (or NULL for default)
ASSERT(pParentWnd == NULL || pParentWnd->IsKindOf(RUNTIME_CLASS(CMDIFrameWnd)));
// will be a child of MDIClient
ASSERT(!(dwDefaultStyle & WS_POPUP));
dwDefaultStyle |= WS_CHILD;
// if available - get MDI child menus from doc template
ASSERT(m_hMenuShared == NULL); // only do once
CMultiDocTemplate* pTemplate;
if (pContext != NULL &&
(pTemplate = (CMultiDocTemplate*)pContext->m_pNewDocTemplate) != NULL)
{
ASSERT(pTemplate->IsKindOf(RUNTIME_CLASS(CMultiDocTemplate)));
// get shared menu from doc template
m_hMenuShared = pTemplate->m_hMenuShared;
m_hAccelTable = pTemplate->m_hAccelTable;
}
else
{
TRACE0("Warning: no shared menu/acceltable for MDI Child window\n");
// if this happens, programmer must load these manually
}
CString strFullString = "", strTitle = "";
if (strFullString.LoadString(nIDResource))
AfxExtractSubString(strTitle, strFullString, 0); // first sub-string
ASSERT(m_hWnd == NULL);
if (!Create(GetIconWndClass(dwDefaultStyle, nIDResource),
strTitle, dwDefaultStyle, windowRect,
(CMDIFrameWnd*)pParentWnd, pContext))
{
return FALSE; // will self destruct on failure normally
}
// it worked !
// give the application a pointer to this window so other functions
// can access this window
m_pApp->m_pNewsWnd = this;
return TRUE;
}
BOOL CNewsWnd::PreCreateWindow(CREATESTRUCT& cs)
{
// change the window style -- we aren't using the WS_VISIBLE style here
// because the view needs to form itself and fill in bitmap buttons
// The view then tells this window to show itself when it is finished
// initializing
cs.style = WS_CHILD|WS_BORDER|WS_CAPTION|WS_MINIMIZEBOX|WS_SYSMENU;
cs.style |= FWS_ADDTOTITLE;
// return return value of base-class version of this function
return CMDIChildWnd::PreCreateWindow(cs);
}
void CNewsWnd::OnUpdateFrameTitle(BOOL bAddToTitle)
{
// update our parent window first
GetMDIFrame()->OnUpdateFrameTitle(bAddToTitle);
if ((GetStyle() & FWS_ADDTOTITLE) == 0)
return; // leave child window alone!
CDocument* pDocument = GetActiveDocument();
if (bAddToTitle && pDocument != NULL)
{
// Since the Internet Newsgroups window is going to have the label,
// "Internet Navigator", then set this window's text to that
CString strText = "Internet Newsgroups";
SetWindowText(strText);
return;
}
return;
}
void CNewsWnd::OnClose()
{
m_pApp->m_pNewsWnd = NULL;
CMDIChildWnd::OnClose();
}
/////////////////////////////////////////////////////////////////////////////
// CNewsgroupsManagerWnd
IMPLEMENT_DYNCREATE(CNewsgroupsManagerWnd, CMDIChildWnd)
CNewsgroupsManagerWnd::CNewsgroupsManagerWnd()
{
}
CNewsgroupsManagerWnd::~CNewsgroupsManagerWnd()
{
}
BEGIN_MESSAGE_MAP(CNewsgroupsManagerWnd, CMDIChildWnd)
//{{AFX_MSG_MAP(CNewsgroupsManagerWnd)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CNewsgroupsManagerWnd message handlers
void CNewsgroupsManagerWnd::OnUpdateFrameTitle(BOOL bAddToTitle)
{
// Update your parent window first.
GetMDIFrame()->OnUpdateFrameTitle(bAddToTitle);
if ((GetStyle() & FWS_ADDTOTITLE) == 0)
return; // leave child window alone!
CNewsDoc* pDocument = (CNewsDoc*)GetActiveDocument();
if (pDocument != NULL && bAddToTitle)
{
CString strText = "Newsgroups Manager";
SetWindowText(strText);
}
return;
}
BOOL CNewsgroupsManagerWnd::LoadFrame(UINT nIDResource, DWORD dwDefaultStyle,
CWnd* pParentWnd, CCreateContext* pContext)
{
// Set CRect to be used for window size and position
CRect windowRect;
windowRect.left = 47;
windowRect.right = 598;
windowRect.top = 60;
windowRect.bottom = 350;
// only do this once
ASSERT_VALID_IDR(nIDResource);
ASSERT(m_nIDHelp == 0 || m_nIDHelp == nIDResource);
ASSERT(m_hMenuShared == NULL); // only do once
m_nIDHelp = nIDResource; // ID for help context (+HID_BASE_RESOURCE)
// parent must be MDI Frame (or NULL for default)
ASSERT(pParentWnd == NULL || pParentWnd->IsKindOf(RUNTIME_CLASS(CMDIFrameWnd)));
// will be a child of MDIClient
ASSERT(!(dwDefaultStyle & WS_POPUP));
dwDefaultStyle |= WS_CHILD;
// if available - get MDI child menus from doc template
ASSERT(m_hMenuShared == NULL); // only do once
CMultiDocTemplate* pTemplate;
if (pContext != NULL &&
(pTemplate = (CMultiDocTemplate*)pContext->m_pNewDocTemplate) != NULL)
{
ASSERT(pTemplate->IsKindOf(RUNTIME_CLASS(CMultiDocTemplate)));
// get shared menu from doc template
m_hMenuShared = pTemplate->m_hMenuShared;
m_hAccelTable = pTemplate->m_hAccelTable;
}
else
{
TRACE0("Warning: no shared menu/acceltable for MDI Child window\n");
// if this happens, programmer must load these manually
}
CString strFullString = "", strTitle = "";
if (strFullString.LoadString(nIDResource))
AfxExtractSubString(strTitle, strFullString, 0); // first sub-string
ASSERT(m_hWnd == NULL);
if (!Create(GetIconWndClass(dwDefaultStyle, nIDResource),
"Newsgroups Manager", dwDefaultStyle, windowRect,
(CMDIFrameWnd*)pParentWnd, pContext))
{
return FALSE; // will self destruct on failure normally
}
// it worked !
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CArticleSelectionWnd
IMPLEMENT_DYNCREATE(CArticleSelectionWnd, CMDIChildWnd)
CArticleSelectionWnd::CArticleSelectionWnd()
{
}
CArticleSelectionWnd::~CArticleSelectionWnd()
{
}
BEGIN_MESSAGE_MAP(CArticleSelectionWnd, CMDIChildWnd)
//{{AFX_MSG_MAP(CArticleSelectionWnd)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CArticleSelectionWnd message handlers
BOOL CArticleSelectionWnd::LoadFrame(UINT nIDResource, DWORD dwDefaultStyle,
CWnd* pParentWnd, CCreateContext* pContext)
{
// Set CRect to be used for window size and position
CRect windowRect;
windowRect.left = 47;
windowRect.right = 598;
windowRect.top = 60;
windowRect.bottom = 350;
// only do this once
ASSERT_VALID_IDR(nIDResource);
ASSERT(m_nIDHelp == 0 || m_nIDHelp == nIDResource);
ASSERT(m_hMenuShared == NULL); // only do once
m_nIDHelp = nIDResource; // ID for help context (+HID_BASE_RESOURCE)
// parent must be MDI Frame (or NULL for default)
ASSERT(pParentWnd == NULL || pParentWnd->IsKindOf(RUNTIME_CLASS(CMDIFrameWnd)));
// will be a child of MDIClient
ASSERT(!(dwDefaultStyle & WS_POPUP));
dwDefaultStyle |= WS_CHILD;
// if available - get MDI child menus from doc template
ASSERT(m_hMenuShared == NULL); // only do once
CMultiDocTemplate* pTemplate;
if (pContext != NULL &&
(pTemplate = (CMultiDocTemplate*)pContext->m_pNewDocTemplate) != NULL)
{
ASSERT(pTemplate->IsKindOf(RUNTIME_CLASS(CMultiDocTemplate)));
// get shared menu from doc template
m_hMenuShared = pTemplate->m_hMenuShared;
m_hAccelTable = pTemplate->m_hAccelTable;
}
else
{
TRACE0("Warning: no shared menu/acceltable for MDI Child window\n");
// if this happens, programmer must load these manually
}
CString strFullString = "", strTitle = "";
if (strFullString.LoadString(nIDResource))
AfxExtractSubString(strTitle, strFullString, 0); // first sub-string
ASSERT(m_hWnd == NULL);
if (!Create(GetIconWndClass(dwDefaultStyle, nIDResource),
strTitle, dwDefaultStyle, windowRect,
(CMDIFrameWnd*)pParentWnd, pContext))
{
return FALSE; // will self destruct on failure normally
}
// it worked !
return TRUE;
}
BOOL CArticleSelectionWnd::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style = WS_CHILD|WS_OVERLAPPEDWINDOW;
return CMDIChildWnd::PreCreateWindow(cs);
}
void CArticleSelectionWnd::OnUpdateFrameTitle(BOOL bAddToTitle)
{
// Update your parent window first.
GetMDIFrame()->OnUpdateFrameTitle(bAddToTitle);
if ((GetStyle() & FWS_ADDTOTITLE) == 0)
return; // leave child window alone!
CNewsDoc* pDocument = (CNewsDoc*)GetActiveDocument();
if (pDocument != NULL && bAddToTitle)
{
CString strText = m_strGroup;
SetWindowText(strText);
}
return;
}
/////////////////////////////////////////////////////////////////////////////
// CArticleWnd
IMPLEMENT_DYNCREATE(CArticleWnd, CMDIChildWnd)
CArticleWnd::CArticleWnd()
{
}
CArticleWnd::~CArticleWnd()
{
}
BEGIN_MESSAGE_MAP(CArticleWnd, CMDIChildWnd)
//{{AFX_MSG_MAP(CArticleWnd)
ON_WM_CREATE()
ON_COMMAND(ID_VIEW_RULER, OnViewRuler)
ON_UPDATE_COMMAND_UI(ID_VIEW_RULER, OnUpdateViewRuler)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CArticleWnd message handlers
BOOL CArticleWnd::LoadFrame(UINT nIDResource, DWORD dwDefaultStyle,
CWnd* pParentWnd, CCreateContext* pContext)
{
// Set CRect to be used for window size and position
CRect windowRect;
windowRect.left = 9;
windowRect.right = 627;
windowRect.top = 50;
windowRect.bottom = 342;
// only do this once
ASSERT_VALID_IDR(nIDResource);
ASSERT(m_nIDHelp == 0 || m_nIDHelp == nIDResource);
ASSERT(m_hMenuShared == NULL); // only do once
m_nIDHelp = nIDResource; // ID for help context (+HID_BASE_RESOURCE)
// parent must be MDI Frame (or NULL for default)
ASSERT(pParentWnd == NULL || pParentWnd->IsKindOf(RUNTIME_CLASS(CMDIFrameWnd)));
// will be a child of MDIClient
ASSERT(!(dwDefaultStyle & WS_POPUP));
dwDefaultStyle |= WS_CHILD;
// if available - get MDI child menus from doc template
ASSERT(m_hMenuShared == NULL); // only do once
CMultiDocTemplate* pTemplate;
if (pContext != NULL &&
(pTemplate = (CMultiDocTemplate*)pContext->m_pNewDocTemplate) != NULL)
{
ASSERT(pTemplate->IsKindOf(RUNTIME_CLASS(CMultiDocTemplate)));
// get shared menu from doc template
m_hMenuShared = pTemplate->m_hMenuShared;
m_hAccelTable = pTemplate->m_hAccelTable;
}
else
{
TRACE0("Warning: no shared menu/acceltable for MDI Child window\n");
// if this happens, programmer must load these manually
}
CString strFullString = "", strTitle = "";
if (strFullString.LoadString(nIDResource))
AfxExtractSubString(strTitle, strFullString, 0); // first sub-string
ASSERT(m_hWnd == NULL);
if (!Create(GetIconWndClass(dwDefaultStyle, nIDResource),
strTitle, dwDefaultStyle, windowRect,
(CMDIFrameWnd*)pParentWnd, pContext))
{
return FALSE; // will self destruct on failure normally
}
// it worked !
return TRUE;
}
int CArticleWnd::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndBtnBar.Create(this, IDD_NNTPARTICLE_DIALOG_BAR,
CBRS_TOP,
IDW_NNTPARTICLE_COMMAND_BAR))
{
MessageBeep(-1);
AfxMessageBox("Unable to create Article Navigation Bar.",
MB_ICONSTOP);
return -1;
}
// Create and display the ruler along the top edge of the window
if (!m_wndRulerBar.Create(this, IDD_RULERBAR,
CBRS_TOP,
AFX_IDW_CONTROLBAR_LAST))
{
TRACE0("Failed to create ruler.\r\n");
return -1; // failed to create ruler
}
// Load bitmap button for ruler
if (!m_btnRuler.AutoLoad(IDC_RULER, &m_wndRulerBar))
{
TRACE0("Failed to create ruler.\r\n");
return -1; // failed to create ruler bitmap
}
return 0;
}
void CArticleWnd::OnViewRuler()
{
BOOL bToggleVisible = !m_wndRulerBar.IsWindowVisible();
// If IsWindowVisible() == TRUE, we should hide the
// ruler bar. If IsWindowVisible() == FALSE, then we
// should show the ruler bar.
m_wndRulerBar.ShowWindow((bToggleVisible)?SW_SHOW:SW_HIDE);
RecalcLayout(); // adjust positions of various child windows
return;
}
void CArticleWnd::OnUpdateViewRuler(CCmdUI* pCmdUI)
{
// If the ruler is visible, we want to put a check mark
// next to the Ruler menu command.
// CDialogBar::IsWindowVisible() tells us whether or not
// the ruler is visible
BOOL bCheck = m_wndRulerBar.IsWindowVisible();
pCmdUI->SetCheck(bCheck);
}
void CArticleWnd::OnUpdateFrameTitle(BOOL bAddToTitle)
{
// Update your parent window first.
GetMDIFrame()->OnUpdateFrameTitle(bAddToTitle);
if ((GetStyle() & FWS_ADDTOTITLE) == 0)
return; // leave child window alone!
CNewsDoc* pDocument = (CNewsDoc*)GetActiveDocument();
if (pDocument != NULL && bAddToTitle)
{
// We want the window text to say the following:
// Article Subject
// TODO: Add a preferences setting here to enable the user to
// configure the newsgroup name away
m_strText = m_strSubject;
SetWindowText(m_strText);
}
}
/////////////////////////////////////////////////////////////////////////////
// CArticleComposeWnd
IMPLEMENT_DYNCREATE(CArticleComposeWnd, CMDIChildWnd)
CArticleComposeWnd::CArticleComposeWnd()
{
}
CArticleComposeWnd::~CArticleComposeWnd()
{
}
BEGIN_MESSAGE_MAP(CArticleComposeWnd, CMDIChildWnd)
//{{AFX_MSG_MAP(CArticleComposeWnd)
ON_WM_CREATE()
ON_COMMAND(ID_VIEW_RULER, OnViewRuler)
ON_UPDATE_COMMAND_UI(ID_VIEW_RULER, OnUpdateViewRuler)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CArticleComposeWnd message handlers
BOOL CArticleComposeWnd::LoadFrame(UINT nIDResource, DWORD dwDefaultStyle,
CWnd* pParentWnd, CCreateContext* pContext)
{
// Set CRect to be used for window size and position
CRect windowRect;
windowRect.left = 9;
windowRect.right = 627;
windowRect.top = 50;
windowRect.bottom = 342;
// only do this once
ASSERT_VALID_IDR(nIDResource);
ASSERT(m_nIDHelp == 0 || m_nIDHelp == nIDResource);
ASSERT(m_hMenuShared == NULL); // only do once
m_nIDHelp = nIDResource; // ID for help context (+HID_BASE_RESOURCE)
// parent must be MDI Frame (or NULL for default)
ASSERT(pParentWnd == NULL || pParentWnd->IsKindOf(RUNTIME_CLASS(CMDIFrameWnd)));
// will be a child of MDIClient
ASSERT(!(dwDefaultStyle & WS_POPUP));
dwDefaultStyle |= WS_CHILD;
// if available - get MDI child menus from doc template
ASSERT(m_hMenuShared == NULL); // only do once
CMultiDocTemplate* pTemplate;
if (pContext != NULL &&
(pTemplate = (CMultiDocTemplate*)pContext->m_pNewDocTemplate) != NULL)
{
ASSERT(pTemplate->IsKindOf(RUNTIME_CLASS(CMultiDocTemplate)));
// get shared menu from doc template
m_hMenuShared = pTemplate->m_hMenuShared;
m_hAccelTable = pTemplate->m_hAccelTable;
}
else
{
TRACE0("Warning: no shared menu/acceltable for MDI Child window\n");
// if this happens, programmer must load these manually
}
CString strFullString = "", strTitle = "";
if (strFullString.LoadString(nIDResource))
AfxExtractSubString(strTitle, strFullString, 0); // first sub-string
ASSERT(m_hWnd == NULL);
if (!Create(GetIconWndClass(dwDefaultStyle, nIDResource),
strTitle, dwDefaultStyle, windowRect,
(CMDIFrameWnd*)pParentWnd, pContext))
{
return FALSE; // will self destruct on failure normally
}
// it worked !
return TRUE;
}
BOOL CArticleComposeWnd::PreCreateWindow(CREATESTRUCT& cs)
{
return CMDIChildWnd::PreCreateWindow(cs);
}
int CArticleComposeWnd::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
return -1;
// Create and display the ruler along the top edge of the window
m_wndComposeBar.m_pDoc = (CNewsDoc*)GetActiveDocument();
if (!m_wndComposeBar.Create(this, IDD_NEWS_COMPOSE_DIALOG_BAR,
CBRS_TOP,
AFX_IDW_CONTROLBAR_FIRST+23))
{
AfxMessageBox("Failed to create Compose News Article headers bar.");
return -1; // failed to create Compose Mail addresses bar
}
// Create and display the ruler along the top edge of the window
if (!m_wndRulerBar.Create(this, IDD_RULERBAR,
CBRS_TOP,
AFX_IDW_CONTROLBAR_LAST))
{
AfxMessageBox("Failed to create ruler.");
return -1; // failed to create ruler
}
// Load bitmap buttons
if (!m_btnRuler.AutoLoad(IDC_RULER, &m_wndRulerBar))
{
AfxMessageBox("Failed to create ruler.");
return -1; // failed to create ruler bitmap
}
return 0;
}
void CArticleComposeWnd::OnUpdateFrameTitle(BOOL bAddToTitle)
{
// Update your parent window first
GetMDIFrame()->OnUpdateFrameTitle(bAddToTitle);
CNewsDoc* pDocument = (CNewsDoc*)GetActiveDocument();
if (pDocument != NULL && bAddToTitle)
{
SetWindowText("Compose News Article");
return;
}
return;
}
void CArticleComposeWnd::OnViewRuler()
{
BOOL bToggleVisible = !m_wndRulerBar.IsWindowVisible();
// If IsWindowVisible() == TRUE, we should hide the
// ruler bar. If IsWindowVisible() == FALSE, then we
// should show the ruler bar.
m_wndRulerBar.ShowWindow((bToggleVisible)?SW_SHOW:SW_HIDE);
RecalcLayout(); // adjust positions of various child windows
return;
}
void CArticleComposeWnd::OnUpdateViewRuler(CCmdUI* pCmdUI)
{
// If the ruler is visible, we want to put a check mark
// next to the Ruler menu command.
// CDialogBar::IsWindowVisible() tells us whether or not
// the ruler is visible
BOOL bCheck = m_wndRulerBar.IsWindowVisible();
pCmdUI->SetCheck(bCheck);
}
/////////////////////////////////////////////////////////////////////////////
// CArticleComposeBar dialog bar
CArticleComposeBar::CArticleComposeBar() : CDialogBar()
{
//{{AFX_DATA_INIT(CArticleComposeBar)
//}}AFX_DATA_INIT
m_pParentWnd = NULL;
m_pApp = (CInternetNavApp*)AfxGetApp();
m_pDoc = NULL;
}
void CArticleComposeBar::DoDataExchange(CDataExchange* pDX)
{
//{{AFX_DATA_MAP(CArticleComposeBar)
DDX_Text(pDX, IDC_ARTICLE_SUBJECT, m_strSubject);
DDX_Text(pDX, IDC_ARTICLE_NEWSGROUPS, m_strNewsgroups);
DDX_Text(pDX, IDC_ARTICLE_DISTRIBUTION, m_strDistribution);
DDX_Text(pDX, IDC_ARTICLE_FOLLOWUP_TO, m_strFollowupTo);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CArticleComposeBar, CDialogBar)
//{{AFX_MSG_MAP(CArticleComposeBar)
ON_WM_CREATE()
ON_COMMAND(ID_HELP, OnHelp)
ON_UPDATE_COMMAND_UI(ID_HELP, OnUpdateHelp)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CArticleComposeBar message handlers
BOOL CArticleComposeBar::DoFollowup(CString& strNewsgroups,
CString& strSubject, CString& /*strAuthor*/, CString& strDistribution)
{
SetFollowup();
SetNewsgroups(strNewsgroups);
SetSubject(strSubject);
SetDistribution(strDistribution);
return UpdateData(FALSE);
}
BOOL CArticleComposeBar::UpdateData(BOOL bSaveAndValidate)
{
#ifdef _DEBUG
afxDump << "Doing CArticleComposeBar::UpdateData(";
bSaveAndValidate ? afxDump << "TRUE" : afxDump << "FALSE";
afxDump << ").\r\n";
#endif
TRACE0("INF: Allocating CDataExchange object.\r\n");
CDataExchange dx(this, bSaveAndValidate);
BOOL bOK = FALSE; // assume failure
TRY
{
TRACE0("INF: Calling CArticleComposeBar::DoDataExchange().\r\n");
DoDataExchange(&dx);
TRACE0("INF: CArticleComposeBar::DoDataExchange() successful.\r\n");
bOK = TRUE; // it worked
}
CATCH(CUserException, e)
{
TRACE0("ERR: CArticleComposeBar::DoDataExchange(): Validation failed.\r\n");
// validation failed - user already alerted, fall through
ASSERT(bOK == FALSE);
}
AND_CATCH_ALL(e)
{
TRACE0("ERR: Validation failed due to OOM or other resource failure.\r\n");
// validation failed due to OOM or other resource failure
AfxMessageBox(AFX_IDP_INTERNAL_FAILURE, MB_ICONSTOP);
ASSERT(bOK == FALSE);
}
END_CATCH_ALL
#ifdef _DEBUG
afxDump << "INF: CArticleComposeBar::UpdateData() returning\r\n";
afxDump << bOK << "to caller.";
#endif
return bOK;
}
BOOL CArticleComposeBar::Create(CWnd* pParentWnd, LPCSTR lpszTemplateName,
UINT nStyle, UINT nID)
{
ASSERT(pParentWnd);
BOOL bResult = CDialogBar::Create(pParentWnd, lpszTemplateName, nStyle, nID);
// store the pParentWnd pointer
m_pParentWnd = pParentWnd;
// now subcalss this dialog bar with CTL3D so it looks like the
// other dialog-based parts of the program interface.
if (m_pApp->IsUseCTL3D())
Ctl3dSubclassDlgEx(m_hWnd, CTL3D_ALL);
return bResult;
}
BOOL CArticleComposeBar::Create(CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle,
UINT nID)
{
ASSERT(pParentWnd);
BOOL bResult = CDialogBar::Create(pParentWnd, nIDTemplate, nStyle, nID);
// store the pParentWnd pointer
m_pParentWnd = pParentWnd;
// now subcalss this dialog bar with CTL3D so it looks like the
// other dialog-based parts of the program interface.
if (m_pApp->IsUseCTL3D())
Ctl3dSubclassDlgEx(m_hWnd, CTL3D_ALL);
return bResult;
}
int CArticleComposeBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CDialogBar::OnCreate(lpCreateStruct) == -1)
return -1;
CArticleComposeWnd* pParent = (CArticleComposeWnd*)GetParent();
m_pDoc = (CNewsDoc*)pParent->GetActiveDocument();
UpdateDialogControls(this, FALSE);
return 0;
}
void CArticleComposeBar::OnHelp()
{
m_pParentWnd->SendMessage(WM_COMMAND, ID_HELP);
return;
}
void CArticleComposeBar::OnUpdateHelp(CCmdUI* pCmdUI)
{
// since we support context-sensitive help, let's enable this command
// button so the user can choose it.
pCmdUI->Enable(TRUE);
return;
}