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.
kile/src/kile/kilelogwidget.h

68 lines
2.0 KiB

/***************************************************************************
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 <ktextedit.h>
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