1bb02e0acSNicolas Bonnefon /* 2093a1bf6SNicolas Bonnefon * Copyright (C) 2009, 2010, 2011, 2013, 2014 Nicolas Bonnefon and other contributors 3bb02e0acSNicolas Bonnefon * 4bb02e0acSNicolas Bonnefon * This file is part of glogg. 5bb02e0acSNicolas Bonnefon * 6bb02e0acSNicolas Bonnefon * glogg is free software: you can redistribute it and/or modify 7bb02e0acSNicolas Bonnefon * it under the terms of the GNU General Public License as published by 8bb02e0acSNicolas Bonnefon * the Free Software Foundation, either version 3 of the License, or 9bb02e0acSNicolas Bonnefon * (at your option) any later version. 10bb02e0acSNicolas Bonnefon * 11bb02e0acSNicolas Bonnefon * glogg is distributed in the hope that it will be useful, 12bb02e0acSNicolas Bonnefon * but WITHOUT ANY WARRANTY; without even the implied warranty of 13bb02e0acSNicolas Bonnefon * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14bb02e0acSNicolas Bonnefon * GNU General Public License for more details. 15bb02e0acSNicolas Bonnefon * 16bb02e0acSNicolas Bonnefon * You should have received a copy of the GNU General Public License 17bb02e0acSNicolas Bonnefon * along with glogg. If not, see <http://www.gnu.org/licenses/>. 18bb02e0acSNicolas Bonnefon */ 19bb02e0acSNicolas Bonnefon 20bb02e0acSNicolas Bonnefon #ifndef MAINWINDOW_H 21bb02e0acSNicolas Bonnefon #define MAINWINDOW_H 22bb02e0acSNicolas Bonnefon 23d96f3f21SNicolas Bonnefon #include <memory> 24bb02e0acSNicolas Bonnefon #include <QMainWindow> 25d96f3f21SNicolas Bonnefon 26d96f3f21SNicolas Bonnefon #include "session.h" 27bb02e0acSNicolas Bonnefon #include "crawlerwidget.h" 28bb02e0acSNicolas Bonnefon #include "infoline.h" 29313a820fSNicolas Bonnefon #include "signalmux.h" 30093a1bf6SNicolas Bonnefon #include "tabbedcrawlerwidget.h" 31b423cd88SNicolas Bonnefon #include "quickfindwidget.h" 32b423cd88SNicolas Bonnefon #include "quickfindmux.h" 33bb02e0acSNicolas Bonnefon 34bb02e0acSNicolas Bonnefon class QAction; 35d96f3f21SNicolas Bonnefon class Session; 36bb02e0acSNicolas Bonnefon class RecentFiles; 37bb02e0acSNicolas Bonnefon class MenuActionToolTipBehavior; 38bb02e0acSNicolas Bonnefon 39bb02e0acSNicolas Bonnefon // Main window of the application, creates menus, toolbar and 40bb02e0acSNicolas Bonnefon // the CrawlerWidget 41bb02e0acSNicolas Bonnefon class MainWindow : public QMainWindow 42bb02e0acSNicolas Bonnefon { 43bb02e0acSNicolas Bonnefon Q_OBJECT 44bb02e0acSNicolas Bonnefon 45bb02e0acSNicolas Bonnefon public: 46d96f3f21SNicolas Bonnefon // Constructor 47d96f3f21SNicolas Bonnefon // The ownership of the session is transferred to us 48d96f3f21SNicolas Bonnefon MainWindow( std::unique_ptr<Session> session ); 49bb02e0acSNicolas Bonnefon 50bb02e0acSNicolas Bonnefon // Loads the initial file (parameter passed or from config file) 51bb02e0acSNicolas Bonnefon void loadInitialFile( QString fileName ); 52bb02e0acSNicolas Bonnefon 53bb02e0acSNicolas Bonnefon protected: 54bb02e0acSNicolas Bonnefon void closeEvent( QCloseEvent* event ); 55bb02e0acSNicolas Bonnefon // Drag and drop support 56bb02e0acSNicolas Bonnefon void dragEnterEvent( QDragEnterEvent* event ); 57bb02e0acSNicolas Bonnefon void dropEvent( QDropEvent* event ); 58*8570d8d2SNicolas Bonnefon void keyPressEvent( QKeyEvent* keyEvent ); 59bb02e0acSNicolas Bonnefon 60bb02e0acSNicolas Bonnefon private slots: 61bb02e0acSNicolas Bonnefon void open(); 62bb02e0acSNicolas Bonnefon void openRecentFile(); 63bb02e0acSNicolas Bonnefon void selectAll(); 64bb02e0acSNicolas Bonnefon void copy(); 65bb02e0acSNicolas Bonnefon void find(); 66bb02e0acSNicolas Bonnefon void filters(); 67bb02e0acSNicolas Bonnefon void options(); 68bb02e0acSNicolas Bonnefon void about(); 69bb02e0acSNicolas Bonnefon void aboutQt(); 70bb02e0acSNicolas Bonnefon 71bb02e0acSNicolas Bonnefon // Change the view settings 72bb02e0acSNicolas Bonnefon void toggleOverviewVisibility( bool isVisible ); 73bb02e0acSNicolas Bonnefon void toggleMainLineNumbersVisibility( bool isVisible ); 74bb02e0acSNicolas Bonnefon void toggleFilteredLineNumbersVisibility( bool isVisible ); 75bb02e0acSNicolas Bonnefon 76bb02e0acSNicolas Bonnefon // Disable the follow mode checkbox and send the followSet signal down 77bb02e0acSNicolas Bonnefon void disableFollow(); 78bb02e0acSNicolas Bonnefon 79bb02e0acSNicolas Bonnefon // Update the line number displayed in the status bar. 80bb02e0acSNicolas Bonnefon // Must be passed as the internal (starts at 0) line number. 81bb02e0acSNicolas Bonnefon void lineNumberHandler( int line ); 82bb02e0acSNicolas Bonnefon 83bb02e0acSNicolas Bonnefon // Instructs the widget to update the loading progress gauge 84bb02e0acSNicolas Bonnefon void updateLoadingProgress( int progress ); 85bb02e0acSNicolas Bonnefon // Instructs the widget to display the 'normal' status bar, 86bb02e0acSNicolas Bonnefon // without the progress gauge and with file info 87bb02e0acSNicolas Bonnefon void displayNormalStatus( bool success ); 88bb02e0acSNicolas Bonnefon 89cdd89779SNicolas Bonnefon // Close the tab with the passed index 90cdd89779SNicolas Bonnefon void closeTab( int index ); 91bb02e0acSNicolas Bonnefon 92*8570d8d2SNicolas Bonnefon // Instructs the widget to change the pattern in the QuickFind widget 93*8570d8d2SNicolas Bonnefon // and confirm it. 94*8570d8d2SNicolas Bonnefon void changeQFPattern( const QString& newPattern ); 95*8570d8d2SNicolas Bonnefon 96bb02e0acSNicolas Bonnefon signals: 97bb02e0acSNicolas Bonnefon // Is emitted when new settings must be used 98bb02e0acSNicolas Bonnefon void optionsChanged(); 99bb02e0acSNicolas Bonnefon // Is emitted when the 'follow' option is enabled/disabled 100bb02e0acSNicolas Bonnefon void followSet( bool checked ); 101*8570d8d2SNicolas Bonnefon // Is emitted before the QuickFind box is activated, 102*8570d8d2SNicolas Bonnefon // to allow crawlers to get search in the right view. 103*8570d8d2SNicolas Bonnefon void enteringQuickFind(); 104*8570d8d2SNicolas Bonnefon // Emitted when the quickfind bar is closed. 105*8570d8d2SNicolas Bonnefon void exitingQuickFind(); 106bb02e0acSNicolas Bonnefon 107bb02e0acSNicolas Bonnefon private: 108bb02e0acSNicolas Bonnefon void createActions(); 109bb02e0acSNicolas Bonnefon void createMenus(); 110bb02e0acSNicolas Bonnefon void createContextMenu(); 111bb02e0acSNicolas Bonnefon void createToolBars(); 112bb02e0acSNicolas Bonnefon void createStatusBar(); 113bb02e0acSNicolas Bonnefon void createRecentFileToolTipTimer(); 114bb02e0acSNicolas Bonnefon void readSettings(); 115bb02e0acSNicolas Bonnefon void writeSettings(); 116bb02e0acSNicolas Bonnefon bool loadFile( const QString& fileName ); 117bb02e0acSNicolas Bonnefon void setCurrentFile( const QString& fileName ); 118bb02e0acSNicolas Bonnefon void updateRecentFileActions(); 119bb02e0acSNicolas Bonnefon QString strippedName( const QString& fullFileName ) const; 12027ddfd3aSNicolas Bonnefon CrawlerWidget* currentCrawlerWidget() const; 121b423cd88SNicolas Bonnefon void displayQuickFindBar( QuickFindMux::QFDirection direction ); 122bb02e0acSNicolas Bonnefon 123d96f3f21SNicolas Bonnefon std::unique_ptr<Session> session_; 124bb02e0acSNicolas Bonnefon RecentFiles& recentFiles; 125bb02e0acSNicolas Bonnefon QString loadingFileName; 126bb02e0acSNicolas Bonnefon QString currentFile; 127bb02e0acSNicolas Bonnefon QString previousFile; 128bb02e0acSNicolas Bonnefon 129bb02e0acSNicolas Bonnefon enum { MaxRecentFiles = 5 }; 130bb02e0acSNicolas Bonnefon QAction *recentFileActions[MaxRecentFiles]; 131bb02e0acSNicolas Bonnefon MenuActionToolTipBehavior *recentFileActionBehaviors[MaxRecentFiles]; 132bb02e0acSNicolas Bonnefon QAction *separatorAction; 133bb02e0acSNicolas Bonnefon 134bb02e0acSNicolas Bonnefon QMenu *fileMenu; 135bb02e0acSNicolas Bonnefon QMenu *editMenu; 136bb02e0acSNicolas Bonnefon QMenu *viewMenu; 137bb02e0acSNicolas Bonnefon QMenu *toolsMenu; 138bb02e0acSNicolas Bonnefon QMenu *helpMenu; 139bb02e0acSNicolas Bonnefon 140bb02e0acSNicolas Bonnefon InfoLine *infoLine; 141bb02e0acSNicolas Bonnefon QLabel* lineNbField; 142bb02e0acSNicolas Bonnefon QToolBar *toolBar; 143bb02e0acSNicolas Bonnefon 144bb02e0acSNicolas Bonnefon QAction *openAction; 145bb02e0acSNicolas Bonnefon QAction *exitAction; 146bb02e0acSNicolas Bonnefon QAction *copyAction; 147bb02e0acSNicolas Bonnefon QAction *selectAllAction; 148bb02e0acSNicolas Bonnefon QAction *findAction; 149bb02e0acSNicolas Bonnefon QAction *overviewVisibleAction; 150bb02e0acSNicolas Bonnefon QAction *lineNumbersVisibleInMainAction; 151bb02e0acSNicolas Bonnefon QAction *lineNumbersVisibleInFilteredAction; 152bb02e0acSNicolas Bonnefon QAction *followAction; 153bb02e0acSNicolas Bonnefon QAction *reloadAction; 154bb02e0acSNicolas Bonnefon QAction *stopAction; 155bb02e0acSNicolas Bonnefon QAction *filtersAction; 156bb02e0acSNicolas Bonnefon QAction *optionsAction; 157bb02e0acSNicolas Bonnefon QAction *aboutAction; 158bb02e0acSNicolas Bonnefon QAction *aboutQtAction; 159bb02e0acSNicolas Bonnefon 160bb02e0acSNicolas Bonnefon QIcon mainIcon_; 161313a820fSNicolas Bonnefon 162313a820fSNicolas Bonnefon // Multiplex signals to any of the CrawlerWidgets 163313a820fSNicolas Bonnefon SignalMux signalMux_; 16427ddfd3aSNicolas Bonnefon 165b423cd88SNicolas Bonnefon // QuickFind widget 166b423cd88SNicolas Bonnefon QuickFindWidget quickFindWidget_; 167b423cd88SNicolas Bonnefon 168b423cd88SNicolas Bonnefon // Multiplex signals to/from the QuickFindWidget 169b423cd88SNicolas Bonnefon QuickFindMux quickFindMux_; 170b423cd88SNicolas Bonnefon 17127ddfd3aSNicolas Bonnefon // The main widget 172093a1bf6SNicolas Bonnefon TabbedCrawlerWidget mainTabWidget_; 173bb02e0acSNicolas Bonnefon }; 174bb02e0acSNicolas Bonnefon 175bb02e0acSNicolas Bonnefon #endif 176