# pragma implementation "wxlwindow.h"
#endif
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
#ifdef __BORLANDC__
# pragma hdrstop
{
//WXLO_DEBUG(("selecting at : %d/%d", (int) event.GetX(), (int)event.GetY()));
int left, top;
- ViewStart(&left, &top);
+ GetViewStart(&left, &top);
wxSize size = GetClientSize();
int xdelta, ydelta;
// Calculate where the top of the visible area is:
int x0, y0;
- ViewStart(&x0,&y0);
+ GetViewStart(&x0,&y0);
int dx, dy;
GetScrollPixelsPerUnit(&dx, &dy);
x0 *= dx; y0 *= dy;
&& m_WrapMargin > 0
&& m_llist->GetCursorPos().x > m_WrapMargin
&& isspace(keyCode))
+ {
m_llist->WrapLine(m_WrapMargin);
- m_llist->Insert((char)keyCode);
+ }
+
+ m_llist->Insert((wxChar)keyCode);
SetDirty();
}
else
int x0,y0,x1,y1, dx, dy;
// Calculate where the top of the visible area is:
- ViewStart(&x0,&y0);
+ GetViewStart(&x0,&y0);
GetScrollPixelsPerUnit(&dx, &dy);
x0 *= dx; y0 *= dy;
- WXLO_DEBUG(("ScrollToCursor: ViewStart is %d/%d", x0, y0));
+ WXLO_DEBUG(("ScrollToCursor: GetViewStart is %d/%d", x0, y0));
// Get the size of the visible window:
GetClientSize(&x1, &y1);
int x0,y0,x1,y1, dx, dy;
// Calculate where the top of the visible area is:
- ViewStart(&x0,&y0);
+ GetViewStart(&x0,&y0);
GetScrollPixelsPerUnit(&dx, &dy);
x0 *= dx; y0 *= dy;
(max.x > size.x - X_SCROLL_PAGE|| max.y > size.y - Y_SCROLL_PAGE)
)
{
- ViewStart(&m_ViewStartX, &m_ViewStartY);
+ GetViewStart(&m_ViewStartX, &m_ViewStartY);
SetScrollbars(X_SCROLL_PAGE,
Y_SCROLL_PAGE,
max.x / X_SCROLL_PAGE + 2,