/////////////////////////////////////////////////////////////////////////////
// Name: gdicmn.h
-// Purpose: documentation for wxRealPoint class
+// Purpose: interface of wxRealPoint
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxcore}
@category{data}
- @seealso
- wxPoint
+ @see wxPoint
*/
class wxRealPoint
{
};
+
/**
@class wxRect
@wxheader{gdicmn.h}
@library{wxcore}
@category{data}
- @seealso
- wxPoint, wxSize
+ @see wxPoint, wxSize
*/
class wxRect
{
};
+
/**
@class wxBrushList
@wxheader{gdicmn.h}
@library{wxcore}
@category{gdi}
- @seealso
- wxBrush
+ @see wxBrush
*/
class wxBrushList : public wxList
{
};
+
/**
@class wxPoint
@wxheader{gdicmn.h}
@library{wxcore}
@category{data}
- @seealso
- wxRealPoint
+ @see wxRealPoint
*/
class wxPoint
{
};
+
/**
@class wxColourDatabase
@wxheader{gdicmn.h}
@library{wxcore}
@category{FIXME}
- @seealso
- wxColour
+ @see wxColour
*/
class wxColourDatabase
{
};
+
/**
@class wxFontList
@wxheader{gdicmn.h}
@library{wxcore}
@category{gdi}
- @seealso
- wxFont
+ @see wxFont
*/
class wxFontList : public wxList
{
};
+
/**
@class wxSize
@wxheader{gdicmn.h}
@library{wxcore}
@category{data}
- @seealso
- wxPoint, wxRealPoint
+ @see wxPoint, wxRealPoint
*/
class wxSize
{
};
+
/**
@class wxPenList
@wxheader{gdicmn.h}
@library{wxcore}
@category{gdi}
- @seealso
- wxPen
+ @see wxPen
*/
class wxPenList
{
};
+
// ============================================================================
// Global functions/macros
// ============================================================================
+/** @ingroup group_funcmacro_gdi */
//@{
+
/**
Returns the dimensions of the work area on the display. On Windows
this means the area not covered by the taskbar, etc. Other platforms
void wxClientDisplayRect(int* x, int* y, int* width,
int* height);
wxRect wxGetClientDisplayRect();
-//@}
-//@{
/**
Returns the display size in pixels.
*/
void wxDisplaySize(int* width, int* height);
wxSize wxGetDisplaySize();
-//@}
-//@{
/**
Returns the display size in millimeters.
*/
void wxDisplaySizeMM(int* width, int* height);
wxSize wxGetDisplaySizeMM();
-//@}
/**
This macro loads an icon from either application resources (on the platforms
for which they exist, i.e. Windows and OS2) or from an XPM file. It allows to
avoid using @c #ifdefs when creating icons.
- @see @ref overview_wxbitmapoverview, wxBITMAP
+ @see @ref overview_wxbitmapoverview, wxBITMAP()
*/
wxICON();
for which they exist, i.e. Windows and OS2) or from an XPM file. It allows to
avoid using @c #ifdefs when creating bitmaps.
- @see @ref overview_wxbitmapoverview, wxICON
+ @see @ref overview_wxbitmapoverview, wxICON()
*/
-#define wxBITMAP() /* implementation is private */
+#define wxBITMAP() /* implementation is private */
/**
Returns the depth of the display (a value of 1 denotes a monochrome display).
*/
int wxDisplayDepth();
+//@}
+