helper.h
00001 /* 00002 * This file is part of the CSS implementation for KDE. 00003 * 00004 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public License 00017 * along with this library; see the file COPYING.LIB. If not, write to 00018 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00019 * Boston, MA 02111-1307, USA. 00020 * 00021 * $Id: helper.h,v 1.13 2002/10/27 17:13:23 mueller Exp $ 00022 */ 00023 #ifndef html_helper_h 00024 #define html_helper_h 00025 00026 #include <qcolor.h> 00027 class QPainter; 00028 #include <qfontmetrics.h> 00029 #include <qfont.h> 00030 00031 namespace khtml 00032 { 00033 const QRgb transparentColor = 0x00000000; 00034 const QRgb invalidColor = 0x00000001; 00035 const QRgb invertedColor = 0x00000002; 00036 const QRgb defaultTextColor = 0x00000003; 00037 00038 QRgb parseColor(QString name, bool strictParsing); 00039 00040 extern QPainter *printpainter; 00041 void setPrintPainter( QPainter *printer ); 00042 00043 //enumerator for findSelectionNode 00044 enum FindSelectionResult { SelectionPointBefore, 00045 SelectionPointAfter, 00046 SelectionPointInside, 00047 // the next two are only used inside one line in RenderText 00048 // to get BiDi contexts right. 00049 SelectionPointBeforeInLine, 00050 SelectionPointAfterInLine }; 00051 }; 00052 00053 #endif