1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxVideoMode
4 // Author: wxWidgets team
5 // RCS-ID: $Id: display.h 52634 2008-03-20 13:45:17Z VS $
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 Determines the sizes and locations of displays connected to the system.
21 @see wxClientDisplayRect(), wxDisplaySize(), wxDisplaySizeMM()
27 Constructs this class using the given parameters.
29 wxVideoMode(int width
= 0, int height
= 0, int depth
= 0, int freq
= 0);
31 bool operator==(const wxVideoMode
& m
) const
32 bool operator!=(const wxVideoMode
& mode
) const
35 Returns true if this mode matches the other one in the sense that all
36 non zero fields of the other mode have the same value in this one
37 (except for refresh which is allowed to have a greater value).
39 bool Matches(const wxVideoMode
& other
) const;
42 int GetHeight() const;
46 Returns true if the object has been initialized
52 A global wxVideoMode instance used by wxDisplay.
54 wxVideoMode wxDefaultVideoMode
;