Version: 2.9.4
Public Member Functions
wxEraseEvent Class Reference

#include </home/zeitlin/src/wx/github/interface/wx/event.h>

Inheritance diagram for wxEraseEvent:

Detailed Description

An erase event is sent when a window's background needs to be repainted.

On some platforms, such as GTK+, this event is simulated (simply generated just before the paint event) and may cause flicker. It is therefore recommended that you set the text background colour explicitly in order to prevent flicker. The default background colour under GTK+ is grey.

To intercept this event, use the EVT_ERASE_BACKGROUND macro in an event table definition.

You must use the device context returned by GetDC() to draw on, don't create a wxPaintDC in the event handler.

Events using this class

The following event handler macros redirect the events to member function handlers 'func' with prototypes like:

void handlerFuncName(wxEraseEvent& event)

Event macros:

Library:  wxCore
Category:  Events
参照:
イベントとイベント処理

Public Member Functions

 wxEraseEvent (int id=0, wxDC *dc=NULL)
 Constructor.
wxDCGetDC () const
 Returns the device context associated with the erase event to draw on.

List of all members.


Constructor & Destructor Documentation

wxEraseEvent::wxEraseEvent ( int  id = 0,
wxDC dc = NULL 
)

Constructor.


Member Function Documentation

wxDC* wxEraseEvent::GetDC ( ) const

Returns the device context associated with the erase event to draw on.

The returned pointer is never NULL.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines