KiCad PCB EDA Suite
Loading...
Searching...
No Matches
status_popup.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2014-2015 CERN
5 * Copyright (C) 2020-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 * Author: Tomasz Wlostowski <[email protected]>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#ifndef __STATUS_POPUP_H_
27#define __STATUS_POPUP_H_
28
29
30#include <math/vector2d.h>
31#include <wx/popupwin.h>
32#include <wx/timer.h>
33#include <wx/panel.h>
34#include <wx/stattext.h>
35#include <wx/sizer.h>
36#include <wx/statbmp.h>
37
38class EDA_DRAW_FRAME;
39
45class STATUS_POPUP: public wxPopupWindow
46{
47public:
48 STATUS_POPUP( wxWindow* aParent );
49 virtual ~STATUS_POPUP() { Hide(); }
50
51 virtual void Popup( wxWindow* aFocus = nullptr );
52 virtual void PopupFor( int aMsecs );
53 virtual void Move( const wxPoint& aWhere );
54 virtual void Move( const VECTOR2I& aWhere );
55
61 void Expire( int aMsecs );
62
63 wxWindow* GetPanel() { return m_panel; }
64
65protected:
66 void updateSize();
67
68 void onCharHook( wxKeyEvent& aEvent );
69
71 void onExpire( wxTimerEvent& aEvent );
72
73protected:
74 wxPanel* m_panel;
75 wxBoxSizer* m_topSizer;
77};
78
79
84{
85public:
86 STATUS_TEXT_POPUP( wxWindow* aParent );
87 virtual ~STATUS_TEXT_POPUP() {}
88
94 void SetText( const wxString& aText );
95
101 void SetTextColor( const wxColour& aColor );
102
103protected:
104 wxStaticText* m_statusLine;
105};
106
107
108#endif /* __STATUS_POPUP_H_*/
The base class for create windows for drawing purpose.
A tiny, headerless popup window used to display useful status (e.g.
Definition: status_popup.h:46
void onExpire(wxTimerEvent &aEvent)
wxWindow * GetPanel()
Definition: status_popup.h:63
void Expire(int aMsecs)
Hide the popup after a specified time.
virtual void PopupFor(int aMsecs)
wxBoxSizer * m_topSizer
Definition: status_popup.h:75
wxTimer m_expireTimer
Definition: status_popup.h:76
wxPanel * m_panel
Definition: status_popup.h:74
virtual void Popup(wxWindow *aFocus=nullptr)
virtual void Move(const wxPoint &aWhere)
void onCharHook(wxKeyEvent &aEvent)
Expire timer even handler.
virtual ~STATUS_POPUP()
Definition: status_popup.h:49
Extension of STATUS_POPUP for displaying a single line text.
Definition: status_popup.h:84
void SetTextColor(const wxColour &aColor)
Change text color.
void SetText(const wxString &aText)
Display a text.
virtual ~STATUS_TEXT_POPUP()
Definition: status_popup.h:87
wxStaticText * m_statusLine
Definition: status_popup.h:104