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

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

51自学网 2021-06-03 10:11:17
  C++
这篇教程C++ wxNewId函数代码示例写得很实用,希望能帮到您。

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

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

示例1: wxNewId

#include <wx/tokenzr.h>#include <manager.h>#include <configmanager.h>#include <pluginmanager.h>#include <editormanager.h>#include <projectmanager.h>#include <cbeditor.h>#include <globals.h>#include "cbstyledtextctrl.h"#ifndef CB_PRECOMP    #include "cbproject.h"#endifint idMenuJumpToImplementation = wxNewId();int idMenuRefreshTree = wxNewId();int idMenuForceReparse = wxNewId();int idMenuDoNotSort = wxNewId();int idMenuSortAlphabetically = wxNewId();int idMenuBottomTree = wxNewId();BEGIN_EVENT_TABLE(WorkspaceBrowserF, wxPanel)    // m_TreeBottom	EVT_TREE_ITEM_ACTIVATED(XRCID("treeMembersWBF"), WorkspaceBrowserF::OnTreeItemDoubleClick)    EVT_TREE_ITEM_RIGHT_CLICK(XRCID("treeMembersWBF"), WorkspaceBrowserF::OnTreeItemRightClick)    // m_TreeTop	EVT_TREE_ITEM_ACTIVATED(XRCID("treeAllWBF"), WorkspaceBrowserF::OnTreeItemDoubleClick)    EVT_TREE_ITEM_RIGHT_CLICK(XRCID("treeAllWBF"), WorkspaceBrowserF::OnTreeItemRightClick)    EVT_TREE_SEL_CHANGED(XRCID("treeAllWBF"), WorkspaceBrowserF::OnTreeItemSelected)    EVT_TREE_ITEM_EXPANDING(XRCID("treeAllWBF"), WorkspaceBrowserF::OnTreeItemExpanding)
开发者ID:Three-DS,项目名称:codeblocks-13.12,代码行数:31,


示例2: wxNewId

#include <wx/menu.h>#include <wx/filedlg.h>#include <wx/panel.h>#include <wx/string.h>#include <wx/statusbr.h>#include <wx/intl.h>#include <wx/richtext/richtextctrl.h>#include <wx/bitmap.h>#include <wx/image.h>#include <wx/artprov.h>//*)#include <wx/numdlg.h>//(*IdInit(frControlPanel)const long frControlPanel::ID_PANEL2 = wxNewId();const long frControlPanel::ID_PANEL3 = wxNewId();const long frControlPanel::ID_PANEL4 = wxNewId();const long frControlPanel::ID_PANEL5 = wxNewId();const long frControlPanel::ID_PANEL6 = wxNewId();const long frControlPanel::ID_PANEL7 = wxNewId();const long frControlPanel::ID_PANEL8 = wxNewId();const long frControlPanel::ID_PANEL9 = wxNewId();const long frControlPanel::ID_PANEL10 = wxNewId();const long frControlPanel::ID_PANEL11 = wxNewId();const long frControlPanel::ID_PANEL13 = wxNewId();const long frControlPanel::ID_PANEL1 = wxNewId();const long frControlPanel::ID_NOTEBOOK1 = wxNewId();const long frControlPanel::ID_RICHTEXTCTRL1 = wxNewId();const long frControlPanel::ID_MENUITEM1 = wxNewId();const long frControlPanel::ID_MENUITEM2 = wxNewId();
开发者ID:Nirflysher,项目名称:myriadrf-utils,代码行数:31,


示例3: while

    if(list==_T("")) //any empty list matches everything by default        return true;    wxString wildlist=list;    wxString wild=list.BeforeFirst(';');    while(wildlist!=_T(""))    {        if(wild!=_T("") && ::wxMatchWild(wild,name))            return true;        wildlist=wildlist.AfterFirst(';');        wild=wildlist.BeforeFirst(';');    }    return false;}int ID_INTERP_WINDOW_TOGGLE=wxNewId();// events handlingBEGIN_EVENT_TABLE(PythonInterpreter, cbPlugin)	// add any events you want to handle here    EVT_MENU(ID_INTERP_WINDOW_TOGGLE,PythonInterpreter::OnToggleInterpreterWindow)    EVT_UPDATE_UI(ID_INTERP_WINDOW_TOGGLE, PythonInterpreter::OnUpdateUI)    EVT_COMMAND(0,wxEVT_SHELL_ADD_CLICKED, PythonInterpreter::AddNewInterpreter)END_EVENT_TABLE()void PythonInterpreter::OnUpdateUI(wxUpdateUIEvent& event){#ifndef TOOLSPLUSLINK    if(m_ViewMenu)    {
开发者ID:BackupTheBerlios,项目名称:cbilplugin-svn,代码行数:31,


示例4: wxNewId

#include "AssistPanel.h"#include "../../xLightsMain.h"//(*InternalHeaders(AssistPanel)#include <wx/intl.h>#include <wx/string.h>//*)//(*IdInit(AssistPanel)const long AssistPanel::ID_SCROLLEDWINDOW_Assist = wxNewId();//*)BEGIN_EVENT_TABLE(AssistPanel,wxPanel)	//(*EventTable(AssistPanel)	//*)END_EVENT_TABLE()AssistPanel::AssistPanel(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size): mGridCanvas(nullptr){	//(*Initialize(AssistPanel)	Create(parent, id, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL|wxWANTS_CHARS, _T("id"));	FlexGridSizer1 = new wxFlexGridSizer(1, 1, 0, 0);	ScrolledWindowAssist = new wxScrolledWindow(this, ID_SCROLLEDWINDOW_Assist, wxDefaultPosition, wxDefaultSize, wxWANTS_CHARS|wxVSCROLL|wxHSCROLL, _T("ID_SCROLLEDWINDOW_Assist"));	FlexGridSizer2 = new wxFlexGridSizer(2, 1, 0, 0);	FlexGridSizer2->AddGrowableCol(0);	FlexGridSizer2->AddGrowableRow(0);	ScrolledWindowAssist->SetSizer(FlexGridSizer2);	FlexGridSizer2->Fit(ScrolledWindowAssist);	FlexGridSizer2->SetSizeHints(ScrolledWindowAssist);	FlexGridSizer1->Add(ScrolledWindowAssist, 1, wxALL|wxEXPAND|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
开发者ID:rickcowan,项目名称:xLights,代码行数:31,


示例5: wxNewId

#include <wx/button.h>#include <wx/string.h>#include <wx/slider.h>#include <wx/intl.h>#include <wx/stattext.h>#include <wx/choice.h>#include <wx/radiobox.h>//*)#include <wx/colordlg.h>#include <configmanager.h>#include "cbDiffUtils.h"//(*IdInit(cbDiffConfigPanel)const long cbDiffConfigPanel::ID_BUTTON2 = wxNewId();const long cbDiffConfigPanel::ID_STATICTEXT1 = wxNewId();const long cbDiffConfigPanel::ID_SLIDER1 = wxNewId();const long cbDiffConfigPanel::ID_BUTTON1 = wxNewId();const long cbDiffConfigPanel::ID_STATICTEXT2 = wxNewId();const long cbDiffConfigPanel::ID_SLIDER2 = wxNewId();const long cbDiffConfigPanel::ID_CHOICE1 = wxNewId();const long cbDiffConfigPanel::ID_BUTTON3 = wxNewId();const long cbDiffConfigPanel::ID_STATICTEXT3 = wxNewId();const long cbDiffConfigPanel::ID_SLIDER3 = wxNewId();const long cbDiffConfigPanel::ID_RADIOBOX1 = wxNewId();const long cbDiffConfigPanel::ID_CHOICE2 = wxNewId();//*)BEGIN_EVENT_TABLE(cbDiffConfigPanel, cbConfigurationPanel)	//(*EventTable(cbDiffConfigPanel)
开发者ID:stahta01,项目名称:EmBlocks,代码行数:31,


示例6: OnLabelKillFocus

            void OnLabelKillFocus(wxFocusEvent& event);            void OnSelectionChange(wxCommandEvent& event);            //*)            //(*Declarations(wxsListbookParentQP)            wxCheckBox* Selected;            wxTextCtrl* Label;            //*)            wxsListbookExtra* m_Extra;            DECLARE_EVENT_TABLE()    };    //(*IdInit(wxsListbookParentQP)    const long wxsListbookParentQP::ID_TEXTCTRL1 = wxNewId();    const long wxsListbookParentQP::ID_CHECKBOX1 = wxNewId();    //*)    BEGIN_EVENT_TABLE(wxsListbookParentQP,wxPanel)        //(*EventTable(wxsListbookParentQP)        //*)    END_EVENT_TABLE()    void wxsListbookParentQP::OnLabelText(wxCommandEvent& event)       { SaveData(); }    void wxsListbookParentQP::OnLabelKillFocus(wxFocusEvent& event)    { SaveData(); event.Skip(); }    void wxsListbookParentQP::OnSelectionChange(wxCommandEvent& event) { SaveData(); }    WXS_ST_BEGIN(wxsListbookStyles,_T(""))        WXS_ST_CATEGORY("wxListbook")        WXS_ST(wxLB_DEFAULT)
开发者ID:SaturnSDK,项目名称:Saturn-SDK-IDE,代码行数:31,


示例7: AssistPanel

AssistPanel *RenderableEffect::GetAssistPanel(wxWindow *parent, xLightsFrame* xl_frame) {    AssistPanel *assist_panel = new AssistPanel(parent);    xlGridCanvas* grid = new xlGridCanvasEmpty(assist_panel->GetCanvasParent(), wxNewId(), wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL|wxFULL_REPAINT_ON_RESIZE, _T("EmptyGrid"));    assist_panel->SetGridCanvas(grid);    return assist_panel;}
开发者ID:Jchuchla,项目名称:xLights,代码行数:6,


示例8: wxNewId

 */#include <sdk.h>#ifndef CB_PRECOMP    #include <wx/filedlg.h>    #include <wx/intl.h>    #include <cbproject.h>    #include <projectbuildtarget.h>    #include <projectmanager.h>    #include <manager.h>#endif#include <wx/filefn.h>#include "filepathpanel.h"//(*IdInit(FilePathPanel)const long FilePathPanel::ID_STATICTEXT1 = wxNewId();const long FilePathPanel::ID_STATICTEXT2 = wxNewId();const long FilePathPanel::ID_TEXTCTRL1 = wxNewId();const long FilePathPanel::ID_BUTTON1 = wxNewId();const long FilePathPanel::ID_STATICTEXT3 = wxNewId();const long FilePathPanel::ID_TEXTCTRL2 = wxNewId();const long FilePathPanel::ID_CHECKBOX1 = wxNewId();const long FilePathPanel::ID_STATICTEXT4 = wxNewId();const long FilePathPanel::ID_CHECKLISTBOX2 = wxNewId();const long FilePathPanel::ID_BUTTON2 = wxNewId();const long FilePathPanel::ID_BUTTON3 = wxNewId();//*)BEGIN_EVENT_TABLE(FilePathPanel,wxPanel)    //(*EventTable(FilePathPanel)    //*)
开发者ID:469306621,项目名称:Languages,代码行数:31,


示例9: wxNewId

//(*InternalHeaders(ExternalEventsEditor)#include <wx/intl.h>#include <wx/string.h>//*)#include <wx/textctrl.h>#include "GDCore/Tools/Log.h"#include <wx/ribbon/bar.h>#include "GDCore/Tools/Localization.h"#include "GDCore/Project/ExternalEvents.h"#include "GDCore/CommonTools.h"#include "GDCore/Project/Project.h"#include "GDCore/IDE/Dialogs/MainFrameWrapper.h"#include "EventsEditor.h"//(*IdInit(ExternalEventsEditor)const long ExternalEventsEditor::ID_STATICTEXT1 = wxNewId();const long ExternalEventsEditor::ID_COMBOBOX1 = wxNewId();const long ExternalEventsEditor::ID_CUSTOM2 = wxNewId();//*)BEGIN_EVENT_TABLE(ExternalEventsEditor,wxPanel)	//(*EventTable(ExternalEventsEditor)	//*)END_EVENT_TABLE()ExternalEventsEditor::ExternalEventsEditor(wxWindow* parent, gd::Project & game_, gd::ExternalEvents & events_, const gd::MainFrameWrapper & mainFrameWrapper_) :events(events_),game(game_),mainFrameWrapper(mainFrameWrapper_){	//(*Initialize(ExternalEventsEditor)
开发者ID:HaoDrang,项目名称:GD,代码行数:31,


示例10: wxNewId

#include "AnalysisPanel.h"#include "word/GuematricNumber.h"//(*InternalHeaders(AnalysisPanel)#include <wx/button.h>#include <wx/combobox.h>#include <wx/intl.h>#include <wx/listctrl.h>#include <wx/sizer.h>#include <wx/stattext.h>#include <wx/string.h>#include <wx/textctrl.h>//*)//(*IdInit(AnalysisPanel)const long AnalysisPanel::ID_STATICTEXT1 = wxNewId();const long AnalysisPanel::ID_COMBOBOX1 = wxNewId();const long AnalysisPanel::ID_TEXTCTRL1 = wxNewId();const long AnalysisPanel::ID_STATICTEXT2 = wxNewId();const long AnalysisPanel::ID_BUTTON1 = wxNewId();const long AnalysisPanel::ID_STATICTEXT3 = wxNewId();const long AnalysisPanel::ID_STATICTEXT4 = wxNewId();const long AnalysisPanel::ID_LISTVIEW1 = wxNewId();//*)BEGIN_EVENT_TABLE(AnalysisPanel,wxPanel)	//(*EventTable(AnalysisPanel)	//*)END_EVENT_TABLE()AnalysisPanel::AnalysisPanel(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size, long style, const wxString& name)
开发者ID:etrange02,项目名称:GMX,代码行数:31,


示例11: defined

#elif defined(__UNIX__)        wxbuild << _T("-Linux");#endif#if wxUSE_UNICODE        wxbuild << _T("-Unicode build");#else        wxbuild << _T("-ANSI build");#endif // wxUSE_UNICODE    }    return wxbuild;}//(*IdInit(wxSmith_DialogDialog)const long wxSmith_DialogDialog::ID_STATICTEXT1 = wxNewId();const long wxSmith_DialogDialog::ID_BUTTON1 = wxNewId();const long wxSmith_DialogDialog::ID_STATICLINE1 = wxNewId();const long wxSmith_DialogDialog::ID_BUTTON2 = wxNewId();//*)BEGIN_EVENT_TABLE(wxSmith_DialogDialog,wxDialog)    //(*EventTable(wxSmith_DialogDialog)    //*)END_EVENT_TABLE()wxSmith_DialogDialog::wxSmith_DialogDialog(wxWindow* parent,wxWindowID id){    //(*Initialize(wxSmith_DialogDialog)    Create(parent, id, _("wxWidgets app"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("id"));    BoxSizer1 = new wxBoxSizer(wxHORIZONTAL);
开发者ID:DowerChest,项目名称:cb_misc,代码行数:31,


示例12: wxNewId

#include "TrueOrFalse.h"//(*InternalHeaders(TrueOrFalse)#include <wx/artprov.h>#include <wx/bitmap.h>#include <wx/intl.h>#include <wx/image.h>#include <wx/string.h>//*)#include "GDCore/Tools/HelpFileAccess.h"#include "GDCore/IDE/SkinHelper.h"//(*IdInit(TrueOrFalse)const long TrueOrFalse::ID_STATICBITMAP1 = wxNewId();const long TrueOrFalse::ID_STATICTEXT1 = wxNewId();const long TrueOrFalse::ID_STATICLINE1 = wxNewId();const long TrueOrFalse::ID_STATICBITMAP2 = wxNewId();const long TrueOrFalse::ID_HYPERLINKCTRL1 = wxNewId();const long TrueOrFalse::ID_BUTTON2 = wxNewId();const long TrueOrFalse::ID_BUTTON1 = wxNewId();//*)BEGIN_EVENT_TABLE(TrueOrFalse,wxDialog)	//(*EventTable(TrueOrFalse)	//*)END_EVENT_TABLE()TrueOrFalse::TrueOrFalse(wxWindow* parent, wxString message, wxString caption){	//(*Initialize(TrueOrFalse)	wxFlexGridSizer* FlexGridSizer3;
开发者ID:Slulego,项目名称:GD,代码行数:31,


示例13: wxNewId

 * $Revision$ * $Id$ * $HeadURL$ */#include <sdk.h>#ifndef CB_PRECOMP    //(*InternalHeadersPCH(GenericSelectPath)    #include <wx/string.h>    #include <wx/intl.h>    //*)#endif#include "genericselectpath.h"//(*IdInit(GenericSelectPath)const long GenericSelectPath::ID_STATICTEXT1 = wxNewId();const long GenericSelectPath::ID_STATICTEXT2 = wxNewId();const long GenericSelectPath::ID_TEXTCTRL1 = wxNewId();const long GenericSelectPath::ID_BUTTON1 = wxNewId();//*)BEGIN_EVENT_TABLE(GenericSelectPath,wxPanel)	//(*EventTable(GenericSelectPath)	//*)END_EVENT_TABLE()GenericSelectPath::GenericSelectPath(wxWindow* parent,wxWindowID id){	//(*Initialize(GenericSelectPath)	Create(parent, id, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("id"));	BoxSizer1 = new wxBoxSizer(wxVERTICAL);
开发者ID:DowerChest,项目名称:codeblocks,代码行数:31,


示例14: defined

#elif defined(__UNIX__)        wxbuild << _T("-Linux");#endif#if wxUSE_UNICODE        wxbuild << _T("-Unicode build");#else        wxbuild << _T("-ANSI build");#endif // wxUSE_UNICODE    }    return wxbuild;}//(*IdInit(VideoInputGUITesterDialog)const long VideoInputGUITesterDialog::ID_BUTTON1 = wxNewId();const long VideoInputGUITesterDialog::ID_STATICBOX1 = wxNewId();const long VideoInputGUITesterDialog::ID_BUTTON2 = wxNewId();const long VideoInputGUITesterDialog::ID_TIMER1 = wxNewId();//*)BEGIN_EVENT_TABLE(VideoInputGUITesterDialog,wxDialog)    //(*EventTable(VideoInputGUITesterDialog)    //*)        EVT_PAINT(VideoInputGUITesterDialog::OnPaint)END_EVENT_TABLE()VideoInputGUITesterDialog::VideoInputGUITesterDialog(wxWindow* parent,wxWindowID id){    //(*Initialize(VideoInputGUITesterDialog)    Create(parent, id, _("Video Input GUI Tester"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("id"));
开发者ID:benwaa,项目名称:RoboVision,代码行数:31,


示例15: BubblePanel

BubbleHardwareManager::BubbleHardwareManager(   wxWindow* parent,                                                wxWindowID id,                                                Bubble *const bubble,                                                const wxString& boardName,                                                const wxColour& colour,                                                const wxPoint& pos,                                                const wxSize& size,                                                long style,                                                const wxString& name) : BubblePanel(parent,                                                                                    id,                                                                                    colour,                                                                                    true,                                                                                    pos,                                                                                    size,                                                                                    style,                                                                                    name                                                                                   ),                                                                        parent(parent),                                                                        bubble(bubble),                                                                        boardName(boardName),                                                                        currentBoardProperties(NULL),                                                                        lblBootPortName(NULL),                                                                        comboBootPortName(NULL),                                                                        lblBoardName(NULL),                                                                        comboBoardName(NULL),                                                                        buttonReloadBlocks(NULL),                                                                        buttonReloadHardware(NULL),                                                                        lblURL0(NULL),                                                                        lblURL1(NULL),                                                                        buttonGoToDriversDir(NULL),                                                                        buttonMainImage(NULL),                                                                        emptyDummyString(wxString("")){    if (bubble == NULL)        return; //Nothing to do.    currentBoardProperties = new BubbleBoardProperties();    //Hide();    //##The following line crashes the application when the BubbleHardwareManager is closed by the user, so    //##don't delete it, because it may be possibly a wxAUI's bug, and I would like to document it:    //SetSize(400, 450);    lblBoardName = new wxStaticText(   this,                                        wxNewId(), //##                                        //##Future: Make configurable by the user if he want to see these                                        //shorcuts on screen or not:                                        _("Hardware (Alt+W):"), //##Load shorcuts from XML.                                        wxPoint(10, 10),                                        wxSize(150, 20),                                        wxALIGN_CENTRE,                                        wxString("lblBoardName")                                   );    comboBoardName = new BubbleCombo(   this,                                        wxNewId(),                                        wxImage(bubble->getThemePath() + wxString("/ComboSelectDefault.png")),                                        wxImage(bubble->getThemePath() + wxString("/ComboSelectPressed.png")),                                        wxImage(bubble->getThemePath() + wxString("/ComboSelectHover.png")),                                        wxImage(bubble->getThemePath() + wxString("/ComboSelectDisabled.png")),                                        false,                                        wxPoint(10, 25), //##Make this automatic.                                        wxSize(190, 16),                                        //wxTAB_TRAVERSAL|                                        //wxNO_BORDER|                                        //wxBORDER_SIMPLE|                                        //wxBORDER_RAISED|                                        wxBORDER_SUNKEN|                                        wxTRANSPARENT_WINDOW,                                        //wxDefaultSize,                                        //##wxALIGN_CENTRE,                                        wxString("comboBoardName")                                    );    if (comboBoardName)    {        comboBoardName->setSorted(false);        bubble->loadHardwareTargets(this);        boardName = "DuinoBot.v2.3 HID";        if (boardName == wxString(""))        {            selectFirstBoard();        }        else        {            BubbleBoardProperties *initialBoard = NULL;            initialBoard = &(boardsProperties.Item(0));            //Find board:            bool found = false;            BubbleBoardProperties *iterator = NULL;            for (unsigned int i = 0; i < boardsProperties.GetCount(); i++)            {                iterator = &(boardsProperties.Item(i)); //##In theory, this is faster than the other index based form, but I'm not sure yet...                if (iterator)                {                    if (iterator->getName() == boardName)                    {                        initialBoard = iterator;//.........这里部分代码省略.........
开发者ID:id-fga,项目名称:minibloq,代码行数:101,


示例16: wxNewId

 */#include "BuildProgressPnl.h"//(*InternalHeaders(BuildProgressPnl)#include <wx/font.h>#include <wx/intl.h>#include <wx/string.h>//*)#include <wx/process.h>#include <wx/txtstrm.h>#include "GDCore/CommonTools.h"#include "GDCpp/IDE/CodeCompiler.h"//(*IdInit(BuildProgressPnl)const long BuildProgressPnl::ID_STATICTEXT1 = wxNewId();const long BuildProgressPnl::ID_GAUGE1 = wxNewId();const long BuildProgressPnl::ID_TEXTCTRL1 = wxNewId();//*)BEGIN_EVENT_TABLE(BuildProgressPnl,wxPanel)	//(*EventTable(BuildProgressPnl)	//*)	EVT_COMMAND(wxID_ANY, CodeCompiler::refreshEventType, BuildProgressPnl::OnMustRefresh)END_EVENT_TABLE()BuildProgressPnl::BuildProgressPnl(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size) :clearOnNextTextAdding(true){	//(*Initialize(BuildProgressPnl)	wxFlexGridSizer* FlexGridSizer1;
开发者ID:cubemoon,项目名称:GD,代码行数:31,


示例17: wxNewId

#include "LMS7002_MainControl.h"#include <wx/filedlg.h>#include "CoefficientFileParser.h"#include <wx/msgdlg.h>//(*InternalHeaders(dlgGFIR_Coefficients)#include <wx/sizer.h>#include <wx/stattext.h>#include <wx/spinctrl.h>#include <wx/grid.h>#include <wx/button.h>#include <wx/string.h>//*)//(*IdInit(dlgGFIR_Coefficients)const long dlgGFIR_Coefficients::ID_STATICTEXT1 = wxNewId();const long dlgGFIR_Coefficients::ID_STATICTEXT2 = wxNewId();const long dlgGFIR_Coefficients::ID_BUTTON1 = wxNewId();const long dlgGFIR_Coefficients::ID_BUTTON2 = wxNewId();const long dlgGFIR_Coefficients::ID_BUTTON3 = wxNewId();const long dlgGFIR_Coefficients::ID_STATICTEXT3 = wxNewId();const long dlgGFIR_Coefficients::ID_SPINCTRL1 = wxNewId();const long dlgGFIR_Coefficients::ID_GRID1 = wxNewId();const long dlgGFIR_Coefficients::ID_BUTTON4 = wxNewId();const long dlgGFIR_Coefficients::ID_BUTTON5 = wxNewId();//*)BEGIN_EVENT_TABLE(dlgGFIR_Coefficients,wxDialog)	//(*EventTable(dlgGFIR_Coefficients)	//*)END_EVENT_TABLE()
开发者ID:kkongling,项目名称:lms-suite,代码行数:31,


示例18: wxNewId

//(*InternalHeaders(HeadersDetectorDlg)#include <wx/gauge.h>#include <wx/sizer.h>#include <wx/button.h>#include <wx/string.h>#include <wx/intl.h>#include <wx/stattext.h>//*)#include <encodingdetector.h>#include "headersdetectordlg.h"//(*IdInit(HeadersDetectorDlg)const long HeadersDetectorDlg::ID_STATICTEXT1 = wxNewId();const long HeadersDetectorDlg::ID_STATICTEXT3 = wxNewId();const long HeadersDetectorDlg::ID_STATICTEXT2 = wxNewId();const long HeadersDetectorDlg::ID_STATICTEXT4 = wxNewId();const long HeadersDetectorDlg::ID_GAUGE1 = wxNewId();const long HeadersDetectorDlg::ID_TIMER1 = wxNewId();//*)BEGIN_EVENT_TABLE(HeadersDetectorDlg,wxScrollingDialog)	//(*EventTable(HeadersDetectorDlg)	//*)	EVT_BUTTON(wxID_CANCEL,HeadersDetectorDlg::Cancel)END_EVENT_TABLE()HeadersDetectorDlg::HeadersDetectorDlg(wxWindow* parent,cbProject* project,wxArrayString& headers)    : m_Project(project)    , m_Headers(headers)
开发者ID:SaturnSDK,项目名称:Saturn-SDK-IDE,代码行数:30,


示例19: wxNewId

#include "SeqElementMismatchDialog.h"//(*InternalHeaders(SeqElementMismatchDialog)#include <wx/intl.h>#include <wx/button.h>#include <wx/string.h>//*)//(*IdInit(SeqElementMismatchDialog)const long SeqElementMismatchDialog::ID_STATICTEXT1 = wxNewId();const long SeqElementMismatchDialog::ID_RADIOBUTTON2 = wxNewId();const long SeqElementMismatchDialog::ID_RADIOBUTTON3 = wxNewId();const long SeqElementMismatchDialog::ID_CHOICE1 = wxNewId();//*)BEGIN_EVENT_TABLE(SeqElementMismatchDialog,wxDialog)    //(*EventTable(SeqElementMismatchDialog)    //*)END_EVENT_TABLE()SeqElementMismatchDialog::SeqElementMismatchDialog(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size){    //(*Initialize(SeqElementMismatchDialog)    wxStaticText* StaticText1;    wxFlexGridSizer* FlexGridSizer1;    wxStdDialogButtonSizer* StdDialogButtonSizer1;    Create(parent, id, _("Sequence Element Mismatch"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("id"));    SetClientSize(wxDefaultSize);    Move(wxDefaultPosition);    FlexGridSizer1 = new wxFlexGridSizer(0, 1, 0, 0);
开发者ID:Jchuchla,项目名称:xLights,代码行数:31,


示例20: Copyright

   |                                                                           |   | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file        |   | See: http://www.mrpt.org/Authors - All rights reserved.                   |   | Released under BSD License. See details in http://www.mrpt.org/License    |   +---------------------------------------------------------------------------+ */#include "CPanelCameraSelection.h"//(*InternalHeaders(CPanelCameraSelection)#include <wx/settings.h>#include <wx/font.h>#include <wx/intl.h>#include <wx/string.h>//*)//(*IdInit(CPanelCameraSelection)const long CPanelCameraSelection::ID_STATICTEXT1 = wxNewId();const long CPanelCameraSelection::ID_SPINCTRL1 = wxNewId();const long CPanelCameraSelection::ID_STATICTEXT3 = wxNewId();const long CPanelCameraSelection::ID_CHOICE1 = wxNewId();const long CPanelCameraSelection::ID_STATICTEXT6 = wxNewId();const long CPanelCameraSelection::ID_CHOICE2 = wxNewId();const long CPanelCameraSelection::ID_PANEL2 = wxNewId();const long CPanelCameraSelection::ID_STATICTEXT7 = wxNewId();const long CPanelCameraSelection::ID_TEXTCTRL1 = wxNewId();const long CPanelCameraSelection::ID_PANEL3 = wxNewId();const long CPanelCameraSelection::ID_TEXTCTRL6 = wxNewId();const long CPanelCameraSelection::ID_PANEL4 = wxNewId();const long CPanelCameraSelection::ID_STATICTEXT8 = wxNewId();const long CPanelCameraSelection::ID_TEXTCTRL2 = wxNewId();const long CPanelCameraSelection::ID_BUTTON7 = wxNewId();const long CPanelCameraSelection::ID_PANEL5 = wxNewId();
开发者ID:GYengera,项目名称:mrpt,代码行数:31,


示例21: wxNewId

#include "configsettingspanel.h"//(*InternalHeaders(ConfigSettingsPanel)#include <wx/intl.h>#include <wx/string.h>//*)//(*IdInit(ConfigSettingsPanel)const long ConfigSettingsPanel::ID_NOTEBOOKCONFIGPANELS = wxNewId();//*)BEGIN_EVENT_TABLE(ConfigSettingsPanel,wxPanel)	//(*EventTable(ConfigSettingsPanel)	//*)END_EVENT_TABLE()ConfigSettingsPanel::ConfigSettingsPanel(wxWindow* parent){	//(*Initialize(ConfigSettingsPanel)	Create(parent, wxID_ANY, wxDefaultPosition, wxSize(531,310), wxTAB_TRAVERSAL, _T("wxID_ANY"));	SetMaxSize(wxSize(-1,-1));	NotebookConfigPanels = new wxNotebook(this, ID_NOTEBOOKCONFIGPANELS, wxPoint(0,0), wxSize(448,416), 0, _T("ID_NOTEBOOKCONFIGPANELS"));	//*)}ConfigSettingsPanel::~ConfigSettingsPanel(){	//(*Destroy(ConfigSettingsPanel)	//*)}
开发者ID:BackupTheBerlios,项目名称:cbmcu,代码行数:30,


示例22: wxNewId

* along with wxSmith. If not, see <http://www.gnu.org/licenses/>.** $Revision$* $Id$* $HeadURL$*/#include "wxssizerparentqp.h"//(*InternalHeaders(wxsSizerParentQP)#include <wx/intl.h>#include <wx/string.h>//*)//(*IdInit(wxsSizerParentQP)const long wxsSizerParentQP::ID_CHECKBOX1 = wxNewId();const long wxsSizerParentQP::ID_CHECKBOX2 = wxNewId();const long wxsSizerParentQP::ID_CHECKBOX8 = wxNewId();const long wxsSizerParentQP::ID_CHECKBOX3 = wxNewId();const long wxsSizerParentQP::ID_CHECKBOX4 = wxNewId();const long wxsSizerParentQP::ID_SPINCTRL1 = wxNewId();const long wxsSizerParentQP::ID_CHECKBOX7 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON4 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON5 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON6 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON7 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON8 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON9 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON10 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON11 = wxNewId();const long wxsSizerParentQP::ID_RADIOBUTTON12 = wxNewId();
开发者ID:WinterMute,项目名称:codeblocks_sf,代码行数:31,


示例23: wxNewId

#include <projectmanager.h>#include <pluginmanager.h>#include <projectbuildtarget.h>#include <cbproject.h>#include <compilerfactory.h>#include <wx/app.h>#include "telnetclient.h"#include "openocd.h"#include "mcupluginmanager.h"#include "openocdconfig.h"#include "openocdset.h"#include "openocddevs.h"int idProcess = wxNewId();int idTimer = wxNewId();BEGIN_EVENT_TABLE(OpenOCDDriver, GDBRemoteTargetDriver)    EVT_PIPEDPROCESS_STDOUT(idProcess, OpenOCDDriver::OnProcOutput)    EVT_PIPEDPROCESS_STDERR(idProcess, OpenOCDDriver::OnProcError)    EVT_PIPEDPROCESS_TERMINATED(idProcess, OpenOCDDriver::OnProcTerminated)    EVT_TIMER(idTimer, OpenOCDDriver::OnTimer)END_EVENT_TABLE()/*!    /brief Constructor. Initialise log window(s), timer and config manager.*/OpenOCDDriver::OpenOCDDriver() :
开发者ID:BackupTheBerlios,项目名称:cbmcu,代码行数:31,


示例24: wxNewId

   | See: http://www.mrpt.org/Authors - All rights reserved.                   |   | Released under BSD License. See details in http://www.mrpt.org/License    |   +---------------------------------------------------------------------------+ */#include "prrtnavdemoMain.h"#include "CIniEditor.h"//(*InternalHeaders(CIniEditor)#include <wx/settings.h>#include <wx/font.h>#include <wx/intl.h>#include <wx/string.h>//*)//(*IdInit(CIniEditor)const long CIniEditor::ID_BUTTON1 = wxNewId();const long CIniEditor::ID_BUTTON2 = wxNewId();const long CIniEditor::ID_TEXTCTRL1 = wxNewId();//*)BEGIN_EVENT_TABLE(CIniEditor,wxDialog)	//(*EventTable(CIniEditor)	//*)END_EVENT_TABLE()CIniEditor::CIniEditor(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size){	//(*Initialize(CIniEditor)	wxFlexGridSizer* FlexGridSizer2;	wxFlexGridSizer* FlexGridSizer1;
开发者ID:Aharobot,项目名称:mrpt,代码行数:30,


示例25: defined

#if defined(GD_IDE_ONLY) && !defined(GD_NO_WX_GUI)#include "NetworkBehaviorEditor.h"//(*InternalHeaders(NetworkBehaviorEditor)#include <wx/intl.h>#include <wx/string.h>//*)#include "GDCpp/Runtime/Project/Project.h"#include "NetworkBehavior.h"#include "GDCore/IDE/Dialogs/MainFrameWrapper.h"#include "GDCpp/Runtime/CommonTools.h"#include "GDCpp/Runtime/Project/Layout.h"//(*IdInit(NetworkBehaviorEditor)const long NetworkBehaviorEditor::ID_RADIOBOX1 = wxNewId();const long NetworkBehaviorEditor::ID_STATICTEXT1 = wxNewId();const long NetworkBehaviorEditor::ID_CHECKBOX1 = wxNewId();const long NetworkBehaviorEditor::ID_CHECKBOX2 = wxNewId();const long NetworkBehaviorEditor::ID_CHECKBOX3 = wxNewId();const long NetworkBehaviorEditor::ID_CHECKBOX4 = wxNewId();const long NetworkBehaviorEditor::ID_CHECKBOX5 = wxNewId();const long NetworkBehaviorEditor::ID_TEXTCTRL1 = wxNewId();const long NetworkBehaviorEditor::ID_STATICTEXT2 = wxNewId();const long NetworkBehaviorEditor::ID_STATICTEXT3 = wxNewId();const long NetworkBehaviorEditor::ID_BUTTON1 = wxNewId();const long NetworkBehaviorEditor::ID_BUTTON2 = wxNewId();//*)BEGIN_EVENT_TABLE(NetworkBehaviorEditor,wxDialog)	//(*EventTable(NetworkBehaviorEditor)
开发者ID:HaoDrang,项目名称:GD,代码行数:30,


示例26: wxNewId

#include <wx/button.h>#include <wx/image.h>#include <wx/string.h>#include <wx/gauge.h>#include <wx/tglbtn.h>//*)#include <vector>#include "ConnectionManager.h"#include <fstream>#include <wx/ffile.h>#include <wx/dir.h>#include <wx/filename.h>#include "fft/iniParser.h"//(*IdInit(pnlWFMLoader)const long pnlWFMLoader::ID_BUTTON6 = wxNewId();const long pnlWFMLoader::ID_BUTTON7 = wxNewId();const long pnlWFMLoader::ID_BUTTON8 = wxNewId();const long pnlWFMLoader::ID_BITMAPBUTTON1 = wxNewId();const long pnlWFMLoader::ID_STATICTEXT2 = wxNewId();const long pnlWFMLoader::ID_STATICTEXT5 = wxNewId();const long pnlWFMLoader::ID_GAUGE1 = wxNewId();const long pnlWFMLoader::ID_BUTTON3 = wxNewId();const long pnlWFMLoader::ID_BUTTON4 = wxNewId();//*)const long pnlWFMLoader::ID_STREAMING_TIMER = wxNewId();BEGIN_EVENT_TABLE(pnlWFMLoader, wxPanel)//(*EventTable(pnlWFMLoader)//*)END_EVENT_TABLE()
开发者ID:limemicro,项目名称:lms6suite,代码行数:31,


示例27: wxNewId

#include "GDCore/IDE/Dialogs/MainFrameWrapper.h"#include "GDCore/IDE/wxTools/SkinHelper.h"#include "GDCore/Tools/HelpFileAccess.h"#include "GDCore/IDE/Dialogs/LayoutEditorCanvas/LayoutEditorCanvas.h"#include "MainFrame.h"#include "Dialogs/ObjectsEditor.h"#include "InitialPositionBrowserDlg.h"#include "EventsEditor.h"#include "Dialogs/LayersEditorPanel.h"#include "Dialogs/LayoutEditorPropertiesPnl.h"#include "GDCore/Project/Project.h"#include "GDCore/Project/Project.h"//(*IdInit(EditorScene)const long EditorScene::ID_SCROLLBAR3 = wxNewId();const long EditorScene::ID_SCROLLBAR4 = wxNewId();const long EditorScene::ID_CUSTOM3 = wxNewId();const long EditorScene::ID_PANEL1 = wxNewId();const long EditorScene::ID_CUSTOM2 = wxNewId();const long EditorScene::ID_PANEL6 = wxNewId();const long EditorScene::ID_AUINOTEBOOK1 = wxNewId();//*)BEGIN_EVENT_TABLE(EditorScene,wxPanel)	//(*EventTable(EditorScene)	//*)END_EVENT_TABLE()EditorScene::EditorScene(wxWindow* parent, gd::Project & project_, gd::Layout & layout_, const gd::MainFrameWrapper & mainFrameWrapper_) :
开发者ID:trinajstica,项目名称:GD,代码行数:31,


示例28: wxNewId

#include "ObjectInfo.h"//(*InternalHeaders(ObjectInfo)#include <wx/string.h>#include <wx/intl.h>//*)//(*IdInit(ObjectInfo)const long ObjectInfo::ID_STATICTEXT1 = wxNewId();const long ObjectInfo::ID_STATICTEXT2 = wxNewId();const long ObjectInfo::ID_STATICTEXT3 = wxNewId();const long ObjectInfo::ID_STATICTEXT15 = wxNewId();const long ObjectInfo::ID_STATICTEXT4 = wxNewId();const long ObjectInfo::ID_STATICTEXT16 = wxNewId();const long ObjectInfo::ID_STATICTEXT5 = wxNewId();const long ObjectInfo::ID_TEXTCTRL1 = wxNewId();const long ObjectInfo::ID_TEXTCTRL11 = wxNewId();const long ObjectInfo::ID_TEXTCTRL4 = wxNewId();const long ObjectInfo::ID_STATICTEXT17 = wxNewId();const long ObjectInfo::ID_STATICTEXT9 = wxNewId();const long ObjectInfo::ID_STATICTEXT20 = wxNewId();const long ObjectInfo::ID_STATICTEXT6 = wxNewId();const long ObjectInfo::ID_STATICTEXT18 = wxNewId();const long ObjectInfo::ID_STATICTEXT10 = wxNewId();const long ObjectInfo::ID_STATICTEXT21 = wxNewId();const long ObjectInfo::ID_STATICTEXT7 = wxNewId();const long ObjectInfo::ID_STATICTEXT19 = wxNewId();const long ObjectInfo::ID_STATICTEXT11 = wxNewId();const long ObjectInfo::ID_STATICTEXT22 = wxNewId();const long ObjectInfo::ID_STATICTEXT8 = wxNewId();const long ObjectInfo::ID_TEXTCTRL13 = wxNewId();
开发者ID:jizecn,项目名称:srs_ui_pro,代码行数:31,


示例29: wxNewId

#include "wx_pch.h"#include "TimelineOverlayDialog.h"#ifndef WX_PRECOMP	//(*InternalHeadersPCH(TimelineOverlayDialog)	#include <wx/intl.h>	#include <wx/string.h>	//*)#endif//(*InternalHeaders(TimelineOverlayDialog)//*)//(*IdInit(TimelineOverlayDialog)const long TimelineOverlayDialog::ID_SPINCTRLPRIORITY = wxNewId();const long TimelineOverlayDialog::ID_TEXTCTRLPRIORITY = wxNewId();const long TimelineOverlayDialog::ID_LISTBOXTYPE = wxNewId();const long TimelineOverlayDialog::ID_TEXTCTRLOVERLAYTYPE = wxNewId();const long TimelineOverlayDialog::ID_BUTTONOK = wxNewId();const long TimelineOverlayDialog::ID_BUTTONCANCEL = wxNewId();//*)BEGIN_EVENT_TABLE(TimelineOverlayDialog,wxDialog)	//(*EventTable(TimelineOverlayDialog)	//*)END_EVENT_TABLE()TimelineOverlayDialog::TimelineOverlayDialog(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size){	//(*Initialize(TimelineOverlayDialog)	wxStaticBoxSizer* StaticBoxSizer2;	wxBoxSizer* BoxSizer2;
开发者ID:JochenKempfle,项目名称:MoCap,代码行数:31,



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


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