1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxRealPoint
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
11 Bitmap type flags. See wxBitmap and wxImage classes.
15 wxBITMAP_TYPE_INVALID
,
17 wxBITMAP_TYPE_BMP_RESOURCE
,
18 wxBITMAP_TYPE_RESOURCE
= wxBITMAP_TYPE_BMP_RESOURCE
,
20 wxBITMAP_TYPE_ICO_RESOURCE
,
22 wxBITMAP_TYPE_CUR_RESOURCE
,
24 wxBITMAP_TYPE_XBM_DATA
,
26 wxBITMAP_TYPE_XPM_DATA
,
28 wxBITMAP_TYPE_TIF_RESOURCE
,
30 wxBITMAP_TYPE_GIF_RESOURCE
,
32 wxBITMAP_TYPE_PNG_RESOURCE
,
34 wxBITMAP_TYPE_JPEG_RESOURCE
,
36 wxBITMAP_TYPE_PNM_RESOURCE
,
38 wxBITMAP_TYPE_PCX_RESOURCE
,
40 wxBITMAP_TYPE_PICT_RESOURCE
,
42 wxBITMAP_TYPE_ICON_RESOURCE
,
46 wxBITMAP_TYPE_MACCURSOR
,
47 wxBITMAP_TYPE_MACCURSOR_RESOURCE
,
48 wxBITMAP_TYPE_ANY
= 50
52 Polygon filling mode. See wxDC::DrawPolygon.
54 enum wxPolygonFillMode
61 Standard cursors. See wxCursor.
66 wxCURSOR_ARROW
, ///< A standard arrow cursor.
67 wxCURSOR_RIGHT_ARROW
, ///< A standard arrow cursor pointing to the right.
68 wxCURSOR_BULLSEYE
, ///< Bullseye cursor.
69 wxCURSOR_CHAR
, ///< Rectangular character cursor.
70 wxCURSOR_CROSS
, ///< A cross cursor.
71 wxCURSOR_HAND
, ///< A hand cursor.
72 wxCURSOR_IBEAM
, ///< An I-beam cursor (vertical line).
73 wxCURSOR_LEFT_BUTTON
, ///< Represents a mouse with the left button depressed.
74 wxCURSOR_MAGNIFIER
, ///< A magnifier icon.
75 wxCURSOR_MIDDLE_BUTTON
, ///< Represents a mouse with the middle button depressed.
76 wxCURSOR_NO_ENTRY
, ///< A no-entry sign cursor.
77 wxCURSOR_PAINT_BRUSH
, ///< A paintbrush cursor.
78 wxCURSOR_PENCIL
, ///< A pencil cursor.
79 wxCURSOR_POINT_LEFT
, ///< A cursor that points left.
80 wxCURSOR_POINT_RIGHT
, ///< A cursor that points right.
81 wxCURSOR_QUESTION_ARROW
, ///< An arrow and question mark.
82 wxCURSOR_RIGHT_BUTTON
, ///< Represents a mouse with the right button depressed.
83 wxCURSOR_SIZENESW
, ///< A sizing cursor pointing NE-SW.
84 wxCURSOR_SIZENS
, ///< A sizing cursor pointing N-S.
85 wxCURSOR_SIZENWSE
, ///< A sizing cursor pointing NW-SE.
86 wxCURSOR_SIZEWE
, ///< A sizing cursor pointing W-E.
87 wxCURSOR_SIZING
, ///< A general sizing cursor.
88 wxCURSOR_SPRAYCAN
, ///< A spraycan cursor.
89 wxCURSOR_WAIT
, ///< A wait cursor.
90 wxCURSOR_WATCH
, ///< A watch cursor.
91 wxCURSOR_BLANK
, ///< Transparent cursor.
92 wxCURSOR_DEFAULT
, ///< Standard X11 cursor (only in wxGTK).
93 wxCURSOR_COPY_ARROW
, ///< MacOS Theme Plus arrow (only in wxMac).
94 wxCURSOR_CROSS_REVERSE
, ///< Only available on wxX11.
95 wxCURSOR_DOUBLE_ARROW
, ///< Only available on wxX11.
96 wxCURSOR_BASED_ARROW_UP
, ///< Only available on wxX11.
97 wxCURSOR_BASED_ARROW_DOWN
, ///< Only available on wxX11.
98 wxCURSOR_ARROWWAIT
, ///< A wait cursor with a standard arrow.
107 A wxRealPoint is a useful data structure for graphics operations.
109 It contains floating point @e x and @e y members.
110 See wxPoint for an integer version.
112 Note that the coordinates stored inside a wxRealPoint object may be negative
113 and that wxRealPoint functions do not perform any check against negative values.
124 Initializes to zero the x and y members.
129 Initializes the point with the given coordinates.
131 wxRealPoint(double x
, double y
);
134 X coordinate of this point.
139 Y coordinate of this point.
149 A class for manipulating rectangles.
151 Note that the x, y coordinates and the width and height stored inside a wxRect
152 object may be negative and that wxRect functions do not perform any check against
165 Initializes to zero the internal @a x, @a y, @a width and @a height members.
169 Creates a wxRect object from @a x, @a y, @a width and @a height values.
171 wxRect(int x
, int y
, int width
, int height
);
173 Creates a wxRect object from top-left and bottom-right points.
175 wxRect(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
177 Creates a wxRect object from position @a pos and @a size values.
179 wxRect(const wxPoint
& pos
, const wxSize
& size
);
181 Creates a wxRect object from @a size values at the origin.
183 wxRect(const wxSize
& size
);
187 Returns the rectangle having the same size as this one but centered
188 relatively to the given rectangle @a r. By default, rectangle is
189 centred in both directions but if @a dir includes only @c wxVERTICAL or
190 only @c wxHORIZONTAL, then it is only centered in this direction while
191 the other component of its position remains unchanged.
193 wxRect
CentreIn(const wxRect
& r
, int dir
= wxBOTH
) const;
194 wxRect
CenterIn(const wxRect
& r
, int dir
= wxBOTH
) const;
198 Returns @true if the given point is inside the rectangle (or on its
199 boundary) and @false otherwise.
201 bool Contains(int x
, int y
) const;
203 Returns @true if the given point is inside the rectangle (or on its
204 boundary) and @false otherwise.
206 bool Contains(const wxPoint
& pt
) const;
208 Returns @true if the given rectangle is completely inside this
209 rectangle (or touches its boundary) and @false otherwise.
211 bool Contains(const wxRect
& rect
) const;
215 Decrease the rectangle size.
217 This method is the opposite from Inflate(): Deflate(a, b) is equivalent
218 to Inflate(-a, -b). Please refer to Inflate() for full description.
220 void Deflate(wxCoord dx
, wxCoord dy
);
221 void Deflate(const wxSize
& diff
);
222 void Deflate(wxCoord diff
);
223 wxRect
Deflate(wxCoord dx
, wxCoord dy
) const;
227 Gets the bottom point of the rectangle.
229 int GetBottom() const;
232 Gets the position of the bottom left corner.
234 wxPoint
GetBottomLeft() const;
237 Gets the position of the bottom right corner.
239 wxPoint
GetBottomRight() const;
242 Gets the height member.
244 int GetHeight() const;
247 Gets the left point of the rectangle (the same as GetX()).
254 wxPoint
GetPosition() const;
257 Gets the right point of the rectangle.
259 int GetRight() const;
266 wxSize
GetSize() const;
269 Gets the top point of the rectangle (the same as GetY()).
274 Gets the position of the top left corner of the rectangle, same as
277 wxPoint
GetTopLeft() const;
280 Gets the position of the top right corner.
282 wxPoint
GetTopRight() const;
285 Gets the width member.
287 int GetWidth() const;
301 Increases the size of the rectangle.
303 The left border is moved farther left and the right border is moved
304 farther right by @a dx. The upper border is moved farther up and the
305 bottom border is moved farther down by @a dy. (Note the the width and
306 height of the rectangle thus change by 2*dx and 2*dy, respectively.) If
307 one or both of @a dx and @a dy are negative, the opposite happens: the
308 rectangle size decreases in the respective direction.
310 Inflating and deflating behaves "naturally". Defined more precisely,
312 -# "Real" inflates (that is, @a dx and/or @a dy = 0) are not
313 constrained. Thus inflating a rectangle can cause its upper left
314 corner to move into the negative numbers. (2.5.4 and older forced
315 the top left coordinate to not fall below (0, 0), which implied a
316 forced move of the rectangle.)
317 -# Deflates are clamped to not reduce the width or height of the
318 rectangle below zero. In such cases, the top-left corner is
319 nonetheless handled properly. For example, a rectangle at (10, 10)
320 with size (20, 40) that is inflated by (-15, -15) will become
321 located at (20, 25) at size (0, 10). Finally, observe that the width
322 and height are treated independently. In the above example, the
323 width is reduced by 20, whereas the height is reduced by the full 30
324 (rather than also stopping at 20, when the width reached zero).
328 void Inflate(wxCoord dx
, wxCoord dy
);
329 void Inflate(const wxSize
& diff
);
330 void Inflate(wxCoord diff
);
331 wxRect
Inflate(wxCoord dx
, wxCoord dy
) const;
335 Modifies this rectangle to contain the overlapping portion of this rectangle
336 and the one passed in as parameter.
338 @return This rectangle, modified.
340 wxRect
& Intersect(const wxRect
& rect
);
343 Returns the overlapping portion of this rectangle and the one passed in as
346 wxRect
Intersect(const wxRect
& rect
) const;
349 Returns @true if this rectangle has a non-empty intersection with the
350 rectangle @a rect and @false otherwise.
352 bool Intersects(const wxRect
& rect
) const;
355 Returns @true if this rectangle has a width or height less than or
356 equal to 0 and @false otherwise.
358 bool IsEmpty() const;
362 Moves the rectangle by the specified offset. If @a dx is positive, the
363 rectangle is moved to the right, if @a dy is positive, it is moved to the
364 bottom, otherwise it is moved to the left or top respectively.
366 void Offset(wxCoord dx
, wxCoord dy
);
367 void Offset(const wxPoint
& pt
);
373 void SetHeight(int height
);
380 void SetSize(const wxSize
& s
);
385 void SetWidth(int width
);
399 Modifies the rectangle to contain the bounding box of this rectangle
400 and the one passed in as parameter.
402 wxRect
Union(const wxRect
& rect
) const;
403 wxRect
& Union(const wxRect
& rect
);
409 bool operator !=(const wxRect
& r1
, const wxRect
& r2
);
413 Like Union(), but doesn't treat empty rectangles specially.
415 wxRect
operator +(const wxRect
& r1
, const wxRect
& r2
);
416 wxRect
& operator +=(const wxRect
& r
);
421 Returns the intersection of two rectangles (which may be empty).
423 wxRect
operator *(const wxRect
& r1
, const wxRect
& r2
);
424 wxRect
& operator *=(const wxRect
& r
);
430 wxRect
& operator=(const wxRect
& rect
);
435 bool operator ==(const wxRect
& r1
, const wxRect
& r2
);
448 x coordinate of the top-level corner of the rectangle.
453 y coordinate of the top-level corner of the rectangle.
463 A wxPoint is a useful data structure for graphics operations.
465 It contains integer @e x and @e y members.
466 See wxRealPoint for a floating point version.
468 Note that the width and height stored inside a wxPoint object may be negative
469 and that wxPoint functions do not perform any check against negative values
470 (this is used to e.g. store the special -1 value in ::wxDefaultPosition instance).
485 Initializes the internal x and y coordinates to zero.
490 Initializes the point object with the given @a x and @a y coordinates.
492 wxPoint(int x
, int y
);
495 @name Miscellaneous operators
498 wxPoint
& operator=(const wxPoint
& pt
);
500 bool operator ==(const wxPoint
& p1
, const wxPoint
& p2
);
501 bool operator !=(const wxPoint
& p1
, const wxPoint
& p2
);
503 wxPoint
operator +(const wxPoint
& p1
, const wxPoint
& p2
);
504 wxPoint
operator -(const wxPoint
& p1
, const wxPoint
& p2
);
506 wxPoint
& operator +=(const wxPoint
& pt
);
507 wxPoint
& operator -=(const wxPoint
& pt
);
509 wxPoint
operator +(const wxPoint
& pt
, const wxSize
& sz
);
510 wxPoint
operator -(const wxPoint
& pt
, const wxSize
& sz
);
511 wxPoint
operator +(const wxSize
& sz
, const wxPoint
& pt
);
512 wxPoint
operator -(const wxSize
& sz
, const wxPoint
& pt
);
514 wxPoint
& operator +=(const wxSize
& sz
);
515 wxPoint
& operator -=(const wxSize
& sz
);
530 Global istance of a wxPoint initialized with values (-1,-1).
532 wxPoint wxDefaultPosition
;
536 @class wxColourDatabase
538 wxWidgets maintains a database of standard RGB colours for a predefined
539 set of named colours. The application may add to this set if desired by
540 using AddColour() and may use it to look up colours by names using Find()
541 or find the names for the standard colour using FindName().
543 There is one predefined, global instance of this class called
544 ::wxTheColourDatabase.
546 The standard database contains at least the following colours:
591 @n MEDIUM SPRING GREEN
629 class wxColourDatabase
633 Constructs the colour database. It will be initialized at the first
639 Adds a colour to the database. If a colour with the same name already
640 exists, it is replaced.
642 void AddColour(const wxString
& colourName
, const wxColour
& colour
);
645 Finds a colour given the name. Returns an invalid colour object (that
646 is, wxColour::IsOk() will return @false) if the colour wasn't found in
649 wxColour
Find(const wxString
& colourName
) const;
652 Finds a colour name given the colour. Returns an empty string if the
653 colour is not found in the database.
655 wxString
FindName(const wxColour
& colour
) const;
662 A wxSize is a useful data structure for graphics operations.
663 It simply contains integer @e width and @e height members.
665 Note that the width and height stored inside a wxSize object may be negative
666 and that wxSize functions do not perform any check against negative values
667 (this is used to e.g. store the special -1 value in ::wxDefaultSize instance).
668 See also IsFullySpecified() and SetDefaults() for utility functions regarding
669 the special -1 value.
671 wxSize is used throughout wxWidgets as well as wxPoint which, although
672 almost equivalent to wxSize, has a different meaning: wxPoint represents a
673 position while wxSize represents the size.
676 wxPython defines aliases for the @e x and @e y members named @e width and
677 @e height since it makes much more sense for sizes.
686 @see wxPoint, wxRealPoint
692 Initializes this size object with zero width and height.
697 Initializes this size object with the given @a width and @a height.
699 wxSize(int width
, int height
);
703 Decreases the size in both x and y directions.
707 void DecBy(const wxSize
& size
);
708 void DecBy(int dx
, int dy
);
713 Decrements this object so that both of its dimensions are not greater
714 than the corresponding dimensions of the @a size.
718 void DecTo(const wxSize
& size
);
721 Gets the height member.
723 int GetHeight() const;
726 Gets the width member.
728 int GetWidth() const;
732 Increases the size in both x and y directions.
736 void IncBy(const wxSize
& size
);
737 void IncBy(int dx
, int dy
);
742 Increments this object so that both of its dimensions are not less than
743 the corresponding dimensions of the @a size.
747 void IncTo(const wxSize
& size
);
750 Returns @true if neither of the size object components is equal to -1,
751 which is used as default for the size values in wxWidgets (hence the
752 predefined ::wxDefaultSize has both of its components equal to -1).
754 This method is typically used before calling SetDefaults().
756 bool IsFullySpecified() const;
759 Scales the dimensions of this object by the given factors. If you want
760 to scale both dimensions by the same factor you can also use
763 @return A reference to this object (so that you can concatenate other
764 operations in the same line).
766 wxSize
& Scale(float xscale
, float yscale
);
769 Sets the width and height members.
771 void Set(int width
, int height
);
774 Combine this size object with another one replacing the default (i.e.
775 equal to -1) components of this object with those of the other. It is
776 typically used like this:
779 if ( !size.IsFullySpecified() )
781 size.SetDefaults(GetDefaultSize());
785 @see IsFullySpecified()
787 void SetDefaults(const wxSize
& sizeDefault
);
792 void SetHeight(int height
);
797 void SetWidth(int width
);
801 @name Miscellaneous operators
804 wxSize
& operator=(const wxSize
& sz
);
806 bool operator ==(const wxSize
& s1
, const wxSize
& s2
);
807 bool operator !=(const wxSize
& s1
, const wxSize
& s2
);
809 wxSize
operator +(const wxSize
& s1
, const wxSize
& s2
);
810 wxSize
operator -(const wxSize
& s1
, const wxSize
& s2
);
811 wxSize
& operator +=(const wxSize
& sz
);
812 wxSize
& operator -=(const wxSize
& sz
);
814 wxSize
operator /(const wxSize
& sz
, int factor
);
815 wxSize
operator *(const wxSize
& sz
, int factor
);
816 wxSize
operator *(int factor
, const wxSize
& sz
);
817 wxSize
& operator /=(int factor
);
818 wxSize
& operator *=(int factor
);
823 Global instance of a wxSize object initialized to (-1,-1).
825 wxSize wxDefaultSize
;
830 // ============================================================================
831 // Global functions/macros
832 // ============================================================================
834 /** @addtogroup group_funcmacro_gdi */
838 This macro loads a bitmap from either application resources (on the
839 platforms for which they exist, i.e. Windows and OS2) or from an XPM file.
840 This can help to avoid using @ifdef_ when creating bitmaps.
842 @see @ref overview_bitmap, wxICON()
846 #define wxBITMAP(bitmapName)
849 This macro loads an icon from either application resources (on the
850 platforms for which they exist, i.e. Windows and OS2) or from an XPM file.
851 This can help to avoid using @ifdef_ when creating icons.
853 @see @ref overview_bitmap, wxBITMAP()
857 #define wxICON(iconName)
860 Returns @true if the display is colour, @false otherwise.
864 bool wxColourDisplay();
867 Returns the depth of the display (a value of 1 denotes a monochrome
872 int wxDisplayDepth();
875 Globally sets the cursor; only has an effect on Windows, Mac and GTK+. You
876 should call this function with wxNullCursor to restore the system cursor.
878 @see wxCursor, wxWindow::SetCursor()
882 void wxSetCursor(const wxCursor
& cursor
);
886 /** @addtogroup group_funcmacro_gdi */
889 Returns the dimensions of the work area on the display. On Windows this
890 means the area not covered by the taskbar, etc. Other platforms are
891 currently defaulting to the whole display until a way is found to provide
892 this info for all window managers, etc.
896 void wxClientDisplayRect(int* x
, int* y
, int* width
, int* height
);
897 wxRect
wxGetClientDisplayRect();
900 /** @addtogroup group_funcmacro_gdi */
903 Returns the display resolution in pixels per inch.
905 The @c x component of the returned wxSize object contains the horizontal
906 resolution and the @c y one -- the vertical resolution.
912 wxSize
wxGetDisplayPPI();
915 /** @addtogroup group_funcmacro_gdi */
918 Returns the display size in pixels.
920 For the version taking @a width and @a header arguments, either of them
921 can be @NULL if the caller is not interested in the returned value.
925 void wxDisplaySize(int* width
, int* height
);
926 wxSize
wxGetDisplaySize();
929 /** @addtogroup group_funcmacro_gdi */
932 Returns the display size in millimeters.
934 For the version taking @a width and @a header arguments, either of them
935 can be @NULL if the caller is not interested in the returned value.
937 @see wxGetDisplayPPI()
941 void wxDisplaySizeMM(int* width
, int* height
);
942 wxSize
wxGetDisplaySizeMM();