您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ AddPage函数代码示例

51自学网 2021-06-01 19:41:15
  C++
这篇教程C++ AddPage函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中AddPage函数的典型用法代码示例。如果您正苦于以下问题:C++ AddPage函数的具体用法?C++ AddPage怎么用?C++ AddPage使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了AddPage函数的26个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: DeleteAllPages

void CInfoSheet::SetInfoModePolygon(void){  m_ModeID = INFO_MODE_POLYGON;  DeleteAllPages();  AddPage( &m_PgGlobal);  //AddPage( &m_PgRenderingStatistics);  AddPage( &m_PgPolygon);  AddPage( &m_PgShadow);  AddPage( &m_PgTexture);  SoftSetActivePage( _iLastActivePgInPolygonMode);}
开发者ID:AdamFlores,项目名称:Serious-Engine,代码行数:11,


示例2: QDialog

AddPodcastDialog::AddPodcastDialog(Application* app, QWidget* parent)    : QDialog(parent),      app_(app),      ui_(new Ui_AddPodcastDialog),      last_opml_path_(QDir::homePath()) {  ui_->setupUi(this);  ui_->details->SetApplication(app);  ui_->results->SetExpandOnReset(false);  ui_->results->SetAddOnDoubleClick(false);  ui_->results_stack->setCurrentWidget(ui_->results_page);  fader_ = new WidgetFadeHelper(ui_->details_scroll_area);  connect(ui_->provider_list, SIGNAL(currentRowChanged(int)),          SLOT(ChangePage(int)));  connect(ui_->details, SIGNAL(LoadingFinished()), fader_, SLOT(StartFade()));  connect(ui_->results, SIGNAL(doubleClicked(QModelIndex)),          SLOT(PodcastDoubleClicked(QModelIndex)));  // Create Add and Remove Podcast buttons  add_button_ =      new QPushButton(IconLoader::Load("list-add"), tr("Add Podcast"), this);  add_button_->setEnabled(false);  connect(add_button_, SIGNAL(clicked()), SLOT(AddPodcast()));  ui_->button_box->addButton(add_button_, QDialogButtonBox::ActionRole);  remove_button_ =      new QPushButton(IconLoader::Load("list-remove"), tr("Unsubscribe"), this);  remove_button_->setEnabled(false);  connect(remove_button_, SIGNAL(clicked()), SLOT(RemovePodcast()));  ui_->button_box->addButton(remove_button_, QDialogButtonBox::ActionRole);  QPushButton* settings_button = new QPushButton(      IconLoader::Load("configure"), tr("Configure podcasts..."), this);  connect(settings_button, SIGNAL(clicked()), SLOT(OpenSettingsPage()));  ui_->button_box->addButton(settings_button, QDialogButtonBox::ResetRole);  // Create an Open OPML file button  QPushButton* open_opml_button = new QPushButton(      IconLoader::Load("document-open"), tr("Open OPML file..."), this);  connect(open_opml_button, SIGNAL(clicked()), this, SLOT(OpenOPMLFile()));  ui_->button_box->addButton(open_opml_button, QDialogButtonBox::ResetRole);  // Add providers  by_url_page_ = new AddPodcastByUrl(app, this);  AddPage(by_url_page_);  AddPage(new FixedOpmlPage(QUrl(kBbcOpmlUrl), tr("BBC Podcasts"),                            QIcon(":providers/bbc.png"), app, this));  AddPage(new GPodderTopTagsPage(app, this));  AddPage(new GPodderSearchPage(app, this));  AddPage(new ITunesSearchPage(app, this));  ui_->provider_list->setCurrentRow(0);}
开发者ID:aelzenaar,项目名称:Clementine-weird-keys,代码行数:54,


示例3: wxNotebook

//==============================================================================browsers::browserTAB::browserTAB(wxWindow *parent, wxWindowID id,const    wxPoint& pos, const wxSize& size, long style) :                                  wxNotebook(parent, id, pos, size, style) {   _TDTstruct = new TDTbrowser(this, tui::ID_TPD_CELLTREE);   AddPage(_TDTstruct, wxT("Cells"));   _TDTlayers = new layerbrowser(this, tui::ID_TPD_LAYERS);   AddPage(_TDTlayers, wxT("Layers"));   _GDSstruct = NULL;   _tellParser = NULL;   Browsers = this;}
开发者ID:BackupTheBerlios,项目名称:toped-svn,代码行数:12,


示例4: m_bCentered

COptionsWizard::COptionsWizard ( HWND hWndParent ) :    CPropertySheetImpl<COptionsWizard> ( 0U, 0, hWndParent ),    m_bCentered(false){    SetWizardMode();    AddPage ( m_pgIntro );    AddPage ( m_pgBkcolor );    AddPage ( m_pgBkpicture );    AddPage ( m_pgFinish );}
开发者ID:KnowNo,项目名称:test-code-backup,代码行数:11,


示例5: CMFCPropertySheet

CSetupSheet::CSetupSheet(CWnd* lpParentWnd)	: CMFCPropertySheet(_T("参数设置"), lpParentWnd){	SetLook(CMFCPropertySheet::PropSheetLook_OutlookBar);	SetIconsList(IDB_SETUP_SHEET, 32);	AddPage(&m_pageNetworkTest);	AddPage(&m_pageEchoTest);	AddPage(&m_pageDeviceTest);	AddPage(&m_pageSetup);}
开发者ID:KnicknackCadillac,项目名称:AgoraDemo,代码行数:11,


示例6: AfxGetApp

void Sheet::AddControlPages(){    m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);    m_psh.dwFlags |= PSP_USEHICON;    m_psh.dwFlags &= ~PSH_HASHELP;  // Lose the Help button    m_psh.hIcon = m_hIcon;    AddPage(&m_Basic);    AddPage(&m_NodeOperations);    AddPage(&m_MultiPages);    AddPage(&m_Watches) ;}
开发者ID:Zekom,项目名称:tracetool,代码行数:12,


示例7: AddPage

int KGSFXModelViewSheet::OnCreate(LPCREATESTRUCT lpCreateStruct){    if (KGPropertySheet::OnCreate(lpCreateStruct) == -1)        return -1;    AddPage(&m_pageModelView, m_pageModelView.IDD);    AddPage(&m_pageTex, m_pageTex.IDD);    AddPage(&m_pageSockBone, m_pageSockBone.IDD);    AddPage(&m_pageGlobPage, m_pageGlobPage.IDD);    return 0;}
开发者ID:viticm,项目名称:pap2,代码行数:12,


示例8: AddPage

CNetSettingPropertySheet::CNetSettingPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)	:CPropertySheet(pszCaption, pParentWnd, iSelectPage){		AddPage(&page_Info);	AddPage(&page_Wifi);	AddPage(&page_NetAdapter);	//AddPage(&page_Profile);	AddPage(&page_Setting);	AddPage(&page_Tools);}
开发者ID:NemProjects,项目名称:WLAN,代码行数:12,


示例9: CSetMainPage

void CSettings::AddPropPages(){    m_pMainPage = new CSetMainPage();    m_pColorPage = new CSetColorPage();    AddPage(m_pMainPage);    AddPage(m_pColorPage);    // remove the "apply" button: changes show only after the settings dialog    // is closed, so the OK button is enough and the "apply" button only    // confuses users.    m_psh.dwFlags |= PSH_NOAPPLYNOW;}
开发者ID:YueLinHo,项目名称:TortoiseSvn,代码行数:13,


示例10: AddPage

CPropSheet::CPropSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)	:CPropertySheet(pszCaption, pParentWnd, iSelectPage){	m_nAlreaySettingPageIndex = 0;	AddPage(&m_PropStep1);//0	//AddPage(&m_PropStep2);	//AddPage(&m_PropStep3);		//AddPage(&m_PropStep3Rpt);	AddPage(&m_PropStep4);  //1	AddPage(&m_PropStep5); //2,lzy2014.9.12	AddPage(&m_PropStep6);//3	}
开发者ID:iloveghq,项目名称:Otdr_v1,代码行数:13,


示例11: CPropertySheet

//--------------------------------------------------------------------------------CMainPropSheet::CMainPropSheet(UINT nIDCaption, COutputConfig* pConfig,								CHL7InputDaemonInitList* pInputConfig)		: CPropertySheet(nIDCaption, NULL, 0)		, m_page1(pConfig)		, m_page2(pConfig, pInputConfig)		, m_page3(pConfig)		, m_page4(pConfig)	{	AddPage(&m_page1);	AddPage(&m_page2);	AddPage(&m_page3);	AddPage(&m_page4);	}
开发者ID:richschonthal,项目名称:HL7,代码行数:14,


示例12: CPropertySheet

COptionsDlg::COptionsDlg(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)	: CPropertySheet(nIDCaption, pParentWnd, iSelectPage),	m_oi(m_Defaults),	m_EngineDlg(m_oi),	m_ViewDlg(m_oi),	m_MidiDlg(m_oi){	m_psh.dwFlags |= PSH_NOAPPLYNOW;	AddPage(&m_EngineDlg);	AddPage(&m_ViewDlg);	AddPage(&m_MidiDlg);	m_CurPage = 0;}
开发者ID:victimofleisure,项目名称:FFRend,代码行数:13,


示例13: IcqWindow

CGroupCreateWizard::CGroupCreateWizard(): IcqWindow(WIN_GROUP_CREATE_WIZARD){	SetWizardMode();	m_psh.dwFlags |= PSH_USEHICON;	m_psh.hIcon = getApp()->m_hIcon;	AddPage(&typePage);	AddPage(&basicPage);	AddPage(&finishPage);	Create();}
开发者ID:bugou,项目名称:test,代码行数:13,


示例14: CQuestionnaireQuestionPage

CQuestionnaireSettings::CQuestionnaireSettings(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage, bool bEditNewQuestion)    :CPropertySheet(nIDCaption, pParentWnd, iSelectPage) {    m_pQuestionnaireQuestionPage = new CQuestionnaireQuestionPage();    AddPage(m_pQuestionnaireQuestionPage);    m_pQuestionnaireOptionPage = new CQuestionnaireOptionPage();    AddPage(m_pQuestionnaireOptionPage);    m_pQuestionnaireButtonPage = new CQuestionnaireButtonPage();    AddPage(m_pQuestionnaireButtonPage);    m_bEditNewQuestion = bEditNewQuestion;}
开发者ID:identity0815,项目名称:os45,代码行数:13,


示例15: AddPage

void DlgPropSheet::AddPropPages() {	m_pSessionDlg = new CSessionDlg;	m_pOptionsDlg = new COptionsDlg;	m_pDisplayDlg = new CDisplayDlg;	m_pAboutDlg  = new CAboutPage;		AddPage(m_pSessionDlg);	AddPage(m_pOptionsDlg);	AddPage(m_pDisplayDlg);	AddPage(m_pAboutDlg);		SetActivePage(m_nLastTab);}
开发者ID:coolshou,项目名称:NetPerSec,代码行数:13,


示例16: CIBASheet

CClientConfigPropertySheet::CClientConfigPropertySheet(CWnd* pParentWnd): CIBASheet(IDS_CLIENTSET, pParentWnd){	m_psh.dwFlags |= PSH_NOAPPLYNOW;	SetLook(CIBASheet::PropSheetLook_List);	AddPage(&m_CommonConfig);	AddPage(&m_BundleTimePage);	AddPage(&m_UnlockPage);	EnableVisualManagerStyle();}
开发者ID:layerfsd,项目名称:PersonalIBA,代码行数:13,


示例17: AddPage

CFrmPreferences::CFrmPreferences(){	AddPage(&m_wndCalPag);	AddPage(&m_wndDrawPag);	AddPage(&m_wndPointPag);	AddPage(&m_wndStylePag);	//{{AFX_DATA_INIT(CFrmPreferences)		// NOTE: the ClassWizard will add member initialization here	//}}AFX_DATA_INIT	m_psh.dwFlags |= PSH_NOAPPLYNOW;	m_bMove=false;//窗口是否移动}
开发者ID:uesoft,项目名称:AutoPHS,代码行数:13,


示例18: CPropertySheet

CPluginWizardSheet::CPluginWizardSheet(CWnd* pWndParent)	 : CPropertySheet(IDS_PROPSHT_CAPTION2, pWndParent){	// Add all of the property pages here.  Note that	// the order that they appear in here will be	// the order they appear in on screen.  By default,	// the first page of the set is the active one.	// One way to make a different property page the 	// active one is to call SetActivePage().	AddPage(&m_Page1);	AddPage(&m_Page2);	AddPage(&m_Page3);	AddPage(&m_Page4);	AddPage(&m_Page5);	AddPage(&m_Page6);	AddPage(&m_Page7);	AddPage(&m_Page8);  // in case we forget to change them ...  m_Page1.m_doc = NULL;  m_Page1.m_pPage2 = &m_Page2;  m_Page2.m_doc = NULL;  m_Page3.m_doc = NULL;  m_Page4.m_doc = NULL;  m_Page5.m_doc = NULL;  m_Page6.m_doc = NULL;  m_Page7.m_doc = NULL;  m_Page8.m_doc = NULL;}
开发者ID:RKelson93,项目名称:mushclient,代码行数:32,


示例19: CPropertySheet

/** * CProjectWizardDialog * */CProjectWizardDialog::CProjectWizardDialog (CProjectWizardData* pData): CPropertySheet (_T (""), AfxGetMainWnd (), 0),  m_pageResource (this, pData),  m_pageLibraries (this, pData, IDS_LIBSPAGE_CAPTION),  m_pageNames (this, pData),  m_pageProperties (this, pData, IDS_PROPSPAGE_CAPTION){    AddPage (&m_pageResource);    AddPage (&m_pageLibraries);    AddPage (&m_pageNames);    AddPage (&m_pageProperties);    SetWizardMode ();}
开发者ID:LM25TTD,项目名称:ATCMcontrol_Engineering,代码行数:18,


示例20: CPropertySheet

COptionsPropertySheet::COptionsPropertySheet(CWnd* pWndParent) :	CPropertySheet(IDS_PROPSHT_CAPTION, pWndParent){	// Add all of the property pages here.  Note that	// the order that they appear in here will be	// the order they appear in on screen.  By default,	// the first page of the set is the active one.	// One way to make a different property page the 	// active one is to call SetActivePage().	AddPage(&m_Page1);	AddPage(&m_Page2);	AddPage(&m_Page3);}
开发者ID:soloveyhappy,项目名称:tiny,代码行数:14,


示例21: mLockedMem

CConvertWizardSheet::CConvertWizardSheet() :    mLockedMem(sizeof(SecureString)),    CPropertySheet(GetCommonString(kPGPdiskConvertWizSheetTitleString),                   NULL, 0){    try    {        // Make sure our locked memory initialized correctly.        mInitErr = mLockedMem.mInitErr;        // Construct the secure string object.        if (mInitErr.IsntError())        {            mPassphrase = new (mLockedMem.GetPtr()) SecureString;	// <new.h>            mPassphrase->ClearString();        }        // Did our pages initialize correctly?        if (mInitErr.IsntError())        {            mInitErr = mConvertPage.mInitErr;        }        if (mInitErr.IsntError())        {            mInitErr = mRandomDataPage.mInitErr;        }        if (mInitErr.IsntError())        {            mConvertPage.mParentConvertWiz		= this;            mDonePage.mParentConvertWiz			= this;            mIntroPage.mParentConvertWiz		= this;            mRandomDataPage.mParentConvertWiz	= this;            AddPage(&mIntroPage);            AddPage(&mRandomDataPage);            AddPage(&mConvertPage);            AddPage(&mDonePage);            // Exorcise the big help button.            m_psh.dwFlags &= ~PSH_HASHELP;        }    }    catch (CMemoryException *ex)    {        mInitErr = DualErr(kPGDMinorError_OutOfMemory);        ex->Delete();    }}
开发者ID:ysangkok,项目名称:pgp-win32-6.5.8,代码行数:50,


示例22: IcqWindow

CGroupSearchWizard::CGroupSearchWizard(): IcqWindow(WIN_GROUP_SEARCH_WIZARD){	SetWizardMode();	m_psh.dwFlags |= PSH_USEHICON;	m_psh.hIcon = getApp()->m_hIcon;	AddPage(&modePage);	AddPage(&typePage);	AddPage(&resultPage);	AddPage(&finishPage);	Create();}
开发者ID:bugou,项目名称:test,代码行数:14,


示例23: COptionsInfo

COptionsDlg::COptionsDlg(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage),	COptionsInfo(m_DefaultState),#pragma warning(push)#pragma warning(disable : 4355)	// 'this' used in base member initializer list	m_GeneralDlg(*this),	// passing reference to our COptionsInfo base class	m_DocumentDlg(*this),	m_NavigateDlg(*this),	m_EngineDlg(*this),	m_PaletteDlg(*this),	m_NetworkDlg(*this),	m_DisplayDlg(*this),	m_MidiDlg(*this)#pragma warning(pop){	ReadState();	m_psh.dwFlags |= PSH_NOAPPLYNOW;	AddPage(&m_GeneralDlg);	AddPage(&m_DocumentDlg);	AddPage(&m_NavigateDlg);	AddPage(&m_EngineDlg);	AddPage(&m_PaletteDlg);	AddPage(&m_NetworkDlg);	AddPage(&m_DisplayDlg);	AddPage(&m_MidiDlg);	m_CurPage = 0;}
开发者ID:victimofleisure,项目名称:Fractice,代码行数:27,


示例24: AddPage

void CWPDS_Sheet::Init(fsWPDSettings *wpds, BOOL bGeneralPage, fsWebPageDownloader* wpd, bool bUsedAsSetDefaults){	if (bGeneralPage)		AddPage (&m_general);	m_general.m_wpds = m_webpages.m_wpds = m_files.m_wpds = m_images.m_wpds = wpds;	m_general.m_wpd = wpd;	m_webpages.m_bUsedAsSetDefaults = bUsedAsSetDefaults;	AddPage (&m_webpages);	AddPage (&m_images);	AddPage (&m_files);}
开发者ID:ratever930,项目名称:freedownload,代码行数:14,


示例25: CPropertySheet

COptionsPropertySheet::COptionsPropertySheet(CWnd* pWndParent)	 : CPropertySheet(IDS_OPTIONS_PROPSHT_CAPTION, pWndParent){	// Add all of the property pages here.  Note that	// the order that they appear in here will be	// the order they appear in on screen.  By default,	// the first page of the set is the active one.	// One way to make a different property page the 	// active one is to call SetActivePage().	m_psh.dwFlags |= PSH_NOAPPLYNOW;	AddPage(&m_PageGeneral);	AddPage(&m_PageOther);}
开发者ID:kolomenkin,项目名称:TaskManagerEx,代码行数:15,


示例26: AddPage

void CImportWizardPropertySheet::Init(){	AddPage(&m_pageManagers);	AddPage(&m_pageProgress);	AddPage(&m_pageResult);	m_psh.dwFlags &= ~PSH_HASHELP;	m_pageManagers.m_psp.dwFlags &= ~PSP_HASHELP;	m_pageProgress.m_psp.dwFlags &= ~PSP_HASHELP;	m_pageResult.m_psp.dwFlags &= ~PSP_HASHELP;	m_pageManagers.Init(&m_imImportManager);	m_pageProgress.Init(&m_imImportManager);	m_pageResult.Init(&m_imImportManager);	SetWizardMode();}
开发者ID:andyTsing,项目名称:freedownload,代码行数:15,



注:本文中的AddPage函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ AddParameter函数代码示例
C++ AddOutlandScripts函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。