#include "History.h"
Public Member Functions | |
HistoryType () | |
virtual | ~HistoryType () |
virtual bool | isEnabled () const =0 |
Returns true if the history is enabled ( can store lines of output ) or false otherwise. More... | |
bool | isUnlimited () const |
Returns true if the history size is unlimited. More... | |
virtual int | maximumLineCount () const =0 |
Returns the maximum number of lines which this history type can store or 0 if the history can store an unlimited number of lines. More... | |
virtual HistoryScroll * | scroll (HistoryScroll *) const =0 |
HistoryType::HistoryType | ( | ) |
Definition at line 532 of file History.cpp.
|
virtual |
Definition at line 536 of file History.cpp.
|
pure virtual |
Returns true if the history is enabled ( can store lines of output ) or false otherwise.
Implemented in HistoryTypeBuffer, HistoryTypeFile, HistoryTypeBlockArray, and HistoryTypeNone.
|
inline |
Returns true if the history size is unlimited.
Definition at line 264 of file History.h.
References maximumLineCount().
|
pure virtual |
Returns the maximum number of lines which this history type can store or 0 if the history can store an unlimited number of lines.
Implemented in HistoryTypeBuffer, HistoryTypeFile, HistoryTypeBlockArray, and HistoryTypeNone.
Referenced by isUnlimited().
|
pure virtual |
Implemented in HistoryTypeBuffer, HistoryTypeFile, HistoryTypeBlockArray, and HistoryTypeNone.
Referenced by Screen::setScroll().