comparison libgui/qterminal/libqterminal/unix/QUnixTerminalImpl.h @ 18644:6e81b59d657c gui-release

Add preference for terminal windows buffer size (bug #41474) * QTerminal.cc (notice_settings): call new function SetScrollBufferSize with the related value from the settings * QTerminal.h: new purely virtual function SetScrollBufferSize * QUnixTerminalImpl.cpp (initialize): corrections of coding style; (setScrollBufferSize): implementation of new function; * QUnixTerminalImpl.h: new function setScrollBufferSize; * QWinTerminalImpl.cpp (class QConsolePrivate): new function (QConsolePrivate::setScrollBufferSize): implementation of new function; (QWinTerminalImpl::setScrollBufferSize): implementation of new function; * QWinTerminalImpl.h: new function setScrollBufferSize; * settings-dialog.cc (constructor): init spinbox with buffer size from settings; (write_changed_settings): write value of spinbox into settings file * settings-dialog.ui: new spinbox for terminals buffer size (terminal tab)
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Thu, 06 Mar 2014 03:56:59 +0500
parents 2d5d0d86432e
children a25bbe8c954c fe689210525c
comparison
equal deleted inserted replaced
18641:40dce9423baa 18644:6e81b59d657c
45 45
46 void setBackgroundColor (const QColor& color); 46 void setBackgroundColor (const QColor& color);
47 void setForegroundColor (const QColor& color); 47 void setForegroundColor (const QColor& color);
48 void setSelectionColor (const QColor& color); 48 void setSelectionColor (const QColor& color);
49 void setCursorColor (bool useForegroundColor, const QColor& color); 49 void setCursorColor (bool useForegroundColor, const QColor& color);
50 50 void setScrollBufferSize(int value);
51 QString selectedText(); 51 QString selectedText();
52 52
53 public slots: 53 public slots:
54 void copyClipboard(); 54 void copyClipboard();
55 void pasteClipboard(); 55 void pasteClipboard();