You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.9 KiB
112 lines
3.9 KiB
15 years ago
|
/* -*- c++ -*-
|
||
|
csshelper.h
|
||
|
|
||
|
This file is part of KMail, the KDE mail client.
|
||
|
Copyright (c) 2003 Marc Mutz <mutz@kde.org>
|
||
|
|
||
|
KMail is free software; you can redistribute it and/or modify it
|
||
|
under the terms of the GNU General Public License, version 2, as
|
||
|
published by the Free Software Foundation.
|
||
|
|
||
|
KMail 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
|
||
|
|
||
|
In addition, as a special exception, the copyright holders give
|
||
|
permission to link the code of this program with any edition of
|
||
14 years ago
|
the TQt library by Trolltech AS, Norway (or with modified versions
|
||
|
of TQt that use the same license as TQt), and distribute linked
|
||
15 years ago
|
combinations including the two. You must obey the GNU General
|
||
|
Public License in all respects for all of the code used other than
|
||
14 years ago
|
TQt. If you modify this file, you may extend this exception to
|
||
15 years ago
|
your version of the file, but you are not obligated to do so. If
|
||
|
you do not wish to do so, delete this exception statement from
|
||
|
your version.
|
||
|
*/
|
||
|
|
||
|
#ifndef KPIM_CSSHELPER_H
|
||
|
#define KPIM_CSSHELPER_H
|
||
|
|
||
14 years ago
|
#include <tqcolor.h>
|
||
|
#include <tqfont.h>
|
||
|
#include <tqpaintdevicemetrics.h>
|
||
15 years ago
|
|
||
14 years ago
|
class TQString;
|
||
15 years ago
|
|
||
|
namespace KPIM {
|
||
|
|
||
|
class CSSHelper {
|
||
|
public:
|
||
|
/** Construct a CSSHelper object and set its font and color settings to
|
||
|
default values.
|
||
|
Sub-Classes should put their config loading here.
|
||
|
*/
|
||
14 years ago
|
CSSHelper( const TQPaintDeviceMetrics &pdm );
|
||
15 years ago
|
|
||
|
/** @return HTML head including style sheet definitions and the
|
||
|
>body< tag */
|
||
14 years ago
|
TQString htmlHead( bool fixedFont = false ) const;
|
||
15 years ago
|
|
||
|
/** @return The collected CSS definitions as a string */
|
||
14 years ago
|
TQString cssDefinitions( bool fixedFont = false ) const;
|
||
15 years ago
|
|
||
|
/** @return a <div> start tag with embedded style
|
||
|
information suitable for quoted text with quote level @p level */
|
||
14 years ago
|
TQString quoteFontTag( int level ) const;
|
||
15 years ago
|
/** @return a <div> start tag with embedded style
|
||
|
information suitable for non-quoted text */
|
||
14 years ago
|
TQString nonQuotedFontTag() const;
|
||
15 years ago
|
|
||
14 years ago
|
TQFont bodyFont( bool fixedFont = false, bool printing = false ) const;
|
||
15 years ago
|
|
||
14 years ago
|
void setBodyFont( const TQFont& font );
|
||
|
void setPrintFont( const TQFont& font );
|
||
15 years ago
|
|
||
14 years ago
|
TQColor pgpWarnColor() const;
|
||
|
|
||
15 years ago
|
protected:
|
||
|
/** Recalculate PGP frame and body colors (should be called after changing
|
||
|
color settings) */
|
||
|
void recalculatePGPColors();
|
||
|
|
||
|
protected:
|
||
14 years ago
|
TQFont mBodyFont, mPrintFont, mFixedFont, mFixedPrintFont;
|
||
|
TQFont mQuoteFont[3];
|
||
|
TQColor mQuoteColor[3];
|
||
15 years ago
|
bool mRecycleQuoteColors;
|
||
|
bool mBackingPixmapOn;
|
||
|
bool mShrinkQuotes;
|
||
14 years ago
|
TQString mBackingPixmapStr;
|
||
|
TQColor mForegroundColor, mLinkColor, mVisitedLinkColor, mBackgroundColor;
|
||
15 years ago
|
// colors for PGP (Frame, Header, Body)
|
||
14 years ago
|
TQColor cPgpOk1F, cPgpOk1H, cPgpOk1B,
|
||
15 years ago
|
cPgpOk0F, cPgpOk0H, cPgpOk0B,
|
||
|
cPgpWarnF, cPgpWarnH, cPgpWarnB,
|
||
|
cPgpErrF, cPgpErrH, cPgpErrB,
|
||
|
cPgpEncrF, cPgpEncrH, cPgpEncrB;
|
||
|
// color of frame of warning preceding the source of HTML messages
|
||
14 years ago
|
TQColor cHtmlWarning;
|
||
15 years ago
|
|
||
|
private:
|
||
|
int fontSize( bool fixed, bool print = false ) const;
|
||
|
// returns CSS rules specific to the print media type
|
||
14 years ago
|
TQString printCssDefinitions( bool fixed ) const;
|
||
15 years ago
|
// returns CSS rules specific to the screen media type
|
||
14 years ago
|
TQString screenCssDefinitions( const CSSHelper * helper, bool fixed ) const;
|
||
15 years ago
|
// returns CSS rules common to both screen and print media types
|
||
14 years ago
|
TQString commonCssDefinitions() const;
|
||
15 years ago
|
|
||
|
private:
|
||
14 years ago
|
const TQPaintDeviceMetrics mMetrics;
|
||
15 years ago
|
|
||
|
};
|
||
|
|
||
|
} // namespace KPIM
|
||
|
|
||
|
#endif // KPIM_CSSHELPER_H
|