summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
b02da6b)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4316
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- void GetPosition(int *xpos, int *ypos) const
+ void GetPosition(long *xpos, long *ypos) const
}
// Find the position of the event
}
// Find the position of the event
- void GetPosition(int *xpos, int *ypos) const
+ void GetPosition(long *xpos, long *ypos) const
- if (xpos) *xpos = (int)m_x;
- if (ypos) *ypos = (int)m_y;
+ if (xpos) *xpos = (long)m_x;
+ if (ypos) *ypos = (long)m_y;
}
wxPoint GetPosition() const
}
wxPoint GetPosition() const
void wxToolBarSimple::OnMouseEvent ( wxMouseEvent & event )
{
void wxToolBarSimple::OnMouseEvent ( wxMouseEvent & event )
{
event.Position(&x, &y);
wxToolBarTool *tool = FindToolForPosition(x, y);
event.Position(&x, &y);
wxToolBarTool *tool = FindToolForPosition(x, y);
- wxRegionRefData(void);
- ~wxRegionRefData(void);
+ wxRegionRefData();
+ ~wxRegionRefData();
-wxRegionRefData::wxRegionRefData(void)
+wxRegionRefData::wxRegionRefData()
{
m_region = (GdkRegion *) NULL;
}
{
m_region = (GdkRegion *) NULL;
}
-wxRegionRefData::~wxRegionRefData(void)
+wxRegionRefData::~wxRegionRefData()
{
if (m_region) gdk_region_destroy( m_region );
{
if (m_region) gdk_region_destroy( m_region );
-wxRegion::wxRegion(void)
{
m_refData = new wxRegionRefData();
M_REGIONDATA->m_region = gdk_region_new();
}
{
m_refData = new wxRegionRefData();
M_REGIONDATA->m_region = gdk_region_new();
}
-wxRegion::~wxRegion(void)
return m_refData != region.m_refData;
}
return m_refData != region.m_refData;
}
-void wxRegion::Clear(void)
{
UnRef();
m_refData = new wxRegionRefData();
{
UnRef();
m_refData = new wxRegionRefData();
-wxRect wxRegion::GetBox(void) const
+wxRect wxRegion::GetBox() const
{
long x = 0;
long y = 0;
{
long x = 0;
long y = 0;
return wxRect( x, y, w, h );
}
return wxRect( x, y, w, h );
}
-bool wxRegion::Empty(void) const
+bool wxRegion::Empty() const
{
return gdk_region_empty( M_REGIONDATA->m_region );
}
{
return gdk_region_empty( M_REGIONDATA->m_region );
}
return Contains( rect.x, rect.y, rect.width, rect.height );
}
return Contains( rect.x, rect.y, rect.width, rect.height );
}
-GdkRegion *wxRegion::GetRegion(void) const
+GdkRegion *wxRegion::GetRegion() const
{
return M_REGIONDATA->m_region;
}
{
return M_REGIONDATA->m_region;
}
IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject);
IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject);
-wxRegionIterator::wxRegionIterator(void)
+wxRegionIterator::wxRegionIterator()
-wxRegionIterator::operator bool (void) const
+wxRegionIterator::operator bool () const
{
return m_current < m_region.GetRectList()->Number();
}
{
return m_current < m_region.GetRectList()->Number();
}
-bool wxRegionIterator::HaveRects(void) const
+bool wxRegionIterator::HaveRects() const
{
return m_current < m_region.GetRectList()->Number();
}
{
return m_current < m_region.GetRectList()->Number();
}
-void wxRegionIterator::operator ++ (void)
+void wxRegionIterator::operator ++ ()
{
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
{
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
-long wxRegionIterator::GetX(void) const
+wxCoord wxRegionIterator::GetX() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
-long wxRegionIterator::GetY(void) const
+wxCoord wxRegionIterator::GetY() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
-long wxRegionIterator::GetW(void) const
+wxCoord wxRegionIterator::GetW() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
-long wxRegionIterator::GetH(void) const
+wxCoord wxRegionIterator::GetH() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
- wxRegionRefData(void);
- ~wxRegionRefData(void);
+ wxRegionRefData();
+ ~wxRegionRefData();
-wxRegionRefData::wxRegionRefData(void)
+wxRegionRefData::wxRegionRefData()
{
m_region = (GdkRegion *) NULL;
}
{
m_region = (GdkRegion *) NULL;
}
-wxRegionRefData::~wxRegionRefData(void)
+wxRegionRefData::~wxRegionRefData()
{
if (m_region) gdk_region_destroy( m_region );
{
if (m_region) gdk_region_destroy( m_region );
-wxRegion::wxRegion(void)
{
m_refData = new wxRegionRefData();
M_REGIONDATA->m_region = gdk_region_new();
}
{
m_refData = new wxRegionRefData();
M_REGIONDATA->m_region = gdk_region_new();
}
-wxRegion::~wxRegion(void)
return m_refData != region.m_refData;
}
return m_refData != region.m_refData;
}
-void wxRegion::Clear(void)
{
UnRef();
m_refData = new wxRegionRefData();
{
UnRef();
m_refData = new wxRegionRefData();
-wxRect wxRegion::GetBox(void) const
+wxRect wxRegion::GetBox() const
{
long x = 0;
long y = 0;
{
long x = 0;
long y = 0;
return wxRect( x, y, w, h );
}
return wxRect( x, y, w, h );
}
-bool wxRegion::Empty(void) const
+bool wxRegion::Empty() const
{
return gdk_region_empty( M_REGIONDATA->m_region );
}
{
return gdk_region_empty( M_REGIONDATA->m_region );
}
return Contains( rect.x, rect.y, rect.width, rect.height );
}
return Contains( rect.x, rect.y, rect.width, rect.height );
}
-GdkRegion *wxRegion::GetRegion(void) const
+GdkRegion *wxRegion::GetRegion() const
{
return M_REGIONDATA->m_region;
}
{
return M_REGIONDATA->m_region;
}
IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject);
IMPLEMENT_DYNAMIC_CLASS(wxRegionIterator,wxObject);
-wxRegionIterator::wxRegionIterator(void)
+wxRegionIterator::wxRegionIterator()
-wxRegionIterator::operator bool (void) const
+wxRegionIterator::operator bool () const
{
return m_current < m_region.GetRectList()->Number();
}
{
return m_current < m_region.GetRectList()->Number();
}
-bool wxRegionIterator::HaveRects(void) const
+bool wxRegionIterator::HaveRects() const
{
return m_current < m_region.GetRectList()->Number();
}
{
return m_current < m_region.GetRectList()->Number();
}
-void wxRegionIterator::operator ++ (void)
+void wxRegionIterator::operator ++ ()
{
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
{
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
if (m_current < m_region.GetRectList()->Number()) ++m_current;
}
-long wxRegionIterator::GetX(void) const
+wxCoord wxRegionIterator::GetX() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
-long wxRegionIterator::GetY(void) const
+wxCoord wxRegionIterator::GetY() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
-long wxRegionIterator::GetW(void) const
+wxCoord wxRegionIterator::GetW() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
-long wxRegionIterator::GetH(void) const
+wxCoord wxRegionIterator::GetH() const
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;
{
wxNode *node = m_region.GetRectList()->Nth( m_current );
if (!node) return 0;