#ifndef _LOGVIEWWINDOW_H_ #define _LOGVIEWWINDOW_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) // Copyright (C) 2011 Elvio Basello (hellvis69 at gmail dot com) // Copyright (C) 2014 OmegaPhil (OmegaPhil at startmail dot 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. // // 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 "LogFile.h" #include "kvi_settings.h" #include "KviWindow.h" #include "KviModuleExtension.h" #include "KviTalVBox.h" #include "KviPointerList.h" #include #include #include class KviLogViewWidget; class LogListViewItem; class LogListViewItemFolder; class QProgressBar; #include class QLineEdit; class QDateEdit; class QTabWidget; class QCheckBox; class LogViewListView : public QTreeWidget { Q_OBJECT public: LogViewListView(QWidget *); ~LogViewListView() {}; protected: void mousePressEvent(QMouseEvent * pEvent) override; signals: void rightButtonPressed(QTreeWidgetItem *, QPoint); }; class LogViewWindow : public KviWindow { Q_OBJECT public: LogViewWindow(); ~LogViewWindow(); protected: std::vector> m_logList; std::vector>::const_iterator m_currentLog; 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; 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 = nullptr; LogListViewItemFolder * m_pLastGroupItem = nullptr; QString m_szLastGroup; bool m_bAborted = false; QTimer * m_pTimer; QMenu * m_pExportLogPopup; protected: void exportLog(LogFile::ExportType exportType); void recurseDirectory(const QString & szDir); void setupItemList(); QPixmap * myIconPtr() override; void resizeEvent(QResizeEvent * pEvent) override; void keyPressEvent(QKeyEvent * pEvent) override; void fillCaptionBuffers() override; virtual void die(); QSize sizeHint() const override; protected slots: void rightButtonClicked(QTreeWidgetItem *, const QPoint &); void itemSelected(QTreeWidgetItem * pItem, QTreeWidgetItem *); void deleteCurrent(); void applyFilter(); void abortFilter(); void cacheFileList(); void filterNext(); void exportLog(QAction * pAction); }; #endif //_LOGVIEWWINDOW_H_