day_of_week fix to wxDate, wxRect additions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-06-02 10:34:35 +00:00
parent a2cddd6385
commit dcb44466c1
4 changed files with 50 additions and 2 deletions

View File

@@ -250,17 +250,21 @@ public:
long GetHeight() const { return height; }
void SetHeight(long h) { height = h; }
wxPoint GetPosition() { return wxPoint(x, y); }
wxSize GetSize() { return wxSize(width, height); }
wxPoint GetPosition() const { return wxPoint(x, y); }
wxSize GetSize() const { return wxSize(width, height); }
long GetLeft() const { return x; }
long GetTop() const { return y; }
long GetBottom() const { return y + height; }
long GetRight() const { return x + width; }
bool Inside(int, int) const;
bool operator==(const wxRect& rect) const;
bool operator!=(const wxRect& rect) const { return !(*this == rect); }
wxRect operator + (const wxRect& rect) const;
const wxRect& operator += (const wxRect& rect);
public:
long x, y, width, height;
};