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 The 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
44class STATUS_POPUP: public wxPopupWindow
45{
46public:
47 STATUS_POPUP( wxWindow* aParent );
48 virtual ~STATUS_POPUP() { Hide(); }
49
50 virtual void Popup( wxWindow* aFocus = nullptr );
51 virtual void PopupFor( int aMsecs );
52 virtual void Move( const wxPoint& aWhere );
53 virtual void Move( const VECTOR2I& aWhere );
54
60 void Expire( int aMsecs );
61
62 wxWindow* GetPanel() { return m_panel; }
63
64protected:
65 void updateSize();
66
67 void onCharHook( wxKeyEvent& aEvent );
68
70 void onExpire( wxTimerEvent& aEvent );
71
72protected:
73 wxPanel* m_panel;
74 wxBoxSizer* m_topSizer;
76};
77
78
83{
84public:
85 STATUS_TEXT_POPUP( wxWindow* aParent );
86 virtual ~STATUS_TEXT_POPUP() {}
87
93 void SetText( const wxString& aText );
94
100 void SetTextColor( const wxColour& aColor );
101
102protected:
103 wxStaticText* m_statusLine;
104};
105
106
107#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:45
void onExpire(wxTimerEvent &aEvent)
Expire timer even handler.
wxWindow * GetPanel()
Definition: status_popup.h:62
void Expire(int aMsecs)
Hide the popup after a specified time.
virtual void PopupFor(int aMsecs)
wxBoxSizer * m_topSizer
Definition: status_popup.h:74
wxTimer m_expireTimer
Definition: status_popup.h:75
wxPanel * m_panel
Definition: status_popup.h:73
virtual void Popup(wxWindow *aFocus=nullptr)
virtual void Move(const wxPoint &aWhere)
void onCharHook(wxKeyEvent &aEvent)
virtual ~STATUS_POPUP()
Definition: status_popup.h:48
Extension of STATUS_POPUP for displaying a single line text.
Definition: status_popup.h:83
void SetTextColor(const wxColour &aColor)
Change text color.
void SetText(const wxString &aText)
Display a text.
virtual ~STATUS_TEXT_POPUP()
Definition: status_popup.h:86
wxStaticText * m_statusLine
Definition: status_popup.h:103