Remove unused methods keyboardCursorShape and keyboardCursorColor

wilder-portage
Kurt Hindenburg 6 years ago
parent bed6aa1e20
commit db974fcb39
  1. 8
      src/TerminalDisplay.cpp
  2. 11
      src/TerminalDisplay.h

@ -626,10 +626,6 @@ void TerminalDisplay::setKeyboardCursorShape(Enum::CursorShapeEnum shape)
{
_cursorShape = shape;
}
Enum::CursorShapeEnum TerminalDisplay::keyboardCursorShape() const
{
return _cursorShape;
}
void TerminalDisplay::setCursorStyle(Enum::CursorShapeEnum shape, bool isBlinking)
{
@ -665,10 +661,6 @@ void TerminalDisplay::setKeyboardCursorColor(const QColor& color)
{
_cursorColor = color;
}
QColor TerminalDisplay::keyboardCursorColor() const
{
return _cursorColor;
}
void TerminalDisplay::setOpacity(qreal opacity)
{

@ -174,10 +174,6 @@ public:
* Defaults to BlockCursor
*/
void setKeyboardCursorShape(Enum::CursorShapeEnum shape);
/**
* Returns the shape of the keyboard cursor. See setKeyboardCursorShape()
*/
Enum::CursorShapeEnum keyboardCursorShape() const;
/**
* Sets the Cursor Style (DECSCUSR) via escape sequences
@ -206,13 +202,6 @@ public:
*/
void setKeyboardCursorColor(const QColor &color);
/**
* Returns the color of the keyboard cursor, or an invalid color if the keyboard
* cursor color is set to change according to the foreground color of the character
* underneath it.
*/
QColor keyboardCursorColor() const;
/**
* Returns the number of lines of text which can be displayed in the widget.
*

Loading…
Cancel
Save