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.
47 lines
1.5 KiB
47 lines
1.5 KiB
/*************************************************************************** |
|
* Copyright (C) 2005 by Piotr Szymanski <niedakh@gmail.com> * |
|
* * |
|
* 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 LOGWINDOW_H |
|
#define LOGWINDOW_H |
|
|
|
// TODO |
|
// #include <qgs.h> |
|
// |
|
// #include <kvbox.h> |
|
// #include <qtimer.h> |
|
// |
|
// class QTreeWidget; |
|
// class KTreeWidgetSearchLine; |
|
// // |
|
// class GSLogWindow : public KVBox |
|
// { |
|
// Q_OBJECT |
|
// |
|
// public: |
|
// GSLogWindow( QWidget* parent = 0 ); |
|
// |
|
// public slots: |
|
// void append( GSInterpreterLib::MessageType t, const char* buf, int num ); |
|
// void appendBuffered() { m_lastInt=0; m_clearTimer.stop(); append(m_buffer.first,m_buffer.second); }; |
|
// void append( GSInterpreterLib::MessageType t, const QString &text); |
|
// void clear(); |
|
// bool event( QEvent * event ); |
|
// |
|
// private: |
|
// QTreeWidget* m_msgList; |
|
// KTreeWidgetSearchLine* m_searchLine; |
|
// QPair <GSInterpreterLib::MessageType, QString> m_buffer; |
|
// int m_tCol; |
|
// int m_lastInt; |
|
// QTimer m_clearTimer; |
|
// }; |
|
|
|
#endif |
|
|
|
// vim:sw=4:sts=4:ts=8:sta:tw=78:noet
|
|
|