| 
    8class TQMimeSourceFactory;    10template <class  T> class TQValueList;    22    void printNote( const  TQString& name,    23                    const TQString& content ) const ;    25    void printNotes( const  TQValueList<KCal::Journal*>& journals ) const ;    27    void setFont( const  TQFont& font );    30    void setColorGroup( const  TQColorGroup& colorGroup );    31    TQColorGroup colorGroup() const ;    33    void setStyleSheet( TQStyleSheet* styleSheet );    34    TQStyleSheet* styleSheet() const ;    36    void setContext( const  TQString& context );    37    TQString context() const ;    39    void setMimeSourceFactory( TQMimeSourceFactory* factory );    40    TQMimeSourceFactory* mimeSourceFactory() const ;    43    void doPrint( KPrinter& printer, TQPainter& painter,    44                  const TQString& content ) const ;    46    TQColorGroup m_colorGroup;    48    TQStyleSheet* m_styleSheet;    49    TQMimeSourceFactory* m_mimeSourceFactory; 
          
         |