#include </home/zeitlin/src/wx/github/interface/wx/dcscreen.h>
A wxScreenDC can be used to paint on the screen.
This should normally be constructed as a temporary stack object; don't store a wxScreenDC object.
Public Member Functions | |
wxScreenDC () | |
Constructor. | |
Static Public Member Functions | |
static bool | EndDrawingOnTop () |
Use this in conjunction with StartDrawingOnTop(). | |
static bool | StartDrawingOnTop (wxWindow *window) |
Use this in conjunction with EndDrawingOnTop() to ensure that drawing to the screen occurs on top of existing windows. | |
static bool | StartDrawingOnTop (wxRect *rect=NULL) |
Use this in conjunction with EndDrawingOnTop() to ensure that drawing to the screen occurs on top of existing windows. |
wxScreenDC::wxScreenDC | ( | ) |
Constructor.
static bool wxScreenDC::EndDrawingOnTop | ( | ) | [static] |
Use this in conjunction with StartDrawingOnTop().
This function destroys the temporary window created to implement on-top drawing (X only).
static bool wxScreenDC::StartDrawingOnTop | ( | wxRect * | rect = NULL | ) | [static] |
Use this in conjunction with EndDrawingOnTop() to ensure that drawing to the screen occurs on top of existing windows.
Without this, some window systems (such as X) only allow drawing to take place underneath other windows.
This version of StartDrawingOnTop() is used to specify an area of the screen which is to be drawn on. If NULL is passed, the whole screen is available. It is recommended that an area of the screen is specified with this function rather than with StartDrawingOnTop(wxWindow*), because with large regions, flickering effects are noticeable when destroying the temporary transparent window used to implement this feature.
You might use this function when implementing a drag feature, for example as in the wxSplitterWindow implementation.
static bool wxScreenDC::StartDrawingOnTop | ( | wxWindow * | window | ) | [static] |
Use this in conjunction with EndDrawingOnTop() to ensure that drawing to the screen occurs on top of existing windows.
Without this, some window systems (such as X) only allow drawing to take place underneath other windows.
This version of StartDrawingOnTop() is used to specify that the area that will be drawn on coincides with the given window. It is recommended that an area of the screen is specified with StartDrawingOnTop(wxRect*) because with large regions, flickering effects are noticeable when destroying the temporary transparent window used to implement this feature.
You might use this function when implementing a drag feature, for example as in the wxSplitterWindow implementation.