KiCad PCB EDA Suite
WX_INFOBAR Class Reference

A modified version of the wxInfoBar class that allows us to: More...

#include <wx_infobar.h>

Inheritance diagram for WX_INFOBAR:

Public Types

enum class  MESSAGE_TYPE { GENERIC , OUTDATED_SAVE , DRC_RULES_ERROR , DRC_VIOLATION }
 Sets the type of message for special handling if needed. More...
 

Public Member Functions

 WX_INFOBAR (wxWindow *aParent, wxAuiManager *aMgr=nullptr, wxWindowID aWinid=wxID_ANY)
 Construct an infobar that can exist inside an AUI managed frame. More...
 
 ~WX_INFOBAR ()
 
MESSAGE_TYPE GetMessageType () const
 
void SetShowTime (int aTime)
 Set the time period to show the infobar. More...
 
void AddCloseButton (const wxString &aTooltip=_("Hide this message."))
 Add the default close button to the infobar on the right side. More...
 
void AddButton (wxButton *aButton)
 Add an already created button to the infobar. More...
 
void AddButton (wxHyperlinkCtrl *aHypertextButton)
 Add an already created hypertext link to the infobar. More...
 
void AddButton (wxWindowID aId, const wxString &aLabel=wxEmptyString) override
 Add a button with the provided ID and text. More...
 
void RemoveAllButtons ()
 Remove all the buttons that have been added by the user. More...
 
bool HasCloseButton () const
 
void SetCallback (std::function< void(void)> aCallback)
 Provide a callback to be called when the infobar is dismissed (either by user action or timer). More...
 
void ShowMessageFor (const wxString &aMessage, int aTime, int aFlags=wxICON_INFORMATION, MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
 Show the infobar with the provided message and icon for a specific period of time. More...
 
void ShowMessage (const wxString &aMessage, int aFlags=wxICON_INFORMATION) override
 Show the info bar with the provided message and icon. More...
 
void ShowMessage (const wxString &aMessage, int aFlags, MESSAGE_TYPE aType)
 Show the info bar with the provided message and icon, setting the type. More...
 
void Dismiss () override
 Dismisses the infobar and updates the containing layout and AUI manager (if one is provided). More...
 
void QueueShowMessage (const wxString &aMessage, int aFlags=wxICON_INFORMATION)
 Send the infobar an event telling it to show a message. More...
 
void QueueDismiss ()
 Send the infobar an event telling it to hide itself. More...
 
bool IsLocked ()
 Returns true if the infobar is being updated. More...
 

Protected Member Functions

void onShowInfoBar (wxCommandEvent &aEvent)
 Event handler for showing the infobar using a wxCommandEvent of the type KIEVT_SHOW_INFOBAR. More...
 
void onDismissInfoBar (wxCommandEvent &aEvent)
 Event handler for dismissing the infobar using a wxCommandEvent of the type KIEVT_DISMISS_INFOBAR. More...
 
void onCloseButton (wxCommandEvent &aEvent)
 Event handler for the close button. More...
 
void onTimer (wxTimerEvent &aEvent)
 Event handler for the automatic closing timer. More...
 
void onSize (wxSizeEvent &aEvent)
 
void updateAuiLayout (bool aShow)
 Update the AUI pane to show or hide this infobar. More...
 

Protected Attributes

int m_showTime
 The time to show the infobar. 0 = don't auto hide. More...
 
bool m_updateLock
 True if this infobar requested the UI update. More...
 
wxTimer * m_showTimer
 The timer counting the autoclose period. More...
 
wxAuiManager * m_auiManager
 The AUI manager that contains this infobar. More...
 
MESSAGE_TYPE m_type
 The type of message being displayed. More...
 
std::optional< std::function< void(void)> > m_callback
 Optional callback made when closing infobar. More...
 

Detailed Description

A modified version of the wxInfoBar class that allows us to:

  • Show the close button along with the other buttons
  • Remove all user-provided buttons at once
  • Allow automatically hiding the infobar after a time period
  • Show/hide using events
  • Place it inside an AUI manager

This inherits from the generic infobar because the native infobar on GTK doesn't include the icon on the left and it looks worse.

There are 2 events associated with the infobar:

KIEVT_SHOW_INFOBAR: An event that tells the infobar to show a message.

The message text is contained inside the string component, and the message flag is contained inside the int component.

Sample event creation code: wxCommandEvent* evt = new wxCommandEvent( KIEVT_SHOW_INFOBAR ); evt->SetString( "A message to show" ); evt->SetInt( wxICON_WARNING );

KIEVT_DISMISS_INFOBAR: An event that tells the infobar to hide itself.

Definition at line 74 of file wx_infobar.h.

Member Enumeration Documentation

◆ MESSAGE_TYPE

enum class WX_INFOBAR::MESSAGE_TYPE
strong

Sets the type of message for special handling if needed.

Enumerator
GENERIC 

GENERIC Are messages that do not have special handling.

OUTDATED_SAVE 

OUTDATED_SAVE Messages that should be cleared on save.

DRC_RULES_ERROR 
DRC_VIOLATION 

Definition at line 92 of file wx_infobar.h.

93 {
94 GENERIC,
95 OUTDATED_SAVE,
96 DRC_RULES_ERROR,
97 DRC_VIOLATION
98 };

Constructor & Destructor Documentation

◆ WX_INFOBAR()

WX_INFOBAR::WX_INFOBAR ( wxWindow *  aParent,
wxAuiManager *  aMgr = nullptr,
wxWindowID  aWinid = wxID_ANY 
)

Construct an infobar that can exist inside an AUI managed frame.

Parameters
aParentis the parent
aMgris the AUI manager that this infobar is added to
aWinIdis the ID for this infobar object

Definition at line 47 of file wx_infobar.cpp.

48 : wxInfoBarGeneric( aParent, aWinid ),
49 m_showTime( 0 ),
50 m_updateLock( false ),
51 m_showTimer( nullptr ),
52 m_auiManager( aMgr ),
54{
55 m_showTimer = new wxTimer( this, ID_CLOSE_INFOBAR );
56
57#ifdef __WXMAC__
58 // wxWidgets hard-codes wxSYS_COLOUR_INFOBK to { 0xFF, 0xFF, 0xD3 } on Mac.
60 SetBackgroundColour( wxColour( 28, 27, 20 ) );
61 else
62 SetBackgroundColour( wxColour( 255, 249, 189 ) );
63
64 // Infobar is broken on Mac without the effects
65 SetShowHideEffects( wxSHOW_EFFECT_ROLL_TO_BOTTOM, wxSHOW_EFFECT_ROLL_TO_TOP );
66 SetEffectDuration( 300 );
67#else
68 // Infobar freezes canvas on Windows with the effect, and GTK looks bad with it
69 SetShowHideEffects( wxSHOW_EFFECT_NONE, wxSHOW_EFFECT_NONE );
70#endif
71
72
73 // The infobar seems to start too small, so increase its height
74 int sx, sy;
75 GetSize( &sx, &sy );
76 sy = 1.5 * sy;
77 SetSize( sx, sy );
78
79 // The bitmap gets cutoff sometimes with the default size, so force it to be the same
80 // height as the infobar.
81 wxSizer* sizer = GetSizer();
82 wxSize iconSize = wxArtProvider::GetSizeHint( wxART_BUTTON );
83
84 sizer->SetItemMinSize( (size_t) 0, iconSize.x, sy );
85
86 // Forcefully remove all existing buttons added by the wx constructors.
87 // The default close button doesn't work with the AUI manager update scheme, so this
88 // ensures any close button displayed is ours.
90
91 Layout();
92
93 m_parent->Bind( wxEVT_SIZE, &WX_INFOBAR::onSize, this );
94}
void RemoveAllButtons()
Remove all the buttons that have been added by the user.
Definition: wx_infobar.cpp:289
MESSAGE_TYPE m_type
The type of message being displayed.
Definition: wx_infobar.h:256
int m_showTime
The time to show the infobar. 0 = don't auto hide.
Definition: wx_infobar.h:252
bool m_updateLock
True if this infobar requested the UI update.
Definition: wx_infobar.h:253
@ GENERIC
GENERIC Are messages that do not have special handling.
wxTimer * m_showTimer
The timer counting the autoclose period.
Definition: wx_infobar.h:254
wxAuiManager * m_auiManager
The AUI manager that contains this infobar.
Definition: wx_infobar.h:255
void onSize(wxSizeEvent &aEvent)
Definition: wx_infobar.cpp:198
bool IsDarkTheme()
Determine if the desktop interface is currently using a dark theme or a light theme.
Definition: gtk/ui.cpp:31
@ ID_CLOSE_INFOBAR
ID for the close button on the frame's infobar.
Definition: wx_infobar.h:40

References ID_CLOSE_INFOBAR, KIPLATFORM::UI::IsDarkTheme(), and onSize().

◆ ~WX_INFOBAR()

WX_INFOBAR::~WX_INFOBAR ( )

Definition at line 97 of file wx_infobar.cpp.

98{
99 delete m_showTimer;
100}

References m_showTimer.

Member Function Documentation

◆ AddButton() [1/3]

void WX_INFOBAR::AddButton ( wxButton *  aButton)

Add an already created button to the infobar.

New buttons are added in the right-most position.

Parameters
aButtonis the button to add

Definition at line 248 of file wx_infobar.cpp.

249{
250 wxSizer* sizer = GetSizer();
251
252 wxASSERT( aButton );
253
254#ifdef __WXMAC__
255 // Based on the code in the original class:
256 // smaller buttons look better in the (narrow) info bar under OS X
257 aButton->SetWindowVariant( wxWINDOW_VARIANT_SMALL );
258#endif // __WXMAC__
259 sizer->Add( aButton, wxSizerFlags().Centre().Border( wxRIGHT ) );
260
261 if( IsShown() )
262 sizer->Layout();
263}

Referenced by AddButton(), AddCloseButton(), ZONE_FILLER_TOOL::FillAllZones(), APPEARANCE_CONTROLS::onReadOnlySwatch(), SYMBOL_EDIT_FRAME::SetCurSymbol(), DIALOG_PIN_PROPERTIES::TransferDataToWindow(), PCB_CONTROL::unfilledZoneCheck(), DIALOG_ERC::UpdateAnnotationWarning(), and ZONE_FILLER_TOOL::ZoneFillDirty().

◆ AddButton() [2/3]

void WX_INFOBAR::AddButton ( wxHyperlinkCtrl *  aHypertextButton)

Add an already created hypertext link to the infobar.

New buttons are added in the right-most position.

Parameters
aHypertextButtonis the button to add

Definition at line 266 of file wx_infobar.cpp.

267{
268 wxSizer* sizer = GetSizer();
269
270 wxASSERT( aHypertextButton );
271
272 sizer->Add( aHypertextButton, wxSizerFlags().Centre().Border( wxRIGHT ) );
273
274 if( IsShown() )
275 sizer->Layout();
276}

◆ AddButton() [3/3]

void WX_INFOBAR::AddButton ( wxWindowID  aId,
const wxString &  aLabel = wxEmptyString 
)
override

Add a button with the provided ID and text.

The new button is created on the right-most position.

Parameters
aIdis the ID to assign to the button
aLabelis the text for the button

Definition at line 240 of file wx_infobar.cpp.

241{
242 wxButton* button = new wxButton( this, aId, aLabel );
243
244 AddButton( button );
245}
void AddButton(wxButton *aButton)
Add an already created button to the infobar.
Definition: wx_infobar.cpp:248

References AddButton().

◆ AddCloseButton()

void WX_INFOBAR::AddCloseButton ( const wxString &  aTooltip = _( "Hide this message." ))

Add the default close button to the infobar on the right side.

Parameters
aTooltipis the tooltip to give the close button

Definition at line 279 of file wx_infobar.cpp.

280{
281 wxBitmapButton* button = wxBitmapButton::NewCloseButton( this, ID_CLOSE_INFOBAR );
282
283 button->SetToolTip( aTooltip );
284
285 AddButton( button );
286}

References AddButton(), and ID_CLOSE_INFOBAR.

Referenced by FOOTPRINT_EDIT_FRAME::AddFootprintToBoard(), PL_EDITOR_FRAME::LoadDrawingSheetFile(), PCB_EDIT_FRAME::onBoardLoaded(), APPEARANCE_CONTROLS::onReadOnlySwatch(), PCB_EDIT_FRAME::OnRemoveTeardropTool(), PCB_EDIT_FRAME::OnRunTeardropTool(), onShowInfoBar(), SCH_EDIT_FRAME::OpenProjectFiles(), PCB_EDIT_FRAME::OpenProjectFiles(), SCH_EDIT_FRAME::ShowFindReplaceStatus(), EDA_BASE_FRAME::ShowInfoBarError(), EDA_BASE_FRAME::ShowInfoBarMsg(), and EDA_BASE_FRAME::ShowInfoBarWarning().

◆ Dismiss()

void WX_INFOBAR::Dismiss ( )
override

Dismisses the infobar and updates the containing layout and AUI manager (if one is provided).

Definition at line 175 of file wx_infobar.cpp.

176{
177 if( !IsShown() )
178 return;
179
180 // Don't do anything if we requested the UI update
181 if( m_updateLock )
182 return;
183
184 m_updateLock = true;
185
186 wxInfoBarGeneric::Dismiss();
187
188 if( m_auiManager )
189 updateAuiLayout( false );
190
191 if( m_callback )
192 (*m_callback)();
193
194 m_updateLock = false;
195}
void updateAuiLayout(bool aShow)
Update the AUI pane to show or hide this infobar.
Definition: wx_infobar.cpp:220
std::optional< std::function< void(void)> > m_callback
Optional callback made when closing infobar.
Definition: wx_infobar.h:258

References m_auiManager, m_callback, m_updateLock, and updateAuiLayout().

Referenced by FOOTPRINT_EDIT_FRAME::AddFootprintToBoard(), SCH_EDIT_FRAME::ClearFindReplaceStatus(), SCH_LINE_WIRE_BUS_TOOL::doDrawSegments(), SCH_DRAWING_TOOLS::DrawSheet(), DRAWING_TOOL::DrawVia(), PAD_TOOL::EditPad(), DISPLAY_FOOTPRINTS_FRAME::InitDisplay(), PL_EDITOR_FRAME::LoadDrawingSheetFile(), SYMBOL_EDIT_FRAME::LoadOneLibrarySymbolAux(), SCH_MOVE_TOOL::Main(), PL_EDIT_TOOL::Main(), onCloseButton(), onDismissInfoBar(), onTimer(), SCH_EDIT_FRAME::OpenProjectFiles(), PCB_EDIT_FRAME::OpenProjectFiles(), SCH_DRAWING_TOOLS::PlaceImage(), SCH_DRAWING_TOOLS::PlaceSymbol(), PAD_TOOL::Reset(), SYMBOL_EDIT_FRAME::saveAllLibraries(), FOOTPRINT_EDITOR_CONTROL::SaveAs(), PL_EDITOR_FRAME::SaveDrawingSheetFile(), PCB_EDIT_FRAME::SavePcbFile(), SCH_EDIT_FRAME::SaveProject(), SCH_EDIT_FRAME::saveSchematicFile(), SYMBOL_EDIT_FRAME::SetCurSymbol(), SCH_DRAWING_TOOLS::SingleClickPlace(), DIALOG_PIN_PROPERTIES::TransferDataToWindow(), SCH_DRAWING_TOOLS::TwoClickPlace(), SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace(), and PCB_CONTROL::unfilledZoneCheck().

◆ GetMessageType()

MESSAGE_TYPE WX_INFOBAR::GetMessageType ( ) const
inline

◆ HasCloseButton()

bool WX_INFOBAR::HasCloseButton ( ) const

Definition at line 313 of file wx_infobar.cpp.

314{
315 wxSizer* sizer = GetSizer();
316
317 if( sizer->GetItemCount() == 0 )
318 return false;
319
320 if( sizer->GetItem( sizer->GetItemCount() - 1 )->IsSpacer() )
321 return false;
322
323 wxSizerItem* item = sizer->GetItem( sizer->GetItemCount() - 1 );
324
325 return ( item->GetWindow()->GetId() == ID_CLOSE_INFOBAR );
326}

References ID_CLOSE_INFOBAR.

Referenced by FOOTPRINT_EDITOR_CONTROL::SaveAs(), and PCB_EDIT_FRAME::SavePcbFile().

◆ IsLocked()

bool WX_INFOBAR::IsLocked ( )
inline

Returns true if the infobar is being updated.

Definition at line 212 of file wx_infobar.h.

213 {
214 return m_updateLock;
215 }

References m_updateLock.

Referenced by EDA_DRAW_PANEL_GAL::onSize().

◆ onCloseButton()

void WX_INFOBAR::onCloseButton ( wxCommandEvent &  aEvent)
protected

Event handler for the close button.

This is bound to ID_CLOSE_INFOBAR on the infobar.

Definition at line 343 of file wx_infobar.cpp.

344{
345 Dismiss();
346}
void Dismiss() override
Dismisses the infobar and updates the containing layout and AUI manager (if one is provided).
Definition: wx_infobar.cpp:175

References Dismiss().

◆ onDismissInfoBar()

void WX_INFOBAR::onDismissInfoBar ( wxCommandEvent &  aEvent)
protected

Event handler for dismissing the infobar using a wxCommandEvent of the type KIEVT_DISMISS_INFOBAR.

Definition at line 337 of file wx_infobar.cpp.

338{
339 Dismiss();
340}

References Dismiss().

◆ onShowInfoBar()

void WX_INFOBAR::onShowInfoBar ( wxCommandEvent &  aEvent)
protected

Event handler for showing the infobar using a wxCommandEvent of the type KIEVT_SHOW_INFOBAR.

The message is stored inside the string field, and the icon flag is stored inside the int field.

Definition at line 329 of file wx_infobar.cpp.

330{
333 ShowMessage( aEvent.GetString(), aEvent.GetInt() );
334}
void AddCloseButton(const wxString &aTooltip=_("Hide this message."))
Add the default close button to the infobar on the right side.
Definition: wx_infobar.cpp:279
void ShowMessage(const wxString &aMessage, int aFlags=wxICON_INFORMATION) override
Show the info bar with the provided message and icon.
Definition: wx_infobar.cpp:142

References AddCloseButton(), RemoveAllButtons(), and ShowMessage().

◆ onSize()

void WX_INFOBAR::onSize ( wxSizeEvent &  aEvent)
protected

Definition at line 198 of file wx_infobar.cpp.

199{
200 int barWidth = GetSize().GetWidth();
201
202 // Calculate the horizontal size: because the infobar is shown on top of the draw canvas
203 // it is adjusted to the canvas width.
204 // On Mac, the canvas is the parent
205 // On other OS the parent is EDA_BASE_FRAME that contains the canvas
206 int parentWidth = m_parent->GetClientSize().GetWidth();
207 EDA_BASE_FRAME* frame = dynamic_cast<EDA_BASE_FRAME*>( m_parent );
208
209 if( frame && frame->GetToolCanvas() )
210 parentWidth = frame->GetToolCanvas()->GetSize().GetWidth();
211
212
213 if( barWidth != parentWidth )
214 SetSize( parentWidth, GetSize().GetHeight() );
215
216 aEvent.Skip();
217}
The base frame for deriving all KiCad main window classes.
virtual wxWindow * GetToolCanvas() const =0
Canvas access.

References TOOLS_HOLDER::GetToolCanvas().

Referenced by WX_INFOBAR().

◆ onTimer()

void WX_INFOBAR::onTimer ( wxTimerEvent &  aEvent)
protected

Event handler for the automatic closing timer.

Definition at line 349 of file wx_infobar.cpp.

350{
351 // Reset and clear the timer
352 m_showTimer->Stop();
353 m_showTime = 0;
354
355 Dismiss();
356}

References Dismiss(), m_showTime, and m_showTimer.

◆ QueueDismiss()

void WX_INFOBAR::QueueDismiss ( )

Send the infobar an event telling it to hide itself.

Definition at line 120 of file wx_infobar.cpp.

121{
122 wxCommandEvent* evt = new wxCommandEvent( KIEVT_DISMISS_INFOBAR );
123
124 GetEventHandler()->QueueEvent( evt );
125}

Referenced by INFOBAR_REPORTER::Finalize().

◆ QueueShowMessage()

void WX_INFOBAR::QueueShowMessage ( const wxString &  aMessage,
int  aFlags = wxICON_INFORMATION 
)

Send the infobar an event telling it to show a message.

Parameters
aMessageis the message to display
aFlagsis the flag containing the icon to display on the left side of the infobar

Definition at line 109 of file wx_infobar.cpp.

110{
111 wxCommandEvent* evt = new wxCommandEvent( KIEVT_SHOW_INFOBAR );
112
113 evt->SetString( aMessage.c_str() );
114 evt->SetInt( aFlags );
115
116 GetEventHandler()->QueueEvent( evt );
117}

Referenced by INFOBAR_REPORTER::Finalize().

◆ RemoveAllButtons()

void WX_INFOBAR::RemoveAllButtons ( )

Remove all the buttons that have been added by the user.

Definition at line 289 of file wx_infobar.cpp.

290{
291 wxSizer* sizer = GetSizer();
292
293 if( sizer->GetItemCount() == 0 )
294 return;
295
296 // The last item is already the spacer
297 if( sizer->GetItem( sizer->GetItemCount() - 1 )->IsSpacer() )
298 return;
299
300 for( int i = sizer->GetItemCount() - 1; i >= 0; i-- )
301 {
302 wxSizerItem* sItem = sizer->GetItem( i );
303
304 // The spacer is the end of the custom buttons
305 if( sItem->IsSpacer() )
306 break;
307
308 delete sItem->GetWindow();
309 }
310}

Referenced by FOOTPRINT_EDIT_FRAME::AddFootprintToBoard(), AUTOPLACE_TOOL::autoplace(), DIALOG_ANNOTATE::DIALOG_ANNOTATE(), DIALOG_LIB_NEW_SYMBOL::DIALOG_LIB_NEW_SYMBOL(), PAD_TOOL::EditPad(), ZONE_FILLER_TOOL::FillAllZones(), PL_EDITOR_FRAME::LoadDrawingSheetFile(), PCB_EDIT_FRAME::onBoardLoaded(), APPEARANCE_CONTROLS::onReadOnlySwatch(), PCB_EDIT_FRAME::OnRemoveTeardropTool(), PCB_EDIT_FRAME::OnRunTeardropTool(), onShowInfoBar(), SCH_EDIT_FRAME::OpenProjectFiles(), PCB_EDIT_FRAME::OpenProjectFiles(), SYMBOL_EDIT_FRAME::SetCurSymbol(), SCH_EDIT_FRAME::ShowFindReplaceStatus(), EDA_BASE_FRAME::ShowInfoBarError(), EDA_BASE_FRAME::ShowInfoBarMsg(), EDA_BASE_FRAME::ShowInfoBarWarning(), DIALOG_PIN_PROPERTIES::TransferDataToWindow(), PCB_CONTROL::unfilledZoneCheck(), DIALOG_ERC::UpdateAnnotationWarning(), and ZONE_FILLER_TOOL::ZoneFillDirty().

◆ SetCallback()

void WX_INFOBAR::SetCallback ( std::function< void(void)>  aCallback)
inline

Provide a callback to be called when the infobar is dismissed (either by user action or timer).

Parameters
aCallback

Definition at line 157 of file wx_infobar.h.

158 {
159 m_callback = aCallback;
160 }

References m_callback.

Referenced by EDA_BASE_FRAME::ShowInfoBarError().

◆ SetShowTime()

void WX_INFOBAR::SetShowTime ( int  aTime)

Set the time period to show the infobar.

This only applies for the next showing of the infobar, so it must be reset every time. A value of 0 disables the automatic hiding (this is the default).

Parameters
aTimeis the time in milliseconds to show the infobar

Definition at line 103 of file wx_infobar.cpp.

104{
105 m_showTime = aTime;
106}

References m_showTime.

◆ ShowMessage() [1/2]

void WX_INFOBAR::ShowMessage ( const wxString &  aMessage,
int  aFlags,
MESSAGE_TYPE  aType 
)

Show the info bar with the provided message and icon, setting the type.

Parameters
aMessageis the message to display
aFlagsis the flag containing the icon to display on the left side of the infobar
aTypeis the type of message being displayed

Definition at line 163 of file wx_infobar.cpp.

164{
165 // Don't do anything if we requested the UI update
166 if( m_updateLock )
167 return;
168
169 ShowMessage( aMessage, aFlags );
170
171 m_type = aType;
172}

References m_type, m_updateLock, and ShowMessage().

◆ ShowMessage() [2/2]

void WX_INFOBAR::ShowMessage ( const wxString &  aMessage,
int  aFlags = wxICON_INFORMATION 
)
override

◆ ShowMessageFor()

void WX_INFOBAR::ShowMessageFor ( const wxString &  aMessage,
int  aTime,
int  aFlags = wxICON_INFORMATION,
MESSAGE_TYPE  aType = WX_INFOBAR::MESSAGE_TYPE::GENERIC 
)

Show the infobar with the provided message and icon for a specific period of time.

Parameters
aMessageis the message to display
aTimeis the amount of time in milliseconds to show the infobar
aFlagsis the flag containing the icon to display on the left side of the infobar

Definition at line 128 of file wx_infobar.cpp.

130{
131 // Don't do anything if we requested the UI update
132 if( m_updateLock )
133 return;
134
135 m_showTime = aTime;
136 ShowMessage( aMessage, aFlags );
137
138 m_type = aType;
139}

References m_showTime, m_type, m_updateLock, and ShowMessage().

Referenced by AUTOPLACE_TOOL::autoplace(), FOOTPRINT_EDIT_FRAME::CanCloseFPFromBoard(), ZONE_FILLER_TOOL::FillAllZones(), ROUTER_TOOL::handleLayerSwitch(), APPEARANCE_CONTROLS::onReadOnlySwatch(), PCB_EDIT_FRAME::OnRemoveTeardropTool(), PCB_EDIT_FRAME::OnRunTeardropTool(), SYMBOL_EDIT_FRAME::saveAllLibraries(), PAGED_DIALOG::SetError(), SCH_EDIT_FRAME::ShowFindReplaceStatus(), EDA_BASE_FRAME::ShowInfoBarError(), EDA_BASE_FRAME::ShowInfoBarMsg(), EDA_BASE_FRAME::ShowInfoBarWarning(), PCB_CONTROL::unfilledZoneCheck(), and ZONE_FILLER_TOOL::ZoneFillDirty().

◆ updateAuiLayout()

void WX_INFOBAR::updateAuiLayout ( bool  aShow)
protected

Update the AUI pane to show or hide this infobar.

Parameters
aShowis true to show the pane

Definition at line 220 of file wx_infobar.cpp.

221{
222 wxASSERT( m_auiManager );
223
224 wxAuiPaneInfo& pane = m_auiManager->GetPane( this );
225
226 // If the infobar is in a pane, then show/hide the pane
227 if( pane.IsOk() )
228 {
229 if( aShow )
230 pane.Show();
231 else
232 pane.Hide();
233 }
234
235 // Update the AUI manager regardless
236 m_auiManager->Update();
237}

References m_auiManager.

Referenced by Dismiss(), and ShowMessage().

Member Data Documentation

◆ m_auiManager

wxAuiManager* WX_INFOBAR::m_auiManager
protected

The AUI manager that contains this infobar.

Definition at line 255 of file wx_infobar.h.

Referenced by Dismiss(), ShowMessage(), and updateAuiLayout().

◆ m_callback

std::optional<std::function<void(void)> > WX_INFOBAR::m_callback
protected

Optional callback made when closing infobar.

Definition at line 258 of file wx_infobar.h.

Referenced by Dismiss(), and SetCallback().

◆ m_showTime

int WX_INFOBAR::m_showTime
protected

The time to show the infobar. 0 = don't auto hide.

Definition at line 252 of file wx_infobar.h.

Referenced by onTimer(), SetShowTime(), ShowMessage(), and ShowMessageFor().

◆ m_showTimer

wxTimer* WX_INFOBAR::m_showTimer
protected

The timer counting the autoclose period.

Definition at line 254 of file wx_infobar.h.

Referenced by onTimer(), ShowMessage(), and ~WX_INFOBAR().

◆ m_type

MESSAGE_TYPE WX_INFOBAR::m_type
protected

The type of message being displayed.

Definition at line 256 of file wx_infobar.h.

Referenced by GetMessageType(), ShowMessage(), and ShowMessageFor().

◆ m_updateLock

bool WX_INFOBAR::m_updateLock
protected

True if this infobar requested the UI update.

Definition at line 253 of file wx_infobar.h.

Referenced by Dismiss(), IsLocked(), ShowMessage(), and ShowMessageFor().


The documentation for this class was generated from the following files: