aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/logview/LogViewWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/logview/LogViewWindow.h')
-rw-r--r--src/modules/logview/LogViewWindow.h153
1 files changed, 153 insertions, 0 deletions
diff --git a/src/modules/logview/LogViewWindow.h b/src/modules/logview/LogViewWindow.h
new file mode 100644
index 000000000..34cf55e6b
--- /dev/null
+++ b/src/modules/logview/LogViewWindow.h
@@ -0,0 +1,153 @@
+#ifndef _LOGVIEWMDIWINDOW_H_
+#define _LOGVIEWMDIWINDOW_H_
+//=============================================================================
+//
+// File : LogViewWindow.h
+// Creation date : Tue Apr 23 2002 18:05:59 by Juanjo Alvarez
+//
+// This file is part of the KVIrc irc client distribution
+// Copyright (C) 2002 Juanjo Alvarez
+// Copyright (C) 2002-2010 Szymon Stefanek (pragma at kvirc dot 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 opinion) any later version.
+//
+// This program is distributed in the HOPE that it will be USEFUL,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, write to the Free Software Foundation,
+// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//
+//=============================================================================
+
+#include "kvi_settings.h"
+#include "KviWindow.h"
+#include "KviModuleExtension.h"
+#include "KviTalVBox.h"
+#include <QTreeWidget>
+#include "KviPointerList.h"
+
+#include <QTabWidget>
+#include <QDateTime>
+#include <QCheckBox>
+
+class QProgressBar;
+class QStringList;
+class QLineEdit;
+class QDateEdit;
+class KviLogViewWidget;
+class LogListViewItem;
+class LogListViewItemFolder;
+
+class LogFile {
+
+public:
+
+ enum KviLogTypes {
+ Channel,
+ Console,
+ Query,
+ DccChat,
+ Other
+ };
+
+ LogFile(const QString& name);
+
+ const QString & fileName() const { return m_szFilename; };
+ const QString & name() const { return m_szName; };
+ const QString & network() const { return m_szNetwork; };
+ const QDate & date() const { return m_date; };
+
+ void getText(QString & text,const QString& logDir);
+
+ KviLogTypes type() const { return m_type; };
+private:
+ KviLogTypes m_type;
+ QString m_szFilename;
+ bool m_bCompressed;
+ QString m_szName;
+ QString m_szNetwork;
+ QDate m_date;
+};
+
+class LogViewListView : public QTreeWidget
+{
+ Q_OBJECT
+public:
+ LogViewListView(QWidget*);
+ ~LogViewListView(){};
+protected:
+ void mousePressEvent (QMouseEvent *e);
+signals:
+ void rightButtonPressed(QTreeWidgetItem *,QPoint);
+};
+
+class LogViewWindow : public KviWindow, public KviModuleExtension
+{
+ Q_OBJECT
+public:
+ LogViewWindow(KviModuleExtensionDescriptor * d,KviMainWindow * lpFrm);
+ ~LogViewWindow();
+protected:
+ KviPointerList<LogFile> m_logList;
+
+ LogViewListView * m_pListView;
+
+ // Type filter
+ QCheckBox * m_pShowChannelsCheck;
+ QCheckBox * m_pShowQueryesCheck;
+ QCheckBox * m_pShowConsolesCheck;
+ QCheckBox * m_pShowOtherCheck;
+ QCheckBox * m_pShowDccChatCheck;
+
+ // Content filter
+ QLineEdit * m_pFileNameMask;
+ QLineEdit * m_pContentsMask;
+
+ // Date/time mask
+ QCheckBox * m_pEnableFromFilter;
+ QCheckBox * m_pEnableToFilter;
+ QDateEdit * m_pFromDateEdit;
+ QDateEdit * m_pToDateEdit;
+
+ QStringList * m_pFileNames;
+ QString m_szLogDirectory;
+ QTabWidget * m_pTabWidget;
+ KviTalVBox * m_pIndexTab;
+ KviTalVBox * m_pLeftLayout;
+ QWidget * m_pSearchTab;
+ QPushButton * m_pFilterButton;
+ QPushButton * m_pCancelButton;
+ KviTalHBox * m_pBottomLayout;
+ QProgressBar * m_pProgressBar;
+ LogListViewItem * m_pLastCategory;
+ LogListViewItemFolder *m_pLastGroupItem;
+ QString m_szLastGroup;
+ bool m_bAborted;
+ QTimer * m_pTimer;
+protected:
+ QStringList getFileNames();
+
+ void setupItemList();
+ virtual QPixmap * myIconPtr();
+ virtual void resizeEvent(QResizeEvent *e);
+ virtual void keyPressEvent(QKeyEvent *e);
+ virtual void fillCaptionBuffers();
+ virtual void die();
+ virtual QSize sizeHint() const;
+protected slots:
+ void rightButtonClicked ( QTreeWidgetItem *, const QPoint &);
+ void itemSelected(QTreeWidgetItem * it, QTreeWidgetItem *);
+ void deleteCurrent();
+ void applyFilter();
+ void abortFilter();
+ void cacheFileList();
+ void filterNext();
+};
+
+#endif //_LOGVIEWMDIWINDOW_H_