home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / mfcinc.pak / AFXDLGS.INL < prev    next >
Text File  |  1997-05-06  |  5KB  |  101 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1995 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. // Inlines for AFXDLGS.H
  12.  
  13. #ifdef _AFXDLGS_INLINE
  14.  
  15. _AFXDLGS_INLINE CCommonDialog::CCommonDialog(CWnd* pParentWnd)
  16.     : CDialog((UINT)0, pParentWnd) { }
  17.  
  18. _AFXDLGS_INLINE BOOL CFileDialog::GetReadOnlyPref() const
  19.     { return m_ofn.Flags & OFN_READONLY ? TRUE : FALSE; }
  20. _AFXDLGS_INLINE void CFileDialog::SetTemplate(UINT nWin3ID, UINT nWin4ID)
  21.     { SetTemplate(MAKEINTRESOURCE(nWin3ID), MAKEINTRESOURCE(nWin4ID)); }
  22. _AFXDLGS_INLINE POSITION CFileDialog::GetStartPosition() const
  23.     { return (POSITION)m_ofn.lpstrFile; }
  24. _AFXDLGS_INLINE CString CFontDialog::GetFaceName() const
  25.     { return (LPCTSTR)m_cf.lpLogFont->lfFaceName; }
  26. _AFXDLGS_INLINE CString CFontDialog::GetStyleName() const
  27.     { return m_cf.lpszStyle; }
  28. _AFXDLGS_INLINE int CFontDialog::GetSize() const
  29.     { return m_cf.iPointSize; }
  30. _AFXDLGS_INLINE int CFontDialog::GetWeight() const
  31.     { return (int)m_cf.lpLogFont->lfWeight; }
  32. _AFXDLGS_INLINE BOOL CFontDialog::IsItalic() const
  33.     { return m_cf.lpLogFont->lfItalic ? TRUE : FALSE; }
  34. _AFXDLGS_INLINE BOOL CFontDialog::IsStrikeOut() const
  35.     { return m_cf.lpLogFont->lfStrikeOut ? TRUE : FALSE; }
  36. _AFXDLGS_INLINE BOOL CFontDialog::IsBold() const
  37.     { return m_cf.lpLogFont->lfWeight == FW_BOLD ? TRUE : FALSE; }
  38. _AFXDLGS_INLINE BOOL CFontDialog::IsUnderline() const
  39.     { return m_cf.lpLogFont->lfUnderline ? TRUE : FALSE; }
  40. _AFXDLGS_INLINE COLORREF CFontDialog::GetColor() const
  41.     { return m_cf.rgbColors; }
  42. _AFXDLGS_INLINE COLORREF CColorDialog::GetColor() const
  43.     { return m_cc.rgbResult; }
  44. _AFXDLGS_INLINE BOOL CPrintDialog::PrintSelection() const
  45.     { return m_pd.Flags & PD_SELECTION ? TRUE : FALSE; }
  46. _AFXDLGS_INLINE BOOL CPrintDialog::PrintRange() const
  47.     { return m_pd.Flags & PD_PAGENUMS ? TRUE : FALSE; }
  48. _AFXDLGS_INLINE BOOL CPrintDialog::PrintAll() const
  49.     { return !PrintRange() && !PrintSelection() ? TRUE : FALSE; }
  50. _AFXDLGS_INLINE BOOL CPrintDialog::PrintCollate() const
  51.     { return m_pd.Flags & PD_COLLATE ? TRUE : FALSE; }
  52. _AFXDLGS_INLINE int CPrintDialog::GetFromPage() const
  53.     { return (PrintRange() ? m_pd.nFromPage :-1); }
  54. _AFXDLGS_INLINE int CPrintDialog::GetToPage() const
  55.     { return (PrintRange() ? m_pd.nToPage :-1); }
  56. _AFXDLGS_INLINE HDC CPrintDialog::GetPrinterDC() const
  57.     { ASSERT_VALID(this);
  58.         ASSERT(m_pd.Flags & PD_RETURNDC);
  59.         return m_pd.hDC; }
  60. _AFXDLGS_INLINE BOOL CFindReplaceDialog::IsTerminating() const
  61.     { return m_fr.Flags & FR_DIALOGTERM ? TRUE : FALSE ; }
  62. _AFXDLGS_INLINE CString CFindReplaceDialog::GetReplaceString() const
  63.     { return m_fr.lpstrReplaceWith; }
  64. _AFXDLGS_INLINE CString CFindReplaceDialog::GetFindString() const
  65.     { return m_fr.lpstrFindWhat; }
  66. _AFXDLGS_INLINE BOOL CFindReplaceDialog::SearchDown() const
  67.     { return m_fr.Flags & FR_DOWN ? TRUE : FALSE; }
  68. _AFXDLGS_INLINE BOOL CFindReplaceDialog::FindNext() const
  69.     { return m_fr.Flags & FR_FINDNEXT ? TRUE : FALSE; }
  70. _AFXDLGS_INLINE BOOL CFindReplaceDialog::MatchCase() const
  71.     { return m_fr.Flags & FR_MATCHCASE ? TRUE : FALSE; }
  72. _AFXDLGS_INLINE BOOL CFindReplaceDialog::MatchWholeWord() const
  73.     { return m_fr.Flags & FR_WHOLEWORD ? TRUE : FALSE; }
  74. _AFXDLGS_INLINE BOOL CFindReplaceDialog::ReplaceCurrent() const
  75.     { return m_fr. Flags & FR_REPLACE ? TRUE : FALSE; }
  76. _AFXDLGS_INLINE BOOL CFindReplaceDialog::ReplaceAll() const
  77.     { return m_fr.Flags & FR_REPLACEALL ? TRUE : FALSE; }
  78.  
  79. _AFXDLGS_INLINE CPropertyPage* CPropertySheet::GetPage(int nPage) const
  80.     { return STATIC_DOWNCAST(CPropertyPage, (CObject*)m_pages[nPage]); }
  81. _AFXDLGS_INLINE void CPropertySheet::SetWizardMode()
  82.     { m_psh.dwFlags |= PSH_WIZARD; }
  83. _AFXDLGS_INLINE void CPropertySheet::SetFinishText(LPCTSTR lpszText)
  84.     { ASSERT(::IsWindow(m_hWnd)); ::SendMessage(m_hWnd, PSM_SETFINISHTEXT, 0, (LPARAM)lpszText); }
  85. _AFXDLGS_INLINE void CPropertySheet::SetWizardButtons(DWORD dwFlags)
  86.     { ASSERT(::IsWindow(m_hWnd)); ::SendMessage(m_hWnd, PSM_SETWIZBUTTONS, 0, dwFlags); }
  87. _AFXDLGS_INLINE CTabCtrl* CPropertySheet::GetTabControl() const
  88.     { ASSERT(::IsWindow(m_hWnd)); return (CTabCtrl*)CWnd::FromHandle(
  89.         (HWND)::SendMessage(m_hWnd, PSM_GETTABCONTROL, 0, 0)); }
  90. _AFXDLGS_INLINE BOOL CPropertySheet::PressButton(int nButton)
  91.     { ASSERT(::IsWindow(m_hWnd)); return (BOOL)::SendMessage(m_hWnd, PSM_PRESSBUTTON, nButton, 0); }
  92.  
  93. #ifndef _MAC
  94. _AFXDLGS_INLINE CSize CPageSetupDialog::GetPaperSize() const
  95.     { return CSize(m_psd.ptPaperSize.x, m_psd.ptPaperSize.y); }
  96. #endif
  97.  
  98. /////////////////////////////////////////////////////////////////////////////
  99.  
  100. #endif //_AFXDLGS_INLINE
  101.