1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/*
* File: CommandLine.cpp
*
* Author: Jacob Dekel
* Created on: Aug 7, 2009
*
* Copyright (c) 2009-2013 Jacob Dekel
* $Id$
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "CommandLine.h"
#include "Preferences.h"
#include <QKeyEvent>
#include <iostream>
CommandLine::CommandLine(QWidget * parent)
: QLineEdit(parent), mHistoryPtr(-1)
{
setMaxLength(512);
setFont();
}
CommandLine::~CommandLine()
{
}
QSize CommandLine::sizeHint()
{
return QSize(1024, 50);
}
void CommandLine::enterPressed(const QString & text1)
{
hOutDebug(4,"text1:"<< this->text().toStdString());
mHistory.insert(mHistory.begin(),text1);
while (mHistory.size() > 100)
mHistory.erase(mHistory.end()-1);
mHistoryPtr = -1;
this->setText("");
}
void CommandLine::keyPressEvent(QKeyEvent * event)
{
hOutDebug(4, "key:" << event->key() << " " << (event->key() == Qt::Key_Up));
QLineEdit::keyPressEvent(event);
switch (event->key())
{
case Qt::Key_Enter:
case Qt::Key_Return:
enterPressed(this->text());
break;
case Qt::Key_Down:
if (mHistoryPtr >= 0) mHistoryPtr--;
setLine();
break;
case Qt::Key_Up:
mHistoryPtr++;
if (mHistoryPtr >= (signed) mHistory.size()) mHistoryPtr = mHistory.size()-1;
setLine();
break;
case Qt::Key_C:
if (event->modifiers() && Qt::CTRL)
emit ctrl_c();
break;
default:
break;
}
}
void CommandLine::setLine()
{
hOutDebug(4,"setLine:" << mHistoryPtr << " size:" << mHistory.size() << " " << mHistory[mHistoryPtr].toStdString());
if (mHistoryPtr < -1 || mHistoryPtr >= (signed) mHistory.size())
return;
if (mHistoryPtr != -1)
this->setText(mHistory[mHistoryPtr]);
else
this->setText("");
}
void CommandLine::setFont()
{
Preferences& pref = Preferences::getInstance();
QFont font(pref.fontName(Preferences::CommandFontObject).c_str(),
pref.fontSize(Preferences::CommandFontObject),
(pref.fontIsBold(Preferences::CommandFontObject) ? QFont::Bold : QFont::Normal),
pref.fontIsItalic(Preferences::CommandFontObject));
font.setStyleHint(QFont::Courier);
QLineEdit::setFont(font);
}
bool CommandLine::empty()
{
return (!(mHistory.size() > 0));
}
void CommandLine::save()
{
Preferences& pref = Preferences::getInstance();
while(mHistory.size() > 30)
mHistory.pop_back();
pref.setHistory(mHistory);
}
void CommandLine::restore()
{
Preferences& pref = Preferences::getInstance();
pref.getHistory(mHistory);
}
|