3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/vidmode.h
|
|
// Purpose: declares wxVideoMode class used by both wxDisplay and wxApp
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 27.09.2003 (extracted from wx/display.h)
|
|
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_VMODE_H_
|
|
#define _WX_VMODE_H_
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxVideoMode: a simple struct containing video mode parameters for a display
|
|
// ----------------------------------------------------------------------------
|
|
|
|
struct WXDLLIMPEXP_CORE wxVideoMode
|
|
{
|
|
wxVideoMode(int width = 0, int height = 0, int depth = 0, int freq = 0)
|
|
{
|
|
w = width;
|
|
h = height;
|
|
|
|
bpp = depth;
|
|
|
|
refresh = freq;
|
|
}
|
|
|
|
// default copy ctor and assignment operator are ok
|
|
|
|
bool operator==(const wxVideoMode& m) const
|
|
{
|
|
return w == m.w && h == m.h && bpp == m.bpp && refresh == m.refresh;
|
|
}
|
|
bool operator!=(const wxVideoMode& mode) const
|
|
{
|
|
return !operator==(mode);
|
|
}
|
|
|
|
// returns true if this mode matches the other one in the sense that all
|
|
// non zero fields of the other mode have the same value in this one
|
|
// (except for refresh which is allowed to have a greater value)
|
|
bool Matches(const wxVideoMode& other) const
|
|
{
|
|
return (!other.w || w == other.w) &&
|
|
(!other.h || h == other.h) &&
|
|
(!other.bpp || bpp == other.bpp) &&
|
|
(!other.refresh || refresh >= other.refresh);
|
|
}
|
|
|
|
// trivial accessors
|
|
int GetWidth() const { return w; }
|
|
int GetHeight() const { return h; }
|
|
int GetDepth() const { return bpp; }
|
|
int GetRefresh() const { return refresh; }
|
|
|
|
// returns true if the object has been initialized
|
|
bool IsOk() const { return w && h; }
|
|
|
|
|
|
// the screen size in pixels (e.g. 640*480), 0 means unspecified
|
|
int w, h;
|
|
|
|
// bits per pixel (e.g. 32), 1 is monochrome and 0 means unspecified/known
|
|
int bpp;
|
|
|
|
// refresh frequency in Hz, 0 means unspecified/unknown
|
|
int refresh;
|
|
};
|
|
|
|
#endif // _WX_VMODE_H_
|
|
|