예제 #1
0
void Cursor::clearToEndOfScreen()
{
    clearToEndOfLine();
    if (new_y() < m_screen->height() -1) {
        screen_data()->clearToEndOfScreen(m_new_position.y()+1);
    }
}
예제 #2
0
파일: cursor.cpp 프로젝트: siyuano/yat
void Cursor::clearToEndOfScreen()
{
    clearToEndOfLine();
    if (new_y() < m_screen->height() -1)
        screen_data()->clearToEndOfScreen(new_y() + 1);
}