view libgui/qterminal/libqterminal/win32/QTerminalColors.cpp @ 17795:0a8c35ae5ce1

maint: Fix various problems with GPL copyright statements. * libgui/qterminal/libqterminal/QTerminal.cc, libgui/qterminal/libqterminal/QTerminal.h, libgui/qterminal/libqterminal/win32/QTerminalColors.cpp, libgui/qterminal/libqterminal/win32/QTerminalColors.h, libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp, libgui/qterminal/libqterminal/win32/QWinTerminalImpl.h: Replace "Foobar" with "This program" in GPL statement. * scripts/linear-algebra/linsolve.m: Replace "This program" with "Octave" in * GPL statement. * scripts/miscellaneous/getappdata.m, scripts/miscellaneous/isappdata.m, scripts/miscellaneous/rmappdata.m, scripts/miscellaneous/setappdata.m: Add "This file is part of Octave" line. Replace "This program" with "Octave" in GPL statement. Update GPL version to 3. * scripts/plot/util/copyobj.m, scripts/plot/util/hdl2struct.m, scripts/plot/util/struct2hdl.m, scripts/polynomial/ppder.m, scripts/polynomial/ppint.m, scripts/polynomial/ppjumps.m, scripts/sparse/bicg.m, scripts/strings/untabify.m: Replace "This program" with "Octave" in GPL statement.
author Rik <rik@octave.org>
date Tue, 29 Oct 2013 12:31:57 -0700
parents d63878346099
children bac0d6f07a3e
line wrap: on
line source

/*

Copyright (C) 2011, 2013 Michael Goffioul.

This file is part of QConsole.

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/>.

*/

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#include "QTerminalColors.h"

//////////////////////////////////////////////////////////////////////////////

QConsoleColors::QConsoleColors (void)
    : QMap<int, QColor> ()
{
  (*this)[0]  = Qt::black;
  (*this)[1]  = Qt::darkBlue;
  (*this)[2]  = Qt::darkGreen;
  (*this)[3]  = Qt::darkCyan;
  (*this)[4]  = Qt::darkRed;
  (*this)[5]  = Qt::darkMagenta;
  (*this)[6]  = Qt::darkYellow;
  (*this)[7]  = Qt::lightGray;
  (*this)[8]  = Qt::darkGray;
  (*this)[9]  = Qt::blue;
  (*this)[10] = Qt::green;
  (*this)[11] = Qt::cyan;
  (*this)[12] = Qt::red;
  (*this)[13] = Qt::magenta;
  (*this)[14] = Qt::yellow;
  (*this)[15] = Qt::white;
}