xref: /glogg/src/mainwindow.h (revision f688be2ee6ce5760483290349a6e6227ac185220)
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"
33431d01deSNicolas Bonnefon #ifdef GLOGG_SUPPORTS_VERSION_CHECKING
34431d01deSNicolas Bonnefon #include "versionchecker.h"
35431d01deSNicolas Bonnefon #endif
36bb02e0acSNicolas Bonnefon 
37bb02e0acSNicolas Bonnefon class QAction;
38d96f3f21SNicolas Bonnefon class Session;
39bb02e0acSNicolas Bonnefon class RecentFiles;
40bb02e0acSNicolas Bonnefon class MenuActionToolTipBehavior;
4109aff35dSNicolas Bonnefon class ExternalCommunicator;
42bb02e0acSNicolas Bonnefon 
43bb02e0acSNicolas Bonnefon // Main window of the application, creates menus, toolbar and
44bb02e0acSNicolas Bonnefon // the CrawlerWidget
45bb02e0acSNicolas Bonnefon class MainWindow : public QMainWindow
46bb02e0acSNicolas Bonnefon {
47bb02e0acSNicolas Bonnefon     Q_OBJECT
48bb02e0acSNicolas Bonnefon 
49bb02e0acSNicolas Bonnefon   public:
50d96f3f21SNicolas Bonnefon     // Constructor
51d96f3f21SNicolas Bonnefon     // The ownership of the session is transferred to us
5209aff35dSNicolas Bonnefon     MainWindow( std::unique_ptr<Session> session,
5309aff35dSNicolas Bonnefon             std::shared_ptr<ExternalCommunicator> external_communicator );
54bb02e0acSNicolas Bonnefon 
558964a9adSNicolas Bonnefon     // Re-load the files from the previous session
568964a9adSNicolas Bonnefon     void reloadSession();
57bb02e0acSNicolas Bonnefon     // Loads the initial file (parameter passed or from config file)
58bb02e0acSNicolas Bonnefon     void loadInitialFile( QString fileName );
598a9275b2SNicolas Bonnefon     // Starts the lower priority activities the MW controls such as
608a9275b2SNicolas Bonnefon     // version checking etc...
618a9275b2SNicolas Bonnefon     void startBackgroundTasks();
62bb02e0acSNicolas Bonnefon 
63bb02e0acSNicolas Bonnefon   protected:
64bb02e0acSNicolas Bonnefon     void closeEvent( QCloseEvent* event );
65bb02e0acSNicolas Bonnefon     // Drag and drop support
66bb02e0acSNicolas Bonnefon     void dragEnterEvent( QDragEnterEvent* event );
67bb02e0acSNicolas Bonnefon     void dropEvent( QDropEvent* event );
688570d8d2SNicolas Bonnefon     void keyPressEvent( QKeyEvent* keyEvent );
69bb02e0acSNicolas Bonnefon 
70bb02e0acSNicolas Bonnefon   private slots:
71bb02e0acSNicolas Bonnefon     void open();
72bb02e0acSNicolas Bonnefon     void openRecentFile();
7363dc3514SGustav Andersson     void closeTab();
7463dc3514SGustav Andersson     void closeAll();
75bb02e0acSNicolas Bonnefon     void selectAll();
76bb02e0acSNicolas Bonnefon     void copy();
77bb02e0acSNicolas Bonnefon     void find();
78bb02e0acSNicolas Bonnefon     void filters();
79bb02e0acSNicolas Bonnefon     void options();
80bb02e0acSNicolas Bonnefon     void about();
81bb02e0acSNicolas Bonnefon     void aboutQt();
82bb02e0acSNicolas Bonnefon 
83bb02e0acSNicolas Bonnefon     // Change the view settings
84bb02e0acSNicolas Bonnefon     void toggleOverviewVisibility( bool isVisible );
85bb02e0acSNicolas Bonnefon     void toggleMainLineNumbersVisibility( bool isVisible );
86bb02e0acSNicolas Bonnefon     void toggleFilteredLineNumbersVisibility( bool isVisible );
87bb02e0acSNicolas Bonnefon 
88bb02e0acSNicolas Bonnefon     // Disable the follow mode checkbox and send the followSet signal down
89bb02e0acSNicolas Bonnefon     void disableFollow();
90bb02e0acSNicolas Bonnefon 
91bb02e0acSNicolas Bonnefon     // Update the line number displayed in the status bar.
92bb02e0acSNicolas Bonnefon     // Must be passed as the internal (starts at 0) line number.
93bb02e0acSNicolas Bonnefon     void lineNumberHandler( int line );
94bb02e0acSNicolas Bonnefon 
95bb02e0acSNicolas Bonnefon     // Instructs the widget to update the loading progress gauge
96bb02e0acSNicolas Bonnefon     void updateLoadingProgress( int progress );
97bb02e0acSNicolas Bonnefon     // Instructs the widget to display the 'normal' status bar,
98bb02e0acSNicolas Bonnefon     // without the progress gauge and with file info
99812146a8SNicolas Bonnefon     // or an error recovery when loading is finished
100812146a8SNicolas Bonnefon     void handleLoadingFinished( LoadingStatus status );
101bb02e0acSNicolas Bonnefon 
102*f688be2eSNicolas Bonnefon     // Save the new state as default setting when a crawler
103*f688be2eSNicolas Bonnefon     // is changing their view options.
104*f688be2eSNicolas Bonnefon     void handleSearchRefreshChanged( int state );
105*f688be2eSNicolas Bonnefon     void handleIgnoreCaseChanged( int state );
106*f688be2eSNicolas Bonnefon 
107cdd89779SNicolas Bonnefon     // Close the tab with the passed index
108cdd89779SNicolas Bonnefon     void closeTab( int index );
109ee835f33SNicolas Bonnefon     // Setup the tab with current index for view
110ee835f33SNicolas Bonnefon     void currentTabChanged( int index );
111bb02e0acSNicolas Bonnefon 
1128570d8d2SNicolas Bonnefon     // Instructs the widget to change the pattern in the QuickFind widget
1138570d8d2SNicolas Bonnefon     // and confirm it.
1148570d8d2SNicolas Bonnefon     void changeQFPattern( const QString& newPattern );
1158570d8d2SNicolas Bonnefon 
11609aff35dSNicolas Bonnefon     // Load a file in a new tab (non-interactive)
11709aff35dSNicolas Bonnefon     // (for use from e.g. IPC)
11809aff35dSNicolas Bonnefon     void loadFileNonInteractive( const QString& file_name );
11909aff35dSNicolas Bonnefon 
120460de700SNicolas Bonnefon     // Notify the user a new version is available
121460de700SNicolas Bonnefon     void newVersionNotification( const QString& new_version );
122460de700SNicolas Bonnefon 
123bb02e0acSNicolas Bonnefon   signals:
124bb02e0acSNicolas Bonnefon     // Is emitted when new settings must be used
125bb02e0acSNicolas Bonnefon     void optionsChanged();
126bb02e0acSNicolas Bonnefon     // Is emitted when the 'follow' option is enabled/disabled
127bb02e0acSNicolas Bonnefon     void followSet( bool checked );
1288570d8d2SNicolas Bonnefon     // Is emitted before the QuickFind box is activated,
1298570d8d2SNicolas Bonnefon     // to allow crawlers to get search in the right view.
1308570d8d2SNicolas Bonnefon     void enteringQuickFind();
1318570d8d2SNicolas Bonnefon     // Emitted when the quickfind bar is closed.
1328570d8d2SNicolas Bonnefon     void exitingQuickFind();
133bb02e0acSNicolas Bonnefon 
134bb02e0acSNicolas Bonnefon   private:
135bb02e0acSNicolas Bonnefon     void createActions();
136bb02e0acSNicolas Bonnefon     void createMenus();
137bb02e0acSNicolas Bonnefon     void createContextMenu();
138bb02e0acSNicolas Bonnefon     void createToolBars();
139bb02e0acSNicolas Bonnefon     void createStatusBar();
140bb02e0acSNicolas Bonnefon     void createRecentFileToolTipTimer();
141bb02e0acSNicolas Bonnefon     void readSettings();
142bb02e0acSNicolas Bonnefon     void writeSettings();
143bb02e0acSNicolas Bonnefon     bool loadFile( const QString& fileName );
1440e97f16dSNicolas Bonnefon     void updateTitleBar( const QString& file_name );
145bb02e0acSNicolas Bonnefon     void updateRecentFileActions();
146bb02e0acSNicolas Bonnefon     QString strippedName( const QString& fullFileName ) const;
14727ddfd3aSNicolas Bonnefon     CrawlerWidget* currentCrawlerWidget() const;
148b423cd88SNicolas Bonnefon     void displayQuickFindBar( QuickFindMux::QFDirection direction );
149bb02e0acSNicolas Bonnefon 
150d96f3f21SNicolas Bonnefon     std::unique_ptr<Session> session_;
15109aff35dSNicolas Bonnefon     std::shared_ptr<ExternalCommunicator> externalCommunicator_;
15211582726SNicolas Bonnefon     std::shared_ptr<RecentFiles> recentFiles_;
153bb02e0acSNicolas Bonnefon     QString loadingFileName;
154bb02e0acSNicolas Bonnefon 
155bb02e0acSNicolas Bonnefon     enum { MaxRecentFiles = 5 };
156bb02e0acSNicolas Bonnefon     QAction *recentFileActions[MaxRecentFiles];
157bb02e0acSNicolas Bonnefon     MenuActionToolTipBehavior *recentFileActionBehaviors[MaxRecentFiles];
158bb02e0acSNicolas Bonnefon     QAction *separatorAction;
159bb02e0acSNicolas Bonnefon 
160bb02e0acSNicolas Bonnefon     QMenu *fileMenu;
161bb02e0acSNicolas Bonnefon     QMenu *editMenu;
162bb02e0acSNicolas Bonnefon     QMenu *viewMenu;
163bb02e0acSNicolas Bonnefon     QMenu *toolsMenu;
164bb02e0acSNicolas Bonnefon     QMenu *helpMenu;
165bb02e0acSNicolas Bonnefon 
166bb02e0acSNicolas Bonnefon     InfoLine *infoLine;
167bb02e0acSNicolas Bonnefon     QLabel* lineNbField;
168bb02e0acSNicolas Bonnefon     QToolBar *toolBar;
169bb02e0acSNicolas Bonnefon 
170bb02e0acSNicolas Bonnefon     QAction *openAction;
17163dc3514SGustav Andersson     QAction *closeAction;
17263dc3514SGustav Andersson     QAction *closeAllAction;
173bb02e0acSNicolas Bonnefon     QAction *exitAction;
174bb02e0acSNicolas Bonnefon     QAction *copyAction;
175bb02e0acSNicolas Bonnefon     QAction *selectAllAction;
176bb02e0acSNicolas Bonnefon     QAction *findAction;
177bb02e0acSNicolas Bonnefon     QAction *overviewVisibleAction;
178bb02e0acSNicolas Bonnefon     QAction *lineNumbersVisibleInMainAction;
179bb02e0acSNicolas Bonnefon     QAction *lineNumbersVisibleInFilteredAction;
180bb02e0acSNicolas Bonnefon     QAction *followAction;
181bb02e0acSNicolas Bonnefon     QAction *reloadAction;
182bb02e0acSNicolas Bonnefon     QAction *stopAction;
183bb02e0acSNicolas Bonnefon     QAction *filtersAction;
184bb02e0acSNicolas Bonnefon     QAction *optionsAction;
185bb02e0acSNicolas Bonnefon     QAction *aboutAction;
186bb02e0acSNicolas Bonnefon     QAction *aboutQtAction;
187bb02e0acSNicolas Bonnefon 
188bb02e0acSNicolas Bonnefon     QIcon mainIcon_;
189313a820fSNicolas Bonnefon 
190313a820fSNicolas Bonnefon     // Multiplex signals to any of the CrawlerWidgets
191313a820fSNicolas Bonnefon     SignalMux signalMux_;
19227ddfd3aSNicolas Bonnefon 
193b423cd88SNicolas Bonnefon     // QuickFind widget
194b423cd88SNicolas Bonnefon     QuickFindWidget quickFindWidget_;
195b423cd88SNicolas Bonnefon 
196b423cd88SNicolas Bonnefon     // Multiplex signals to/from the QuickFindWidget
197b423cd88SNicolas Bonnefon     QuickFindMux quickFindMux_;
198b423cd88SNicolas Bonnefon 
19927ddfd3aSNicolas Bonnefon     // The main widget
200093a1bf6SNicolas Bonnefon     TabbedCrawlerWidget mainTabWidget_;
201431d01deSNicolas Bonnefon 
202431d01deSNicolas Bonnefon     // Version checker
203431d01deSNicolas Bonnefon #ifdef GLOGG_SUPPORTS_VERSION_CHECKING
204431d01deSNicolas Bonnefon     VersionChecker versionChecker_;
205431d01deSNicolas Bonnefon #endif
206bb02e0acSNicolas Bonnefon };
207bb02e0acSNicolas Bonnefon 
208bb02e0acSNicolas Bonnefon #endif
209