xref: /glogg/src/mainwindow.h (revision 313a820ff17bfd02bca88e04703027110d330191) !
1bb02e0acSNicolas Bonnefon /*
2bb02e0acSNicolas Bonnefon  * Copyright (C) 2009, 2010, 2011, 2013 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"
29*313a820fSNicolas Bonnefon #include "signalmux.h"
30bb02e0acSNicolas Bonnefon 
31bb02e0acSNicolas Bonnefon class QAction;
32d96f3f21SNicolas Bonnefon class Session;
33bb02e0acSNicolas Bonnefon class RecentFiles;
34bb02e0acSNicolas Bonnefon class MenuActionToolTipBehavior;
35bb02e0acSNicolas Bonnefon 
36bb02e0acSNicolas Bonnefon // Main window of the application, creates menus, toolbar and
37bb02e0acSNicolas Bonnefon // the CrawlerWidget
38bb02e0acSNicolas Bonnefon class MainWindow : public QMainWindow
39bb02e0acSNicolas Bonnefon {
40bb02e0acSNicolas Bonnefon     Q_OBJECT
41bb02e0acSNicolas Bonnefon 
42bb02e0acSNicolas Bonnefon   public:
43d96f3f21SNicolas Bonnefon     // Constructor
44d96f3f21SNicolas Bonnefon     // The ownership of the session is transferred to us
45d96f3f21SNicolas Bonnefon     MainWindow( std::unique_ptr<Session> session );
46bb02e0acSNicolas Bonnefon 
47bb02e0acSNicolas Bonnefon     // Loads the initial file (parameter passed or from config file)
48bb02e0acSNicolas Bonnefon     void loadInitialFile( QString fileName );
49bb02e0acSNicolas Bonnefon 
50bb02e0acSNicolas Bonnefon   protected:
51bb02e0acSNicolas Bonnefon     void closeEvent( QCloseEvent* event );
52bb02e0acSNicolas Bonnefon     // Drag and drop support
53bb02e0acSNicolas Bonnefon     void dragEnterEvent( QDragEnterEvent* event );
54bb02e0acSNicolas Bonnefon     void dropEvent( QDropEvent* event );
55bb02e0acSNicolas Bonnefon 
56bb02e0acSNicolas Bonnefon   private slots:
57bb02e0acSNicolas Bonnefon     void open();
58bb02e0acSNicolas Bonnefon     void openRecentFile();
59bb02e0acSNicolas Bonnefon     void selectAll();
60bb02e0acSNicolas Bonnefon     void copy();
61bb02e0acSNicolas Bonnefon     void find();
62bb02e0acSNicolas Bonnefon     void reload();
63bb02e0acSNicolas Bonnefon     void stop();
64bb02e0acSNicolas Bonnefon     void filters();
65bb02e0acSNicolas Bonnefon     void options();
66bb02e0acSNicolas Bonnefon     void about();
67bb02e0acSNicolas Bonnefon     void aboutQt();
68bb02e0acSNicolas Bonnefon 
69bb02e0acSNicolas Bonnefon     // Change the view settings
70bb02e0acSNicolas Bonnefon     void toggleOverviewVisibility( bool isVisible );
71bb02e0acSNicolas Bonnefon     void toggleMainLineNumbersVisibility( bool isVisible );
72bb02e0acSNicolas Bonnefon     void toggleFilteredLineNumbersVisibility( bool isVisible );
73bb02e0acSNicolas Bonnefon 
74bb02e0acSNicolas Bonnefon     // Disable the follow mode checkbox and send the followSet signal down
75bb02e0acSNicolas Bonnefon     void disableFollow();
76bb02e0acSNicolas Bonnefon 
77bb02e0acSNicolas Bonnefon     // Update the line number displayed in the status bar.
78bb02e0acSNicolas Bonnefon     // Must be passed as the internal (starts at 0) line number.
79bb02e0acSNicolas Bonnefon     void lineNumberHandler( int line );
80bb02e0acSNicolas Bonnefon 
81bb02e0acSNicolas Bonnefon     // Instructs the widget to update the loading progress gauge
82bb02e0acSNicolas Bonnefon     void updateLoadingProgress( int progress );
83bb02e0acSNicolas Bonnefon     // Instructs the widget to display the 'normal' status bar,
84bb02e0acSNicolas Bonnefon     // without the progress gauge and with file info
85bb02e0acSNicolas Bonnefon     void displayNormalStatus( bool success );
86bb02e0acSNicolas Bonnefon 
87bb02e0acSNicolas Bonnefon 
88bb02e0acSNicolas Bonnefon   signals:
89bb02e0acSNicolas Bonnefon     // Is emitted when new settings must be used
90bb02e0acSNicolas Bonnefon     void optionsChanged();
91bb02e0acSNicolas Bonnefon     // Is emitted when the 'follow' option is enabled/disabled
92bb02e0acSNicolas Bonnefon     void followSet( bool checked );
93bb02e0acSNicolas Bonnefon 
94bb02e0acSNicolas Bonnefon   private:
95bb02e0acSNicolas Bonnefon     void createActions();
96bb02e0acSNicolas Bonnefon     void createMenus();
97bb02e0acSNicolas Bonnefon     void createContextMenu();
98bb02e0acSNicolas Bonnefon     void createToolBars();
99bb02e0acSNicolas Bonnefon     void createStatusBar();
100bb02e0acSNicolas Bonnefon     void createRecentFileToolTipTimer();
101bb02e0acSNicolas Bonnefon     void readSettings();
102bb02e0acSNicolas Bonnefon     void writeSettings();
103bb02e0acSNicolas Bonnefon     bool loadFile( const QString& fileName );
104bb02e0acSNicolas Bonnefon     void setCurrentFile( const QString& fileName );
105bb02e0acSNicolas Bonnefon     void updateRecentFileActions();
106bb02e0acSNicolas Bonnefon     QString strippedName( const QString& fullFileName ) const;
107bb02e0acSNicolas Bonnefon 
108d96f3f21SNicolas Bonnefon     std::unique_ptr<Session> session_;
109bb02e0acSNicolas Bonnefon     SavedSearches *savedSearches;
110bb02e0acSNicolas Bonnefon     CrawlerWidget *crawlerWidget;
111bb02e0acSNicolas Bonnefon     RecentFiles& recentFiles;
112bb02e0acSNicolas Bonnefon     QString loadingFileName;
113bb02e0acSNicolas Bonnefon     QString currentFile;
114bb02e0acSNicolas Bonnefon     QString previousFile;
115bb02e0acSNicolas Bonnefon 
116bb02e0acSNicolas Bonnefon     enum { MaxRecentFiles = 5 };
117bb02e0acSNicolas Bonnefon     QAction *recentFileActions[MaxRecentFiles];
118bb02e0acSNicolas Bonnefon     MenuActionToolTipBehavior *recentFileActionBehaviors[MaxRecentFiles];
119bb02e0acSNicolas Bonnefon     QAction *separatorAction;
120bb02e0acSNicolas Bonnefon 
121bb02e0acSNicolas Bonnefon     QMenu *fileMenu;
122bb02e0acSNicolas Bonnefon     QMenu *editMenu;
123bb02e0acSNicolas Bonnefon     QMenu *viewMenu;
124bb02e0acSNicolas Bonnefon     QMenu *toolsMenu;
125bb02e0acSNicolas Bonnefon     QMenu *helpMenu;
126bb02e0acSNicolas Bonnefon 
127bb02e0acSNicolas Bonnefon     InfoLine *infoLine;
128bb02e0acSNicolas Bonnefon     QLabel* lineNbField;
129bb02e0acSNicolas Bonnefon     QToolBar *toolBar;
130bb02e0acSNicolas Bonnefon 
131bb02e0acSNicolas Bonnefon     QAction *openAction;
132bb02e0acSNicolas Bonnefon     QAction *exitAction;
133bb02e0acSNicolas Bonnefon     QAction *copyAction;
134bb02e0acSNicolas Bonnefon     QAction *selectAllAction;
135bb02e0acSNicolas Bonnefon     QAction *findAction;
136bb02e0acSNicolas Bonnefon     QAction *overviewVisibleAction;
137bb02e0acSNicolas Bonnefon     QAction *lineNumbersVisibleInMainAction;
138bb02e0acSNicolas Bonnefon     QAction *lineNumbersVisibleInFilteredAction;
139bb02e0acSNicolas Bonnefon     QAction *followAction;
140bb02e0acSNicolas Bonnefon     QAction *reloadAction;
141bb02e0acSNicolas Bonnefon     QAction *stopAction;
142bb02e0acSNicolas Bonnefon     QAction *filtersAction;
143bb02e0acSNicolas Bonnefon     QAction *optionsAction;
144bb02e0acSNicolas Bonnefon     QAction *aboutAction;
145bb02e0acSNicolas Bonnefon     QAction *aboutQtAction;
146bb02e0acSNicolas Bonnefon 
147bb02e0acSNicolas Bonnefon     QIcon mainIcon_;
148*313a820fSNicolas Bonnefon 
149*313a820fSNicolas Bonnefon     // Multiplex signals to any of the CrawlerWidgets
150*313a820fSNicolas Bonnefon     SignalMux signalMux_;
151bb02e0acSNicolas Bonnefon };
152bb02e0acSNicolas Bonnefon 
153bb02e0acSNicolas Bonnefon #endif
154