git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32536
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#endif
DoodleSegment::DoodleSegment(DoodleSegment& seg)
#endif
DoodleSegment::DoodleSegment(DoodleSegment& seg)
{
wxList::compatibility_iterator node = seg.lines.GetFirst();
while (node)
{
wxList::compatibility_iterator node = seg.lines.GetFirst();
while (node)
size.y = m_button->GetRect().GetBottom();
m_spinCtrl = new wxSpinCtrl(m_panel, Minimal_PopupSpinctrl, wxT("Hello"), wxPoint(0, size.y + 5));
size.y = m_spinCtrl->GetRect().GetBottom();
size.y = m_button->GetRect().GetBottom();
m_spinCtrl = new wxSpinCtrl(m_panel, Minimal_PopupSpinctrl, wxT("Hello"), wxPoint(0, size.y + 5));
size.y = m_spinCtrl->GetRect().GetBottom();
m_panel->SetSize( size.x+20, size.y+20 );
SetClientSize( size.x+20, size.y+20 );
}
m_panel->SetSize( size.x+20, size.y+20 );
SetClientSize( size.x+20, size.y+20 );
}
void SimpleTransientPopup::Popup(wxWindow *focus)
{
void SimpleTransientPopup::Popup(wxWindow *focus)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::Popup"), long(this) );
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::Popup"), int(this) );
wxPopupTransientWindow::Popup(focus);
}
void SimpleTransientPopup::OnDismiss()
{
wxPopupTransientWindow::Popup(focus);
}
void SimpleTransientPopup::OnDismiss()
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnDismiss"), long(this) );
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnDismiss"), int(this) );
wxPopupTransientWindow::OnDismiss();
}
bool SimpleTransientPopup::ProcessLeftDown(wxMouseEvent& event)
{
wxPopupTransientWindow::OnDismiss();
}
bool SimpleTransientPopup::ProcessLeftDown(wxMouseEvent& event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::ProcessLeftDown pos(%d, %d)"), long(this), event.GetX(), event.GetY());
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::ProcessLeftDown pos(%d, %d)"), int(this), event.GetX(), event.GetY());
return wxPopupTransientWindow::ProcessLeftDown(event);
}
bool SimpleTransientPopup::Show( bool show )
{
return wxPopupTransientWindow::ProcessLeftDown(event);
}
bool SimpleTransientPopup::Show( bool show )
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::Show %d"), long(this), int(show));
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::Show %d"), int(this), int(show));
return wxPopupTransientWindow::Show(show);
}
void SimpleTransientPopup::OnSize(wxSizeEvent &event)
{
return wxPopupTransientWindow::Show(show);
}
void SimpleTransientPopup::OnSize(wxSizeEvent &event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnSize"), long(this) );
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnSize"), int(this) );
event.Skip();
}
void SimpleTransientPopup::OnSetFocus(wxFocusEvent &event)
{
event.Skip();
}
void SimpleTransientPopup::OnSetFocus(wxFocusEvent &event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnSetFocus"), long(this) );
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnSetFocus"), int(this) );
event.Skip();
}
void SimpleTransientPopup::OnKillFocus(wxFocusEvent &event)
{
event.Skip();
}
void SimpleTransientPopup::OnKillFocus(wxFocusEvent &event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnKillFocus"), long(this) );
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnKillFocus"), int(this) );
event.Skip();
}
void SimpleTransientPopup::OnMouse(wxMouseEvent &event)
{
event.Skip();
}
void SimpleTransientPopup::OnMouse(wxMouseEvent &event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnMouse pos(%d, %d)"), long(this), event.GetX(), event.GetY());
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnMouse pos(%d, %d)"), int(this), event.GetX(), event.GetY());
event.Skip();
}
void SimpleTransientPopup::OnButton(wxCommandEvent& event)
{
event.Skip();
}
void SimpleTransientPopup::OnButton(wxCommandEvent& event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnButton ID %d"), long(this), event.GetId());
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnButton ID %d"), int(this), event.GetId());
wxButton *button = wxDynamicCast(event.GetEventObject(), wxButton);
if (button->GetLabel() == wxT("Press Me"))
wxButton *button = wxDynamicCast(event.GetEventObject(), wxButton);
if (button->GetLabel() == wxT("Press Me"))
void SimpleTransientPopup::OnSpinCtrl(wxSpinEvent& event)
{
void SimpleTransientPopup::OnSpinCtrl(wxSpinEvent& event)
{
- wxLogMessage( wxT("0x%x SimpleTransientPopup::OnSpinCtrl ID %d Value %d"), long(this), event.GetId(), event.GetInt());
+ wxLogMessage( wxT("0x%x SimpleTransientPopup::OnSpinCtrl ID %d Value %d"), int(this), event.GetId(), event.GetInt());
wxUnusedVar(l);
wxUnusedVar(v);
wxUnusedVar(l);
wxUnusedVar(v);
- wxStringList stringList;
- stringList.Add(_T("one")); stringList.Add(_T("two")); stringList.Add(_T("three"));
- var1 = stringList;
+ wxArrayString stringArray;
+ stringArray.Add(_T("one")); stringArray.Add(_T("two")); stringArray.Add(_T("three"));
+ var1 = stringArray;
textCtrl << _T("var1 = ") << var1.MakeString() << _T("\n");
var1.ClearList();
textCtrl << _T("var1 = ") << var1.MakeString() << _T("\n");
var1.ClearList();