Click here to Skip to main content
15,884,099 members
Articles / Desktop Programming / MFC
Article

SAPrefs - Netscape-like Preferences Dialog

Rate me:
Please Sign up or sign in to vote.
5.00/5 (29 votes)
20 Apr 2002CPOL2 min read 619.2K   4.7K   148   142
A base class for a prefereneces dialog, similar to that used in Netscape

Sample Image

CSAPrefsDialog is a base for a preferences dialog, similar to the one used in Netscape. Page selection is handled with a CTreeCtrl - pages can be "sub-pages" of other pages!

Use is very similar to CPropertySheet / CPropertyPage : create a CSAPrefsDialog object. This implements the container for your property pages. The pages are objects of type CPrefsSubDlg (a subclass of CDialog). Using these classes is as easy as this :

// our preferences dialog
CSAPrefsDialog dlg;

// the "pages" (all derived from CSAPrefsSubDlg)
CPage1 page1;
CPage2 page2;
CPage3 page3;
CPage4 page4;

// add 3 pages
dlg.AddPage(page1, "Page 1");
dlg.AddPage(page2, "Page 2");
dlg.AddPage(page3, "Page 3");

// this one will be a child node on the tree
// (&page3 specifies the parent)
dlg.AddPage(dlg4, "Page 4", &page3);

// the prefs dialog title
dlg.SetTitle("This is pretty");

// text drawn on the right side of the shaded
// page label. this does not change when the
// pages change, hence "constant".
dlg.SetConstantText("SAPrefs");

// launch it like any other dialog...
dlg1.m_csText = m_csStupidCString;
if (dlg.DoModal()==IDOK)
{
  m_csStupidCString = dlg1.m_csText;
}

To use this in your own application, you need to follow these steps :

  1. Add the following files to your project :
    • CSAPrefsDialog.cpp,.h
    • CSAPrefsSubDlg.cpp,.h
    • CSAPrefsStatic.cpp,.h
  2. Copy the IDD_SAPREFS dialog resource from the sample project to your project.
  3. Create your preference "pages" in the resource editor with the following settings :
    • Style - Child
    • Border - None
    • No OK or Cancel buttons! (pretend these are CPropertyPages!)
  4. Use Class Wizard to create the dialog classes for the pages.
  5. In the .cpp and .h files for your new dialog classes, replace all occurances of CDialog with CSAPrefsSubDlg. (you will need to #include "SAPrefsSubDlg.h")
  6. Follow the steps shown in the sample code (above) to create the main dialog and add your pages.

Notes

  • The parent/child relationships that you specify with AddPage(page, text, &parent) are strictly cosmetic. Only the tree control knows about them! As far as the CSAPrefsDialog is concerned, all pages are equal and independent of each other.
  • OnOK and OnCancel are virtual functions of CSAPrefsSubDlg. You can override them in your own derived dialogs. But, you will have to do this by-hand (implement them like any other function). Class Wizard will not be able to do this for you. These functions are called, for every page that has been viewed, when CSAPrefsSubDlg is closed by OK or Cancel.
  • You should handle "Help" as with CPropertyPage : with a WM_NOTIFY message handler :
    BOOL CMyPage::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult) 
    {
    	NMHDR* pnmh = (LPNMHDR) lParam;
    	if (pnmh->code == PSN_HELP) {
    		AfxGetApp()->WinHelp(some help ID);
    	}
    
    	return CSAPrefsSubDlg::OnNotify(wParam, lParam, pResult);
    }
  • Your pages should fit inside the IDC_DLG_FRAME rectangle on the IDD_SAPREFS dialog. CSAPrefsSubDlg does not resize to fit your pages, like CPropertySheet does. This keeps things nice and simple. Auto-resizing would be a nice addition, but I don't need it for my purposes, so I didn't add it.

History

  • Jan 27 2002 - updated source files.
  • 21 April 2002 - updated source files.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
Chris Losinger was the president of Smaller Animals Software, Inc. (which no longer exists).

Comments and Discussions

 
GeneralProblem selecting controls on the pages Pin
gnw6-Dec-02 10:56
gnw6-Dec-02 10:56 
GeneralRe: Problem selecting controls on the pages Pin
Chris Losinger6-Dec-02 11:00
professionalChris Losinger6-Dec-02 11:00 
GeneralRe: Problem selecting controls on the pages Pin
Anonymous13-Dec-02 10:42
Anonymous13-Dec-02 10:42 
GeneralWinHelp Pin
iyiac22-Nov-02 16:14
iyiac22-Nov-02 16:14 
GeneralRe: WinHelp Pin
Chris Losinger22-Nov-02 18:13
professionalChris Losinger22-Nov-02 18:13 
GeneralQuestion Pin
Anonymous20-Nov-02 7:39
Anonymous20-Nov-02 7:39 
GeneralRe: Question Pin
Chris Losinger20-Nov-02 8:24
professionalChris Losinger20-Nov-02 8:24 
GeneralRe: Question Pin
Anonymous20-Nov-02 11:03
Anonymous20-Nov-02 11:03 
GeneralExporting values Pin
ArielR12-Nov-02 5:59
ArielR12-Nov-02 5:59 
GeneralRe: Exporting values Pin
Chris Losinger12-Nov-02 6:07
professionalChris Losinger12-Nov-02 6:07 
GeneralRe: Exporting values Pin
ArielR12-Nov-02 10:14
ArielR12-Nov-02 10:14 
GeneralRe: Exporting values Pin
Chris Losinger13-Nov-02 5:06
professionalChris Losinger13-Nov-02 5:06 
GeneralRe: Exporting values Pin
ArielR13-Nov-02 7:01
ArielR13-Nov-02 7:01 
GeneralRe: Exporting values Pin
Chris Losinger13-Nov-02 7:08
professionalChris Losinger13-Nov-02 7:08 
GeneralRe: Exporting values Pin
ArielR15-Nov-02 23:27
ArielR15-Nov-02 23:27 
GeneralStart page Pin
PascalG17-Sep-02 21:02
PascalG17-Sep-02 21:02 
GeneralRe: Start page Pin
Chris Losinger18-Sep-02 3:47
professionalChris Losinger18-Sep-02 3:47 
GeneralRe: Start page Pin
PascalG23-Sep-02 20:02
PascalG23-Sep-02 20:02 
GeneralRe: Start page : Solved ? Pin
PascalG24-Sep-02 21:02
PascalG24-Sep-02 21:02 
Generala much needed feature. Pin
mystro_AKA_kokie29-Aug-02 12:26
mystro_AKA_kokie29-Aug-02 12:26 
GeneralRe: a much needed feature. Pin
Chris Losinger29-Aug-02 13:37
professionalChris Losinger29-Aug-02 13:37 
GeneralRe: a much needed feature. Pin
mystro_AKA_kokie30-Aug-02 10:26
mystro_AKA_kokie30-Aug-02 10:26 
Generalthank you so much!!! Pin
hiddukel22-Jul-02 2:19
hiddukel22-Jul-02 2:19 
QuestionHow to tell when a page gains focus? Pin
dazinith19-Jul-02 4:16
dazinith19-Jul-02 4:16 
AnswerRe: How to tell when a page gains focus? Pin
Chris Losinger19-Jul-02 4:29
professionalChris Losinger19-Jul-02 4:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.