blob: 6b071cf4dcc5fa98526d1c71d54e5d9bed7246a8 (
plain)
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
|
/***************************************************************************
messagelog.h - Kommander dialog output
-------------------
copyright : (C) 2004 Michal Rudolf <mrudolf@kdewebdwev.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 MESSAGELOG_H
#define MESSAGELOG_H
#include <qtabwidget.h>
#include <klocale.h>
class KListBox;
class KProcess;
class KPopupMenu;
class QListBoxItem;
class MessageLog : public QTabWidget
{
Q_OBJECT
public:
enum InfoType {Stdout, Stderr, All};
MessageLog(QWidget* parent = 0, const char* name = 0);
~MessageLog();
virtual void insertItem(InfoType i, QString text);
virtual void clear(InfoType i = All);
QString content();
public slots:
void receivedStdout(KProcess *proc, char *buffer, int buflen);
void receivedStderr(KProcess *proc, char *buffer, int buflen);
void clearContent();
void copyLine();
void copyContent();
void saveToFile();
void showMenu(QListBoxItem*, const QPoint& l_point);
private:
static const int m_listCount = 2;
static QString m_listNames[m_listCount];
KListBox* m_lists[m_listCount];
bool m_seenEOL[m_listCount];
KPopupMenu* m_popupMenu;
};
#endif
|