Home
last modified time | relevance | path

Searched refs:m_messagePanel (Results 1 – 25 of 25) sorted by relevance

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/dialogs/
H A Ddialog_update_pcb.cpp49 m_messagePanel->SetLabel( _("Changes To Be Applied") ); in DIALOG_UPDATE_PCB()
50 m_messagePanel->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) ); in DIALOG_UPDATE_PCB()
51 m_messagePanel->SetLazyUpdate( true ); in DIALOG_UPDATE_PCB()
54 m_messagePanel->SetVisibleSeverities( cfg->m_NetlistDialog.report_filter ); in DIALOG_UPDATE_PCB()
56 m_messagePanel->GetSizer()->SetSizeHints( this ); in DIALOG_UPDATE_PCB()
57 m_messagePanel->Layout(); in DIALOG_UPDATE_PCB()
80 cfg->m_NetlistDialog.report_filter = m_messagePanel->GetVisibleSeverities(); in ~DIALOG_UPDATE_PCB()
93 m_messagePanel->Clear(); in PerformUpdate()
95 REPORTER& reporter = m_messagePanel->Reporter(); in PerformUpdate()
116 m_messagePanel->Flush( true ); in PerformUpdate()
[all …]
H A Ddialog_update_pcb_base.cpp53m_messagePanel = new WX_HTML_REPORT_PANEL( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxT… in DIALOG_UPDATE_PCB_BASE()
54 bLowerSizer->Add( m_messagePanel, 1, wxEXPAND | wxALL, 5 ); in DIALOG_UPDATE_PCB_BASE()
H A Ddialog_update_pcb_base.h41 WX_HTML_REPORT_PANEL* m_messagePanel; variable
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/dialogs/
H A Ddialog_update_from_pcb.cpp42 m_messagePanel->SetLabel( _( "Changes To Be Applied" ) ); in DIALOG_UPDATE_FROM_PCB()
43 m_messagePanel->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) ); in DIALOG_UPDATE_FROM_PCB()
44 m_messagePanel->SetLazyUpdate( true ); in DIALOG_UPDATE_FROM_PCB()
45 m_messagePanel->GetSizer()->SetSizeHints( this ); in DIALOG_UPDATE_FROM_PCB()
78 m_messagePanel->Clear(); in updateData()
80 m_messagePanel->Reporter(), in updateData()
93 m_messagePanel->Flush( false ); in updateData()
143 m_messagePanel->Clear(); in OnUpdateClick()
145 m_messagePanel->Reporter(), in OnUpdateClick()
168 m_messagePanel->Flush( false ); in OnUpdateClick()
H A Ddialog_symbol_remap_base.cpp45m_messagePanel = new WX_HTML_REPORT_PANEL( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB… in DIALOG_SYMBOL_REMAP_BASE()
46 m_messagePanel->SetMinSize( wxSize( -1,200 ) ); in DIALOG_SYMBOL_REMAP_BASE()
48 bSizer4->Add( m_messagePanel, 1, wxEXPAND | wxALL, 5 ); in DIALOG_SYMBOL_REMAP_BASE()
H A Ddialog_change_symbols.cpp113 m_messagePanel->SetLazyUpdate( true ); in DIALOG_CHANGE_SYMBOLS()
114 m_messagePanel->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) ); in DIALOG_CHANGE_SYMBOLS()
385 m_messagePanel->Clear(); in onOkButtonClicked()
386 m_messagePanel->Flush( false ); in onOkButtonClicked()
412 m_messagePanel->Flush( false ); in onOkButtonClicked()
574 m_messagePanel->Report( msg, RPT_SEVERITY_ERROR ); in processSymbol()
583 m_messagePanel->Report( msg, RPT_SEVERITY_ERROR ); in processSymbol()
692 m_messagePanel->Report( msg, RPT_SEVERITY_ACTION ); in processSymbol()
H A Ddialog_symbol_remap.cpp77 m_messagePanel->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) ); in DIALOG_SYMBOL_REMAP()
89 if( !backupProject( m_messagePanel->Reporter() ) ) in OnRemapSymbols()
123 createProjectSymbolLibTable( m_messagePanel->Reporter() ); in OnRemapSymbols()
127 remapSymbolsToLibTable( m_messagePanel->Reporter() ); in OnRemapSymbols()
H A Ddialog_update_from_pcb_base.cpp85m_messagePanel = new WX_HTML_REPORT_PANEL( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB… in DIALOG_UPDATE_FROM_PCB_BASE()
86 bLowerSizer->Add( m_messagePanel, 1, wxEXPAND | wxALL, 5 ); in DIALOG_UPDATE_FROM_PCB_BASE()
H A Ddialog_symbol_remap_base.h45 WX_HTML_REPORT_PANEL* m_messagePanel; variable
H A Ddialog_update_from_pcb_base.h43 WX_HTML_REPORT_PANEL* m_messagePanel; variable
H A Ddialog_change_symbols_base.cpp157m_messagePanel = new WX_HTML_REPORT_PANEL( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB… in DIALOG_CHANGE_SYMBOLS_BASE()
158 m_messagePanel->SetMinSize( wxSize( -1,200 ) ); in DIALOG_CHANGE_SYMBOLS_BASE()
160 bSizer2->Add( m_messagePanel, 1, wxEXPAND | wxALL, 5 ); in DIALOG_CHANGE_SYMBOLS_BASE()
H A Ddialog_change_symbols_base.h76 WX_HTML_REPORT_PANEL* m_messagePanel; variable
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/generic/
H A Dnotifmsgg.cpp81 wxPanel* m_messagePanel; member in wxNotificationMessageWindow
140 m_messagePanel = new wxPanel(this, wxID_ANY); in wxNotificationMessageWindow()
143 m_messagePanel->SetSizer(msgSizer); in wxNotificationMessageWindow()
144 PrepareNotificationControl(m_messagePanel); in wxNotificationMessageWindow()
149 m_messagePanel, in wxNotificationMessageWindow()
160 m_messageTitle = new wxStaticText(m_messagePanel, wxID_ANY, wxString()); in wxNotificationMessageWindow()
166 m_messageText = new wxStaticText(m_messagePanel, wxID_ANY, wxString()); in wxNotificationMessageWindow()
173 m_closeBtn = wxBitmapButton::NewCloseButton(m_messagePanel, wxID_ANY); in wxNotificationMessageWindow()
179 sizerTop->Add(m_messagePanel, wxSizerFlags().Border(wxALL, FromDIP(1))); in wxNotificationMessageWindow()
217 wxSizer* msgSizer = m_messagePanel->GetSizer(); in AddAction()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/
H A Deda_draw_frame.cpp99 m_messagePanel = nullptr; in BEGIN_EVENT_TABLE()
299 if( m_messagePanel ) in EraseMsgBox()
300 m_messagePanel->EraseMsgBox(); in EraseMsgBox()
665 if( m_messagePanel ) in AppendMsgPanel()
672 if( m_messagePanel ) in ClearMsgPanel()
673 m_messagePanel->EraseMsgBox(); in ClearMsgPanel()
679 if( m_messagePanel ) in SetMsgPanel()
681 m_messagePanel->EraseMsgBox(); in SetMsgPanel()
692 if( m_messagePanel ) in SetMsgPanel()
694 m_messagePanel->EraseMsgBox(); in SetMsgPanel()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/
H A Deda_draw_frame.h520 EDA_MSG_PANEL* m_messagePanel; variable
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/cvpcb/
H A Ddisplay_footprints_frame.cpp140 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/
H A Dfootprint_wizard_frame.cpp194 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ).Bottom().Layer(6) in BEGIN_EVENT_TABLE()
H A Dfootprint_viewer_frame.cpp259 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ).Bottom().Layer(6) ); in BEGIN_EVENT_TABLE()
H A Dfootprint_edit_frame.cpp219 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()
H A Dpcb_edit_frame.cpp262 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/
H A Dsymbol_viewer_frame.cpp181 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()
H A Dsch_edit_frame.cpp270 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pagelayout_editor/
H A Dpl_editor_frame.cpp178 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/gerbview/
H A Dgerbview_frame.cpp160 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ).Bottom() in GERBVIEW_FRAME()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/symbol_editor/
H A Dsymbol_edit_frame.cpp173 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ) in BEGIN_EVENT_TABLE()