1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/***************************************************************************
* Copyright (C) 2003-2005 by David Saxton *
* david@bluehaze.org *
* *
* 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 LOGVIEW_H
#define LOGVIEW_H
class KTechlab;
#include <ktextedit.h>
#include <tqmap.h>
namespace KateMDI { class ToolView; }
class MessageInfo
{
public:
MessageInfo();
MessageInfo( TQString fileURL, int fileLine );
TQString fileURL() const { return m_fileURL; }
int fileLine() const { return m_fileLine; }
protected:
TQString m_fileURL;
int m_fileLine;
};
typedef TQMap<int,MessageInfo> MessageInfoMap;
/**
Base class for logviews (eg GpasmInterface) which output information, warnings, errors to a viewable log
@short Dockable logview
@author David Saxton
*/
class LogView : public KTextEdit
{
Q_OBJECT
public:
LogView( KateMDI::ToolView * parent, const char *name = 0 );
~LogView();
enum OutputType
{
ot_important, // Bold
ot_info, // Italic
ot_message, // Plain
ot_warning, // Grey
ot_error // Red
};
signals:
/**
* Emitted when the user clicks on a paragraph in the log view
*/
void paraClicked( const TQString &text, MessageInfo messageInfo );
public slots:
virtual void clear();
void addOutput( TQString text, OutputType outputType, MessageInfo messageInfo = MessageInfo() );
protected:
virtual TQPopupMenu * createPopupMenu( const TQPoint & pos );
/**
* Replaces "&" with &, "<" with <, etc
*/
void tidyText( TQString &t );
/**
* Replaces "<" with "<", "&" with "&", etc
*/
void untidyText( TQString &t );
MessageInfoMap m_messageInfoMap;
private slots:
void slotParaClicked( int para, int pos );
};
#endif
|