/* This source file is part of Konsole, a terminal emulator. Copyright 2007-2008 by Robert Knight 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ // Own #include "ColorScheme.h" // Qt #include #include #include #include #include // KDE #include #include #include #include #include #include namespace { const int FGCOLOR_INDEX = 0; const int BGCOLOR_INDEX = 1; } using namespace Konsole; // The following are almost IBM standard color codes, with some slight // gamma correction for the dim colors to compensate for bright X screens. // It contains the 8 ansiterm/xterm colors in 2 intensities. const ColorEntry ColorScheme::defaultTable[TABLE_COLORS] = { ColorEntry(QColor(0x00, 0x00, 0x00), 0), // Dfore ColorEntry(QColor(0xFF, 0xFF, 0xFF), 1), // Dback ColorEntry(QColor(0x00, 0x00, 0x00), 0), // Black ColorEntry(QColor(0xB2, 0x18, 0x18), 0), // Red ColorEntry(QColor(0x18, 0xB2, 0x18), 0), // Green ColorEntry(QColor(0xB2, 0x68, 0x18), 0), // Yellow ColorEntry(QColor(0x18, 0x18, 0xB2), 0), // Blue ColorEntry(QColor(0xB2, 0x18, 0xB2), 0), // Magenta ColorEntry(QColor(0x18, 0xB2, 0xB2), 0), // Cyan ColorEntry(QColor(0xB2, 0xB2, 0xB2), 0), // White // intensive versions ColorEntry(QColor(0x00, 0x00, 0x00), 0), ColorEntry(QColor(0xFF, 0xFF, 0xFF), 1), ColorEntry(QColor(0x68, 0x68, 0x68), 0), ColorEntry(QColor(0xFF, 0x54, 0x54), 0), ColorEntry(QColor(0x54, 0xFF, 0x54), 0), ColorEntry(QColor(0xFF, 0xFF, 0x54), 0), ColorEntry(QColor(0x54, 0x54, 0xFF), 0), ColorEntry(QColor(0xFF, 0x54, 0xFF), 0), ColorEntry(QColor(0x54, 0xFF, 0xFF), 0), ColorEntry(QColor(0xFF, 0xFF, 0xFF), 0) }; const char* const ColorScheme::colorNames[TABLE_COLORS] = { "Foreground", "Background", "Color0", "Color1", "Color2", "Color3", "Color4", "Color5", "Color6", "Color7", "ForegroundIntense", "BackgroundIntense", "Color0Intense", "Color1Intense", "Color2Intense", "Color3Intense", "Color4Intense", "Color5Intense", "Color6Intense", "Color7Intense" }; const char* const ColorScheme::translatedColorNames[TABLE_COLORS] = { I18N_NOOP2("@item:intable palette", "Foreground"), I18N_NOOP2("@item:intable palette", "Background"), I18N_NOOP2("@item:intable palette", "Color 1"), I18N_NOOP2("@item:intable palette", "Color 2"), I18N_NOOP2("@item:intable palette", "Color 3"), I18N_NOOP2("@item:intable palette", "Color 4"), I18N_NOOP2("@item:intable palette", "Color 5"), I18N_NOOP2("@item:intable palette", "Color 6"), I18N_NOOP2("@item:intable palette", "Color 7"), I18N_NOOP2("@item:intable palette", "Color 8"), I18N_NOOP2("@item:intable palette", "Foreground (Intense)"), I18N_NOOP2("@item:intable palette", "Background (Intense)"), I18N_NOOP2("@item:intable palette", "Color 1 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 2 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 3 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 4 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 5 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 6 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 7 (Intense)"), I18N_NOOP2("@item:intable palette", "Color 8 (Intense)") }; QString ColorScheme::colorNameForIndex(int index) { Q_ASSERT(index >= 0 && index < TABLE_COLORS); return QString(colorNames[index]); } QString ColorScheme::translatedColorNameForIndex(int index) { Q_ASSERT(index >= 0 && index < TABLE_COLORS); return i18nc("@item:intable palette", translatedColorNames[index]); } ColorScheme::ColorScheme() { _table = 0; _randomTable = 0; _opacity = 1.0; setWallpaper(QString()); } ColorScheme::ColorScheme(const ColorScheme& other) : _table(0) , _randomTable(0) , _opacity(other._opacity) , _wallpaper(other._wallpaper) { setName(other.name()); setDescription(other.description()); if (other._table != 0) { for (int i = 0 ; i < TABLE_COLORS ; i++) setColorTableEntry(i, other._table[i]); } if (other._randomTable != 0) { for (int i = 0 ; i < TABLE_COLORS ; i++) { const RandomizationRange& range = other._randomTable[i]; setRandomizationRange(i, range.hue, range.saturation, range.value); } } } ColorScheme::~ColorScheme() { delete[] _table; delete[] _randomTable; } void ColorScheme::setDescription(const QString& description) { _description = description; } QString ColorScheme::description() const { return _description; } void ColorScheme::setName(const QString& name) { _name = name; } QString ColorScheme::name() const { return _name; } void ColorScheme::setColorTableEntry(int index , const ColorEntry& entry) { Q_ASSERT(index >= 0 && index < TABLE_COLORS); if (!_table) { _table = new ColorEntry[TABLE_COLORS]; for (int i = 0; i < TABLE_COLORS; i++) _table[i] = defaultTable[i]; } _table[index] = entry; } ColorEntry ColorScheme::colorEntry(int index , uint randomSeed) const { Q_ASSERT(index >= 0 && index < TABLE_COLORS); if (randomSeed != 0) qsrand(randomSeed); ColorEntry entry = colorTable()[index]; if (randomSeed != 0 && _randomTable != 0 && !_randomTable[index].isNull()) { const RandomizationRange& range = _randomTable[index]; int hueDifference = range.hue ? (qrand() % range.hue) - range.hue / 2 : 0; int saturationDifference = range.saturation ? (qrand() % range.saturation) - range.saturation / 2 : 0; int valueDifference = range.value ? (qrand() % range.value) - range.value / 2 : 0; QColor& color = entry.color; int newHue = qAbs((color.hue() + hueDifference) % MAX_HUE); int newValue = qMin(qAbs(color.value() + valueDifference) , 255); int newSaturation = qMin(qAbs(color.saturation() + saturationDifference) , 255); color.setHsv(newHue, newSaturation, newValue); } return entry; } void ColorScheme::getColorTable(ColorEntry* table , uint randomSeed) const { for (int i = 0 ; i < TABLE_COLORS ; i++) table[i] = colorEntry(i, randomSeed); } bool ColorScheme::randomizedBackgroundColor() const { return _randomTable == 0 ? false : !_randomTable[BGCOLOR_INDEX].isNull(); } void ColorScheme::setRandomizedBackgroundColor(bool randomize) { // the hue of the background color is allowed to be randomly // adjusted as much as possible. // // the value and saturation are left alone to maintain read-ability if (randomize) { setRandomizationRange(BGCOLOR_INDEX , MAX_HUE , 255 , 0); } else { if (_randomTable) setRandomizationRange(BGCOLOR_INDEX , 0 , 0 , 0); } } void ColorScheme::setRandomizationRange(int index , quint16 hue , quint8 saturation , quint8 value) { Q_ASSERT(hue <= MAX_HUE); Q_ASSERT(index >= 0 && index < TABLE_COLORS); if (_randomTable == 0) _randomTable = new RandomizationRange[TABLE_COLORS]; _randomTable[index].hue = hue; _randomTable[index].value = value; _randomTable[index].saturation = saturation; } const ColorEntry* ColorScheme::colorTable() const { if (_table) return _table; else return defaultTable; } QColor ColorScheme::foregroundColor() const { return colorTable()[FGCOLOR_INDEX].color; } QColor ColorScheme::backgroundColor() const { return colorTable()[BGCOLOR_INDEX].color; } bool ColorScheme::hasDarkBackground() const { // value can range from 0 - 255, with larger values indicating higher brightness. // so 127 is in the middle, anything less is deemed 'dark' return backgroundColor().value() < 127; } void ColorScheme::setOpacity(qreal opacity) { _opacity = opacity; } qreal ColorScheme::opacity() const { return _opacity; } void ColorScheme::read(const KConfig& config) { KConfigGroup configGroup = config.group("General"); const QString description = configGroup.readEntry("Description", I18N_NOOP("Un-named Color Scheme")); _description = i18n(description.toUtf8()); _opacity = configGroup.readEntry("Opacity", qreal(1.0)); setWallpaper(configGroup.readEntry("Wallpaper", QString())); for (int i = 0 ; i < TABLE_COLORS ; i++) { readColorEntry(config, i); } } void ColorScheme::readColorEntry(const KConfig& config , int index) { KConfigGroup configGroup = config.group(colorNameForIndex(index)); ColorEntry entry; entry.color = configGroup.readEntry("Color", QColor()); entry.transparent = configGroup.readEntry("Transparent", false); // Deprecated key from KDE 4.0 which set 'Bold' to true to force // a color to be bold or false to use the current format // // TODO - Add a new tri-state key which allows for bold, normal or // current format if (configGroup.hasKey("Bold")) entry.fontWeight = configGroup.readEntry("Bold", false) ? ColorEntry::Bold : ColorEntry::UseCurrentFormat; const quint16 hue = configGroup.readEntry("MaxRandomHue", 0); const quint8 value = configGroup.readEntry("MaxRandomValue", 0); const quint8 saturation = configGroup.readEntry("MaxRandomSaturation", 0); setColorTableEntry(index , entry); if (hue != 0 || value != 0 || saturation != 0) setRandomizationRange(index , hue , saturation , value); } void ColorScheme::write(KConfig& config) const { KConfigGroup configGroup = config.group("General"); configGroup.writeEntry("Description", _description); configGroup.writeEntry("Opacity", _opacity); configGroup.writeEntry("Wallpaper", _wallpaper->path()); for (int i = 0 ; i < TABLE_COLORS ; i++) { writeColorEntry(config, i); } } void ColorScheme::writeColorEntry(KConfig& config , int index) const { KConfigGroup configGroup = config.group(colorNameForIndex(index)); const ColorEntry& entry = colorTable()[index]; configGroup.writeEntry("Color", entry.color); configGroup.writeEntry("Transparency", (bool)entry.transparent); if (entry.fontWeight != ColorEntry::UseCurrentFormat) { configGroup.writeEntry("Bold", entry.fontWeight == ColorEntry::Bold); } RandomizationRange random = _randomTable != 0 ? _randomTable[index] : RandomizationRange(); // record randomization if this color has randomization or // if one of the keys already exists if (!random.isNull() || configGroup.hasKey("MaxRandomHue")) { configGroup.writeEntry("MaxRandomHue", (int)random.hue); configGroup.writeEntry("MaxRandomValue", (int)random.value); configGroup.writeEntry("MaxRandomSaturation", (int)random.saturation); } } void ColorScheme::setWallpaper(const QString& path) { _wallpaper.attach(new ColorSchemeWallpaper(path)); } ColorSchemeWallpaper::Ptr ColorScheme::wallpaper() const { return _wallpaper; } ColorSchemeWallpaper::ColorSchemeWallpaper(const QString& path) : _path(path), _picture(0) { } ColorSchemeWallpaper::~ColorSchemeWallpaper() { delete _picture; } void ColorSchemeWallpaper::load() { if (_path.isEmpty()) return; // Create and load original pixmap if (!_picture) _picture = new QPixmap(); if (_picture->isNull()) _picture->load(_path); } bool ColorSchemeWallpaper::isNull() const { return _path.isEmpty(); } bool ColorSchemeWallpaper::draw(QPainter& painter, const QRect& rect) { if (!_picture || _picture->isNull()) return false; painter.drawTiledPixmap(rect, *_picture, rect.topLeft()); return true; } QString ColorSchemeWallpaper::path() const { return _path; } // // Work In Progress - A color scheme for use on KDE setups for users // with visual disabilities which means that they may have trouble // reading text with the supplied color schemes. // // This color scheme uses only the 'safe' colors defined by the // KColorScheme class. // // A complication this introduces is that each color provided by // KColorScheme is defined as a 'background' or 'foreground' color. // Only foreground colors are allowed to be used to render text and // only background colors are allowed to be used for backgrounds. // // The ColorEntry and TerminalDisplay classes do not currently // support this restriction. // // Requirements: // - A color scheme which uses only colors from the KColorScheme class // - Ability to restrict which colors the TerminalDisplay widget // uses as foreground and background color // - Make use of KGlobalSettings::allowDefaultBackgroundImages() as // a hint to determine whether this accessible color scheme should // be used by default. // // // -- Robert Knight 21/07/2007 // AccessibleColorScheme::AccessibleColorScheme() : ColorScheme() { // basic attributes setName("accessible"); setDescription(i18n("Accessible Color Scheme")); // setup colors const int ColorRoleCount = 8; const KColorScheme colorScheme(QPalette::Active); QBrush colors[ColorRoleCount] = { colorScheme.foreground(colorScheme.NormalText), colorScheme.background(colorScheme.NormalBackground), colorScheme.foreground(colorScheme.InactiveText), colorScheme.foreground(colorScheme.ActiveText), colorScheme.foreground(colorScheme.LinkText), colorScheme.foreground(colorScheme.VisitedText), colorScheme.foreground(colorScheme.NegativeText), colorScheme.foreground(colorScheme.NeutralText) }; for (int i = 0 ; i < TABLE_COLORS ; i++) { ColorEntry entry; entry.color = colors[ i % ColorRoleCount ].color(); setColorTableEntry(i , entry); } } KDE3ColorSchemeReader::KDE3ColorSchemeReader(QIODevice* device) : _device(device) { } ColorScheme* KDE3ColorSchemeReader::read() { Q_ASSERT(_device->openMode() == QIODevice::ReadOnly || _device->openMode() == QIODevice::ReadWrite); ColorScheme* scheme = new ColorScheme(); QRegExp comment("#.*$"); while (!_device->atEnd()) { QString line(_device->readLine()); line.remove(comment); line = line.simplified(); if (line.isEmpty()) continue; if (line.startsWith(QLatin1String("color"))) { if (!readColorLine(line, scheme)) kWarning() << "Failed to read KDE 3 color scheme line" << line; } else if (line.startsWith(QLatin1String("title"))) { if (!readTitleLine(line, scheme)) kWarning() << "Failed to read KDE 3 color scheme title line" << line; } else { kWarning() << "KDE 3 color scheme contains an unsupported feature, '" << line << "'"; } } return scheme; } bool KDE3ColorSchemeReader::readColorLine(const QString& line, ColorScheme* scheme) { QStringList list = line.split(QChar(' ')); if (list.count() != 7) return false; if (list.first() != "color") return false; int index = list[1].toInt(); int red = list[2].toInt(); int green = list[3].toInt(); int blue = list[4].toInt(); int transparent = list[5].toInt(); int bold = list[6].toInt(); const int MAX_COLOR_VALUE = 255; if ((index < 0 || index >= TABLE_COLORS) || (red < 0 || red > MAX_COLOR_VALUE) || (blue < 0 || blue > MAX_COLOR_VALUE) || (green < 0 || green > MAX_COLOR_VALUE) || (transparent != 0 && transparent != 1) || (bold != 0 && bold != 1)) return false; ColorEntry entry; entry.color = QColor(red, green, blue); entry.transparent = (transparent != 0); entry.fontWeight = (bold != 0) ? ColorEntry::Bold : ColorEntry::UseCurrentFormat; scheme->setColorTableEntry(index, entry); return true; } bool KDE3ColorSchemeReader::readTitleLine(const QString& line, ColorScheme* scheme) { if (!line.startsWith(QLatin1String("title"))) return false; int spacePos = line.indexOf(' '); if (spacePos == -1) return false; QString description = line.mid(spacePos + 1); scheme->setDescription(i18n(description.toUtf8())); return true; } ColorSchemeManager::ColorSchemeManager() : _haveLoadedAll(false) { } ColorSchemeManager::~ColorSchemeManager() { QHashIterator iter(_colorSchemes); while (iter.hasNext()) { iter.next(); delete iter.value(); } } void ColorSchemeManager::loadAllColorSchemes() { int success = 0; int failed = 0; QList nativeColorSchemes = listColorSchemes(); foreach ( const QString& colorScheme, nativeColorSchemes) { if (loadColorScheme(colorScheme)) success++; else failed++; } QList kde3ColorSchemes = listKDE3ColorSchemes(); foreach ( const QString& colorScheme, kde3ColorSchemes) { if (loadKDE3ColorScheme(colorScheme)) success++; else failed++; } if (failed > 0) kWarning() << "failed to load " << failed << " color schemes."; _haveLoadedAll = true; } QList ColorSchemeManager::allColorSchemes() { if (!_haveLoadedAll) { loadAllColorSchemes(); } return _colorSchemes.values(); } bool ColorSchemeManager::loadKDE3ColorScheme(const QString& filePath) { QFile file(filePath); if (!filePath.endsWith(QLatin1String(".schema")) || !file.open(QIODevice::ReadOnly)) return false; KDE3ColorSchemeReader reader(&file); ColorScheme* scheme = reader.read(); scheme->setName(QFileInfo(file).baseName()); file.close(); if (scheme->name().isEmpty()) { kWarning() << "color scheme name is not valid."; delete scheme; return false; } QFileInfo info(filePath); if (!_colorSchemes.contains(info.baseName())) _colorSchemes.insert(scheme->name(), scheme); else { kWarning() << "color scheme with name" << scheme->name() << "has already been" << "found, ignoring."; delete scheme; } return true; } void ColorSchemeManager::addColorScheme(ColorScheme* scheme) { _colorSchemes.insert(scheme->name(), scheme); // save changes to disk QString path = KGlobal::dirs()->saveLocation("data", "konsole/") + scheme->name() + ".colorscheme"; KConfig config(path , KConfig::NoGlobals); scheme->write(config); } bool ColorSchemeManager::loadColorScheme(const QString& filePath) { if (!filePath.endsWith(QLatin1String(".colorscheme")) || !QFile::exists(filePath)) return false; QFileInfo info(filePath); KConfig config(filePath , KConfig::NoGlobals); ColorScheme* scheme = new ColorScheme(); scheme->setName(info.baseName()); scheme->read(config); if (scheme->name().isEmpty()) { kWarning() << "Color scheme in" << filePath << "does not have a valid name and was not loaded."; delete scheme; return false; } if (!_colorSchemes.contains(info.baseName())) { _colorSchemes.insert(scheme->name(), scheme); } else { kDebug() << "color scheme with name" << scheme->name() << "has already been" << "found, ignoring."; delete scheme; } return true; } QList ColorSchemeManager::listKDE3ColorSchemes() { return KGlobal::dirs()->findAllResources("data", "konsole/*.schema", KStandardDirs::NoDuplicates); } QList ColorSchemeManager::listColorSchemes() { return KGlobal::dirs()->findAllResources("data", "konsole/*.colorscheme", KStandardDirs::NoDuplicates); } const ColorScheme ColorSchemeManager::_defaultColorScheme; const ColorScheme* ColorSchemeManager::defaultColorScheme() const { return &_defaultColorScheme; } bool ColorSchemeManager::deleteColorScheme(const QString& name) { Q_ASSERT(_colorSchemes.contains(name)); // lookup the path and delete QString path = findColorSchemePath(name); if (QFile::remove(path)) { _colorSchemes.remove(name); return true; } else { kWarning() << "Failed to remove color scheme -" << path; return false; } } QString ColorSchemeManager::findColorSchemePath(const QString& name) const { QString path = KStandardDirs::locate("data", "konsole/" + name + ".colorscheme"); if (!path.isEmpty()) return path; path = KStandardDirs::locate("data", "konsole/" + name + ".schema"); return path; } const ColorScheme* ColorSchemeManager::findColorScheme(const QString& name) { if (name.isEmpty()) return defaultColorScheme(); if (_colorSchemes.contains(name)) return _colorSchemes[name]; else { // look for this color scheme QString path = findColorSchemePath(name); if (!path.isEmpty() && loadColorScheme(path)) { return findColorScheme(name); } else { if (!path.isEmpty() && loadKDE3ColorScheme(path)) return findColorScheme(name); } kWarning() << "Could not find color scheme - " << name; return 0; } } K_GLOBAL_STATIC(ColorSchemeManager , theColorSchemeManager) ColorSchemeManager* ColorSchemeManager::instance() { return theColorSchemeManager; }