cursor type

git-svn-id: svn://qnap.local/TwoTerm/trunk@2020 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
This commit is contained in:
Kelvin Sherlock 2011-02-05 02:21:34 +00:00
parent 93a6782a2b
commit 0dd6473956
2 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,7 @@ class ViewScreen: public Screen
public:
virtual void setSize(unsigned width, unsigned height);
virtual void setCursorType(CursorType cursorType);
void setSize(unsigned width, unsigned height, bool resizeView);
@ -97,6 +98,8 @@ private:
-(void)cursorTimer: (NSTimer *)timer;
-(void)setCursorType: (unsigned)cursorType;
-(void)autoTypeText: (NSString *)text;

View File

@ -767,4 +767,10 @@ void ViewScreen::setSize(unsigned width, unsigned height, bool resizeView)
}
}
void ViewScreen::setCursorType(CursorType cursorType)
{
Screen::setCursorType(cursorType);
}