/*************************************************************************** begin : Sat Dec 20 2003 copyright : (C) 2003 by Jeroen Wijnhout email : Jeroen.Wijnhout@kdemail.net ***************************************************************************/ /*************************************************************************** * * * 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. * * * ****************************************************************************/ #ifndef KILEWIDGET_LOGMSG_H #define KILEWIDGET_LOGMSG_H #include class TQString; class TQPopupMenu; class TQPoint; class KileInfo; class KURL; namespace KileWidget { class LogMsg : public KTextEdit { TQ_OBJECT public: LogMsg(KileInfo *info, TQWidget *parent, const char *name=0); ~LogMsg(); void setReadOnly(bool r) { TQTextEdit::setReadOnly(r); } //we don't want the greyed background public slots: void highlight(); //FIXME for compatibility, should remove it asap void highlight(uint l, int direction = 1); void highlightByIndex(int index, int size, int direction = 1); void printMsg(int type, const TQString & message, const TQString &tool = "Kile" ); void printProblem(int type, const TQString & problem); void slotClicked(int, int); signals: void fileOpen(const KURL &, const TQString &); void setLine(const TQString &); void showingErrorMessage(TQWidget *); protected: TQPopupMenu* createPopupMenu (const TQPoint & pos); protected slots: void handlePopup(int); private: KileInfo *m_info; int m_idWarning, m_idBadBox; }; } #endif