summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console
authorzecke <zecke>2002-10-14 23:19:15 (UTC)
committer zecke <zecke>2002-10-14 23:19:15 (UTC)
commit91adb54066037522a619ce5d072c2e932901fd74 (patch) (side-by-side diff)
tree02975c077e20d5f1847c70d98b4bf9fc1c10306a /noncore/apps/opie-console
parentd7290c6b24266303abd95e7f38c0fecae395f355 (diff)
downloadopie-91adb54066037522a619ce5d072c2e932901fd74.zip
opie-91adb54066037522a619ce5d072c2e932901fd74.tar.gz
opie-91adb54066037522a619ce5d072c2e932901fd74.tar.bz2
Fonts are now right!
Close or exit in the console window does make the app han
Diffstat (limited to 'noncore/apps/opie-console') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/emulation_handler.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/apps/opie-console/emulation_handler.cpp b/noncore/apps/opie-console/emulation_handler.cpp
index 48218e6..9f34d2c 100644
--- a/noncore/apps/opie-console/emulation_handler.cpp
+++ b/noncore/apps/opie-console/emulation_handler.cpp
@@ -59,25 +59,25 @@ void EmulationHandler::setColor( const QColor& fore, const QColor& back ) {
const ColorEntry *defaultCt = m_teWid->getdefaultColorTable();
for (int i = 0; i < TABLE_COLORS; i++ ) {
if ( i == 0 || i == 10 ) {
table[i].color = fore;
}else if ( i == 1 || i == 11 ) {
table[i].color = back;
table[i].transparent = 0;
}else {
table[i].color = defaultCt[i].color;
}
}
-// m_teWid->setColorTable(table );
+ m_teWid->setColorTable(table );
m_teWid->update();
}
QFont EmulationHandler::font( int id ) {
QString name;
int size = 0;
switch(id ) {
default: // fall through
case 0:
name = QString::fromLatin1("Micro");
size = 4;
break;
case 1:
@@ -92,40 +92,40 @@ QFont EmulationHandler::font( int id ) {
QFont font(name, size, QFont::Normal );
font.setFixedPitch(TRUE );
return font;
}
QColor EmulationHandler::foreColor(int col) {
QColor co;
/* we need to switch it */
switch( col ) {
default:
case Profile::White:
qWarning("Foreground black");
/* color is black */
- co = Qt::black;
+ co = Qt::white;
break;
case Profile::Black:
qWarning("Foreground white");
- co = Qt::white;
+ co = Qt::black;
break;
}
return co;
}
QColor EmulationHandler::backColor(int col ) {
QColor co;
/* we need to switch it */
switch( col ) {
default:
case Profile::White:
qWarning("Background white");
/* color is white */
- co = Qt::white;
+ co = Qt::black;
break;
case Profile::Black:
qWarning("Background black");
- co = Qt::black;
+ co = Qt::white;
break;
}
return co;
}