QTfrontend/ui/widget/HistoryLineEdit.h
changeset 6160 863d3edf5690
parent 6151 9fd5b70acb1a
child 6161 98486efeb0b7
equal deleted inserted replaced
6159:c780b8cf4d75 6160:863d3edf5690
    28 #include <QMutex>
    28 #include <QMutex>
    29 
    29 
    30 class QLineEdit;
    30 class QLineEdit;
    31 
    31 
    32 /**
    32 /**
    33  * A modification of QLineEdit that features:
    33  * @brief A <code>QLineEdit</code> that features a history of previous contents,
    34  * + History of previous contents, re-selectable using the arrow keys.
    34  *        re-selectable using the arrow keys.
    35  *
    35  *
    36  * Note:
    36  * Note: Public methods for accessing history are <b>thread-safe</b>.
    37  *   * Public methods for accessing history are thread-safe.
    37  * 
    38  * @author sheepluva
    38  * @author sheepluva
    39  * @since 0.9.17
    39  * @since 0.9.17
    40  */
    40  */
    41 class HistoryLineEdit : public QLineEdit
    41 class HistoryLineEdit : public QLineEdit
    42 {
    42 {