xref: /glogg/src/mainwindow.cpp (revision 78dc04253ce6b69a62a983780957fad8541c0d84)
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 // This file implements MainWindow. It is responsible for creating and
21bb02e0acSNicolas Bonnefon // managing the menus, the toolbar, and the CrawlerWidget. It also
22bb02e0acSNicolas Bonnefon // load/save the settings on opening/closing of the app
23bb02e0acSNicolas Bonnefon 
24bb02e0acSNicolas Bonnefon #include <iostream>
251b5e406eSNicolas Bonnefon #include <cassert>
26eb6a8f99SNicolas Bonnefon 
27eb6a8f99SNicolas Bonnefon #include <QAction>
28eb6a8f99SNicolas Bonnefon #include <QDesktopWidget>
29eb6a8f99SNicolas Bonnefon #include <QMenuBar>
30eb6a8f99SNicolas Bonnefon #include <QToolBar>
31eb6a8f99SNicolas Bonnefon #include <QFileInfo>
32eb6a8f99SNicolas Bonnefon #include <QFileDialog>
33eb6a8f99SNicolas Bonnefon #include <QClipboard>
34eb6a8f99SNicolas Bonnefon #include <QMessageBox>
35eb6a8f99SNicolas Bonnefon #include <QCloseEvent>
36eb6a8f99SNicolas Bonnefon #include <QDragEnterEvent>
37eb6a8f99SNicolas Bonnefon #include <QMimeData>
38eb6a8f99SNicolas Bonnefon #include <QUrl>
39bb02e0acSNicolas Bonnefon 
40bb02e0acSNicolas Bonnefon #include "log.h"
41bb02e0acSNicolas Bonnefon 
42bb02e0acSNicolas Bonnefon #include "mainwindow.h"
43bb02e0acSNicolas Bonnefon 
44bb02e0acSNicolas Bonnefon #include "sessioninfo.h"
45bb02e0acSNicolas Bonnefon #include "recentfiles.h"
46bb02e0acSNicolas Bonnefon #include "crawlerwidget.h"
47bb02e0acSNicolas Bonnefon #include "filtersdialog.h"
48bb02e0acSNicolas Bonnefon #include "optionsdialog.h"
49bb02e0acSNicolas Bonnefon #include "persistentinfo.h"
50bb02e0acSNicolas Bonnefon #include "menuactiontooltipbehavior.h"
51093a1bf6SNicolas Bonnefon #include "tabbedcrawlerwidget.h"
5209aff35dSNicolas Bonnefon #include "externalcom.h"
53bb02e0acSNicolas Bonnefon 
540a90ca6aSNicolas Bonnefon // Returns the size in human readable format
550a90ca6aSNicolas Bonnefon static QString readableSize( qint64 size );
560a90ca6aSNicolas Bonnefon 
5709aff35dSNicolas Bonnefon MainWindow::MainWindow( std::unique_ptr<Session> session,
5809aff35dSNicolas Bonnefon         std::shared_ptr<ExternalCommunicator> external_communicator ) :
59d96f3f21SNicolas Bonnefon     session_( std::move( session )  ),
6009aff35dSNicolas Bonnefon     externalCommunicator_( external_communicator ),
6111582726SNicolas Bonnefon     recentFiles_( Persistent<RecentFiles>( "recentFiles" ) ),
62313a820fSNicolas Bonnefon     mainIcon_(),
6327ddfd3aSNicolas Bonnefon     signalMux_(),
64b423cd88SNicolas Bonnefon     quickFindMux_( session_->getQuickFindPattern() ),
65093a1bf6SNicolas Bonnefon     mainTabWidget_()
66431d01deSNicolas Bonnefon #ifdef GLOGG_SUPPORTS_VERSION_CHECKING
67431d01deSNicolas Bonnefon     ,versionChecker_()
68431d01deSNicolas Bonnefon #endif
69bb02e0acSNicolas Bonnefon {
70bb02e0acSNicolas Bonnefon     createActions();
71bb02e0acSNicolas Bonnefon     createMenus();
72bb02e0acSNicolas Bonnefon     createToolBars();
73bb02e0acSNicolas Bonnefon     // createStatusBar();
74bb02e0acSNicolas Bonnefon 
75bb02e0acSNicolas Bonnefon     setAcceptDrops( true );
76bb02e0acSNicolas Bonnefon 
77bb02e0acSNicolas Bonnefon     // Default geometry
78bb02e0acSNicolas Bonnefon     const QRect geometry = QApplication::desktop()->availableGeometry( this );
79bb02e0acSNicolas Bonnefon     setGeometry( geometry.x() + 20, geometry.y() + 40,
80bb02e0acSNicolas Bonnefon             geometry.width() - 140, geometry.height() - 140 );
81bb02e0acSNicolas Bonnefon 
82bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/16x16/glogg.png" );
83bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/24x24/glogg.png" );
84bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/32x32/glogg.png" );
85bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/48x48/glogg.png" );
86bb02e0acSNicolas Bonnefon 
87bb02e0acSNicolas Bonnefon     setWindowIcon( mainIcon_ );
88f0708ca8SNicolas Bonnefon 
890a90ca6aSNicolas Bonnefon     readSettings();
900a90ca6aSNicolas Bonnefon 
9127ddfd3aSNicolas Bonnefon     // Connect the signals to the mux (they will be forwarded to the
9227ddfd3aSNicolas Bonnefon     // "current" crawlerwidget
9327ddfd3aSNicolas Bonnefon 
9427ddfd3aSNicolas Bonnefon     // Send actions to the crawlerwidget
9527ddfd3aSNicolas Bonnefon     signalMux_.connect( this, SIGNAL( followSet( bool ) ),
9627ddfd3aSNicolas Bonnefon             SIGNAL( followSet( bool ) ) );
9727ddfd3aSNicolas Bonnefon     signalMux_.connect( this, SIGNAL( optionsChanged() ),
9827ddfd3aSNicolas Bonnefon             SLOT( applyConfiguration() ) );
998570d8d2SNicolas Bonnefon     signalMux_.connect( this, SIGNAL( enteringQuickFind() ),
1008570d8d2SNicolas Bonnefon             SLOT( enteringQuickFind() ) );
1018570d8d2SNicolas Bonnefon     signalMux_.connect( &quickFindWidget_, SIGNAL( close() ),
1028570d8d2SNicolas Bonnefon             SLOT( exitingQuickFind() ) );
10327ddfd3aSNicolas Bonnefon 
10427ddfd3aSNicolas Bonnefon     // Actions from the CrawlerWidget
105b297d2f4SNicolas Bonnefon     signalMux_.connect( SIGNAL( followModeChanged( bool ) ),
106b297d2f4SNicolas Bonnefon             this, SLOT( changeFollowMode( bool ) ) );
10727ddfd3aSNicolas Bonnefon     signalMux_.connect( SIGNAL( updateLineNumber( int ) ),
10827ddfd3aSNicolas Bonnefon             this, SLOT( lineNumberHandler( int ) ) );
10927ddfd3aSNicolas Bonnefon 
11027ddfd3aSNicolas Bonnefon     // Register for progress status bar
11127ddfd3aSNicolas Bonnefon     signalMux_.connect( SIGNAL( loadingProgressed( int ) ),
11227ddfd3aSNicolas Bonnefon             this, SLOT( updateLoadingProgress( int ) ) );
113812146a8SNicolas Bonnefon     signalMux_.connect( SIGNAL( loadingFinished( LoadingStatus ) ),
114812146a8SNicolas Bonnefon             this, SLOT( handleLoadingFinished( LoadingStatus ) ) );
11527ddfd3aSNicolas Bonnefon 
116f688be2eSNicolas Bonnefon     // Register for checkbox changes
117f688be2eSNicolas Bonnefon     signalMux_.connect( SIGNAL( searchRefreshChanged( int ) ),
118f688be2eSNicolas Bonnefon             this, SLOT( handleSearchRefreshChanged( int ) ) );
119f688be2eSNicolas Bonnefon     signalMux_.connect( SIGNAL( ignoreCaseChanged( int ) ),
120f688be2eSNicolas Bonnefon             this, SLOT( handleIgnoreCaseChanged( int ) ) );
121f688be2eSNicolas Bonnefon 
122cdd89779SNicolas Bonnefon     // Configure the main tabbed widget
123093a1bf6SNicolas Bonnefon     mainTabWidget_.setDocumentMode( true );
124cdd89779SNicolas Bonnefon     mainTabWidget_.setMovable( true );
125093a1bf6SNicolas Bonnefon     //mainTabWidget_.setTabShape( QTabWidget::Triangular );
126cdd89779SNicolas Bonnefon     mainTabWidget_.setTabsClosable( true );
127cdd89779SNicolas Bonnefon 
128cdd89779SNicolas Bonnefon     connect( &mainTabWidget_, SIGNAL( tabCloseRequested( int ) ),
129cdd89779SNicolas Bonnefon             this, SLOT( closeTab( int ) ) );
130ee835f33SNicolas Bonnefon     connect( &mainTabWidget_, SIGNAL( currentChanged( int ) ),
131ee835f33SNicolas Bonnefon             this, SLOT( currentTabChanged( int ) ) );
132b423cd88SNicolas Bonnefon 
133b423cd88SNicolas Bonnefon     // Establish the QuickFindWidget and mux ( to send requests from the
134b423cd88SNicolas Bonnefon     // QFWidget to the right window )
135b423cd88SNicolas Bonnefon     connect( &quickFindWidget_, SIGNAL( patternConfirmed( const QString&, bool ) ),
136b423cd88SNicolas Bonnefon              &quickFindMux_, SLOT( confirmPattern( const QString&, bool ) ) );
137b423cd88SNicolas Bonnefon     connect( &quickFindWidget_, SIGNAL( patternUpdated( const QString&, bool ) ),
138b423cd88SNicolas Bonnefon              &quickFindMux_, SLOT( setNewPattern( const QString&, bool ) ) );
139b423cd88SNicolas Bonnefon     connect( &quickFindWidget_, SIGNAL( cancelSearch() ),
140b423cd88SNicolas Bonnefon              &quickFindMux_, SLOT( cancelSearch() ) );
141b423cd88SNicolas Bonnefon     connect( &quickFindWidget_, SIGNAL( searchForward() ),
142b423cd88SNicolas Bonnefon              &quickFindMux_, SLOT( searchForward() ) );
143b423cd88SNicolas Bonnefon     connect( &quickFindWidget_, SIGNAL( searchBackward() ),
144b423cd88SNicolas Bonnefon              &quickFindMux_, SLOT( searchBackward() ) );
145b423cd88SNicolas Bonnefon     connect( &quickFindWidget_, SIGNAL( searchNext() ),
146b423cd88SNicolas Bonnefon              &quickFindMux_, SLOT( searchNext() ) );
147b423cd88SNicolas Bonnefon 
148b423cd88SNicolas Bonnefon     // QuickFind changes coming from the views
1498570d8d2SNicolas Bonnefon     connect( &quickFindMux_, SIGNAL( patternChanged( const QString& ) ),
150b423cd88SNicolas Bonnefon              this, SLOT( changeQFPattern( const QString& ) ) );
151b423cd88SNicolas Bonnefon     connect( &quickFindMux_, SIGNAL( notify( const QFNotification& ) ),
152b423cd88SNicolas Bonnefon              &quickFindWidget_, SLOT( notify( const QFNotification& ) ) );
153b423cd88SNicolas Bonnefon     connect( &quickFindMux_, SIGNAL( clearNotification() ),
154b423cd88SNicolas Bonnefon              &quickFindWidget_, SLOT( clearNotification() ) );
155b423cd88SNicolas Bonnefon 
15609aff35dSNicolas Bonnefon     // Actions from external instances
15709aff35dSNicolas Bonnefon     connect( externalCommunicator_.get(), SIGNAL( loadFile( const QString& ) ),
15809aff35dSNicolas Bonnefon              this, SLOT( loadFileNonInteractive( const QString& ) ) );
15909aff35dSNicolas Bonnefon 
160f109b95bSNicolas Bonnefon #ifdef GLOGG_SUPPORTS_VERSION_CHECKING
161460de700SNicolas Bonnefon     // Version checker notification
162460de700SNicolas Bonnefon     connect( &versionChecker_, SIGNAL( newVersionFound( const QString& ) ),
163460de700SNicolas Bonnefon             this, SLOT( newVersionNotification( const QString& ) ) );
164f109b95bSNicolas Bonnefon #endif
165460de700SNicolas Bonnefon 
166b423cd88SNicolas Bonnefon     // Construct the QuickFind bar
167b423cd88SNicolas Bonnefon     quickFindWidget_.hide();
168b423cd88SNicolas Bonnefon 
169b423cd88SNicolas Bonnefon     QWidget* central_widget = new QWidget();
170b423cd88SNicolas Bonnefon     QVBoxLayout* main_layout = new QVBoxLayout();
171548acbf6SNicolas Bonnefon     main_layout->setContentsMargins( 0, 0, 0, 0 );
172b423cd88SNicolas Bonnefon     main_layout->addWidget( &mainTabWidget_ );
173b423cd88SNicolas Bonnefon     main_layout->addWidget( &quickFindWidget_ );
174b423cd88SNicolas Bonnefon     central_widget->setLayout( main_layout );
175b423cd88SNicolas Bonnefon 
176b423cd88SNicolas Bonnefon     setCentralWidget( central_widget );
177bb02e0acSNicolas Bonnefon }
178bb02e0acSNicolas Bonnefon 
1798964a9adSNicolas Bonnefon void MainWindow::reloadSession()
1808964a9adSNicolas Bonnefon {
181b76966a6SNicolas Bonnefon     QByteArray geometry;
182b76966a6SNicolas Bonnefon 
183b76966a6SNicolas Bonnefon     session_->storedGeometry( &geometry );
184b76966a6SNicolas Bonnefon     restoreGeometry( geometry );
185b76966a6SNicolas Bonnefon 
1868964a9adSNicolas Bonnefon     int current_file_index = -1;
1878964a9adSNicolas Bonnefon 
1888964a9adSNicolas Bonnefon     for ( auto open_file: session_->restore(
1898964a9adSNicolas Bonnefon                []() { return new CrawlerWidget(); },
1908964a9adSNicolas Bonnefon                &current_file_index ) )
1918964a9adSNicolas Bonnefon     {
1928964a9adSNicolas Bonnefon         QString file_name = { open_file.first.c_str() };
1938964a9adSNicolas Bonnefon         CrawlerWidget* crawler_widget = dynamic_cast<CrawlerWidget*>(
1948964a9adSNicolas Bonnefon                 open_file.second );
1958964a9adSNicolas Bonnefon 
1968964a9adSNicolas Bonnefon         assert( crawler_widget );
1978964a9adSNicolas Bonnefon 
1988964a9adSNicolas Bonnefon         mainTabWidget_.addTab( crawler_widget, strippedName( file_name ) );
1998964a9adSNicolas Bonnefon     }
2008964a9adSNicolas Bonnefon 
2018964a9adSNicolas Bonnefon     if ( current_file_index >= 0 )
2028964a9adSNicolas Bonnefon         mainTabWidget_.setCurrentIndex( current_file_index );
2038964a9adSNicolas Bonnefon }
2048964a9adSNicolas Bonnefon 
205bb02e0acSNicolas Bonnefon void MainWindow::loadInitialFile( QString fileName )
206bb02e0acSNicolas Bonnefon {
207bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "loadInitialFile";
208bb02e0acSNicolas Bonnefon 
209bb02e0acSNicolas Bonnefon     // Is there a file passed as argument?
210bb02e0acSNicolas Bonnefon     if ( !fileName.isEmpty() )
211bb02e0acSNicolas Bonnefon         loadFile( fileName );
212bb02e0acSNicolas Bonnefon }
213bb02e0acSNicolas Bonnefon 
2148a9275b2SNicolas Bonnefon void MainWindow::startBackgroundTasks()
2158a9275b2SNicolas Bonnefon {
2168a9275b2SNicolas Bonnefon     LOG(logDEBUG) << "startBackgroundTasks";
217431d01deSNicolas Bonnefon 
218431d01deSNicolas Bonnefon #ifdef GLOGG_SUPPORTS_VERSION_CHECKING
219431d01deSNicolas Bonnefon     versionChecker_.startCheck();
220431d01deSNicolas Bonnefon #endif
2218a9275b2SNicolas Bonnefon }
2228a9275b2SNicolas Bonnefon 
223bb02e0acSNicolas Bonnefon //
224bb02e0acSNicolas Bonnefon // Private functions
225bb02e0acSNicolas Bonnefon //
226bb02e0acSNicolas Bonnefon 
2275fa25391SNicolas Bonnefon const MainWindow::EncodingList MainWindow::encoding_list[] = {
2285fa25391SNicolas Bonnefon     { "&Auto" },
2295fa25391SNicolas Bonnefon     { "ASCII / &ISO-8859-1" },
2305fa25391SNicolas Bonnefon     { "&UTF-8" },
2315fa25391SNicolas Bonnefon };
2325fa25391SNicolas Bonnefon 
233bb02e0acSNicolas Bonnefon // Menu actions
234bb02e0acSNicolas Bonnefon void MainWindow::createActions()
235bb02e0acSNicolas Bonnefon {
23611582726SNicolas Bonnefon     std::shared_ptr<Configuration> config =
23711582726SNicolas Bonnefon         Persistent<Configuration>( "settings" );
238bb02e0acSNicolas Bonnefon 
239bb02e0acSNicolas Bonnefon     openAction = new QAction(tr("&Open..."), this);
240bb02e0acSNicolas Bonnefon     openAction->setShortcut(QKeySequence::Open);
241c633ced3SNicolas Bonnefon     openAction->setIcon( QIcon( ":/images/open14.png" ) );
242bb02e0acSNicolas Bonnefon     openAction->setStatusTip(tr("Open a file"));
243bb02e0acSNicolas Bonnefon     connect(openAction, SIGNAL(triggered()), this, SLOT(open()));
244bb02e0acSNicolas Bonnefon 
24563dc3514SGustav Andersson     closeAction = new QAction(tr("&Close"), this);
24604325d43SGustav Andersson     closeAction->setShortcut(tr("Ctrl+W"));
24763dc3514SGustav Andersson     closeAction->setStatusTip(tr("Close document"));
24863dc3514SGustav Andersson     connect(closeAction, SIGNAL(triggered()), this, SLOT(closeTab()));
24963dc3514SGustav Andersson 
25063dc3514SGustav Andersson     closeAllAction = new QAction(tr("Close &All"), this);
25163dc3514SGustav Andersson     closeAllAction->setStatusTip(tr("Close all documents"));
25263dc3514SGustav Andersson     connect(closeAllAction, SIGNAL(triggered()), this, SLOT(closeAll()));
25363dc3514SGustav Andersson 
254bb02e0acSNicolas Bonnefon     // Recent files
255bb02e0acSNicolas Bonnefon     for (int i = 0; i < MaxRecentFiles; ++i) {
256bb02e0acSNicolas Bonnefon         recentFileActions[i] = new QAction(this);
257bb02e0acSNicolas Bonnefon         recentFileActions[i]->setVisible(false);
258bb02e0acSNicolas Bonnefon         connect(recentFileActions[i], SIGNAL(triggered()),
259bb02e0acSNicolas Bonnefon                 this, SLOT(openRecentFile()));
260bb02e0acSNicolas Bonnefon     }
261bb02e0acSNicolas Bonnefon 
262bb02e0acSNicolas Bonnefon     exitAction = new QAction(tr("E&xit"), this);
263bb02e0acSNicolas Bonnefon     exitAction->setShortcut(tr("Ctrl+Q"));
264bb02e0acSNicolas Bonnefon     exitAction->setStatusTip(tr("Exit the application"));
265bb02e0acSNicolas Bonnefon     connect( exitAction, SIGNAL(triggered()), this, SLOT(close()) );
266bb02e0acSNicolas Bonnefon 
267bb02e0acSNicolas Bonnefon     copyAction = new QAction(tr("&Copy"), this);
268bb02e0acSNicolas Bonnefon     copyAction->setShortcut(QKeySequence::Copy);
269bb02e0acSNicolas Bonnefon     copyAction->setStatusTip(tr("Copy the selection"));
270bb02e0acSNicolas Bonnefon     connect( copyAction, SIGNAL(triggered()), this, SLOT(copy()) );
271bb02e0acSNicolas Bonnefon 
272bb02e0acSNicolas Bonnefon     selectAllAction = new QAction(tr("Select &All"), this);
273bb02e0acSNicolas Bonnefon     selectAllAction->setShortcut(tr("Ctrl+A"));
274bb02e0acSNicolas Bonnefon     selectAllAction->setStatusTip(tr("Select all the text"));
275bb02e0acSNicolas Bonnefon     connect( selectAllAction, SIGNAL(triggered()),
276bb02e0acSNicolas Bonnefon              this, SLOT( selectAll() ) );
277bb02e0acSNicolas Bonnefon 
278bb02e0acSNicolas Bonnefon     findAction = new QAction(tr("&Find..."), this);
279bb02e0acSNicolas Bonnefon     findAction->setShortcut(QKeySequence::Find);
280bb02e0acSNicolas Bonnefon     findAction->setStatusTip(tr("Find the text"));
281bb02e0acSNicolas Bonnefon     connect( findAction, SIGNAL(triggered()),
282bb02e0acSNicolas Bonnefon             this, SLOT( find() ) );
283bb02e0acSNicolas Bonnefon 
284bb02e0acSNicolas Bonnefon     overviewVisibleAction = new QAction( tr("Matches &overview"), this );
285bb02e0acSNicolas Bonnefon     overviewVisibleAction->setCheckable( true );
28611582726SNicolas Bonnefon     overviewVisibleAction->setChecked( config->isOverviewVisible() );
287bb02e0acSNicolas Bonnefon     connect( overviewVisibleAction, SIGNAL( toggled( bool ) ),
288bb02e0acSNicolas Bonnefon             this, SLOT( toggleOverviewVisibility( bool )) );
289bb02e0acSNicolas Bonnefon 
290bb02e0acSNicolas Bonnefon     lineNumbersVisibleInMainAction =
291bb02e0acSNicolas Bonnefon         new QAction( tr("Line &numbers in main view"), this );
292bb02e0acSNicolas Bonnefon     lineNumbersVisibleInMainAction->setCheckable( true );
29311582726SNicolas Bonnefon     lineNumbersVisibleInMainAction->setChecked( config->mainLineNumbersVisible() );
294bb02e0acSNicolas Bonnefon     connect( lineNumbersVisibleInMainAction, SIGNAL( toggled( bool ) ),
295bb02e0acSNicolas Bonnefon             this, SLOT( toggleMainLineNumbersVisibility( bool )) );
296bb02e0acSNicolas Bonnefon 
297bb02e0acSNicolas Bonnefon     lineNumbersVisibleInFilteredAction =
298bb02e0acSNicolas Bonnefon         new QAction( tr("Line &numbers in filtered view"), this );
299bb02e0acSNicolas Bonnefon     lineNumbersVisibleInFilteredAction->setCheckable( true );
30011582726SNicolas Bonnefon     lineNumbersVisibleInFilteredAction->setChecked( config->filteredLineNumbersVisible() );
301bb02e0acSNicolas Bonnefon     connect( lineNumbersVisibleInFilteredAction, SIGNAL( toggled( bool ) ),
302bb02e0acSNicolas Bonnefon             this, SLOT( toggleFilteredLineNumbersVisibility( bool )) );
303bb02e0acSNicolas Bonnefon 
304bb02e0acSNicolas Bonnefon     followAction = new QAction( tr("&Follow File"), this );
305bb02e0acSNicolas Bonnefon     followAction->setShortcut(Qt::Key_F);
306bb02e0acSNicolas Bonnefon     followAction->setCheckable(true);
307bb02e0acSNicolas Bonnefon     connect( followAction, SIGNAL(toggled( bool )),
308bb02e0acSNicolas Bonnefon             this, SIGNAL(followSet( bool )) );
309bb02e0acSNicolas Bonnefon 
310bb02e0acSNicolas Bonnefon     reloadAction = new QAction( tr("&Reload"), this );
311bb02e0acSNicolas Bonnefon     reloadAction->setShortcut(QKeySequence::Refresh);
312c633ced3SNicolas Bonnefon     reloadAction->setIcon( QIcon(":/images/reload14.png") );
31332e44cfdSNicolas Bonnefon     signalMux_.connect( reloadAction, SIGNAL(triggered()), SLOT(reload()) );
314bb02e0acSNicolas Bonnefon 
315bb02e0acSNicolas Bonnefon     stopAction = new QAction( tr("&Stop"), this );
316c633ced3SNicolas Bonnefon     stopAction->setIcon( QIcon(":/images/stop14.png") );
3177875bde2SNicolas Bonnefon     stopAction->setEnabled( true );
3187847299cSNicolas Bonnefon     signalMux_.connect( stopAction, SIGNAL(triggered()), SLOT(stopLoading()) );
319bb02e0acSNicolas Bonnefon 
320bb02e0acSNicolas Bonnefon     filtersAction = new QAction(tr("&Filters..."), this);
321bb02e0acSNicolas Bonnefon     filtersAction->setStatusTip(tr("Show the Filters box"));
322bb02e0acSNicolas Bonnefon     connect( filtersAction, SIGNAL(triggered()), this, SLOT(filters()) );
323bb02e0acSNicolas Bonnefon 
324bb02e0acSNicolas Bonnefon     optionsAction = new QAction(tr("&Options..."), this);
325bb02e0acSNicolas Bonnefon     optionsAction->setStatusTip(tr("Show the Options box"));
326bb02e0acSNicolas Bonnefon     connect( optionsAction, SIGNAL(triggered()), this, SLOT(options()) );
327bb02e0acSNicolas Bonnefon 
328bb02e0acSNicolas Bonnefon     aboutAction = new QAction(tr("&About"), this);
329bb02e0acSNicolas Bonnefon     aboutAction->setStatusTip(tr("Show the About box"));
330bb02e0acSNicolas Bonnefon     connect( aboutAction, SIGNAL(triggered()), this, SLOT(about()) );
331bb02e0acSNicolas Bonnefon 
332bb02e0acSNicolas Bonnefon     aboutQtAction = new QAction(tr("About &Qt"), this);
3335fa25391SNicolas Bonnefon     aboutQtAction->setStatusTip(tr("Show the Qt library's About box"));
334bb02e0acSNicolas Bonnefon     connect( aboutQtAction, SIGNAL(triggered()), this, SLOT(aboutQt()) );
3355fa25391SNicolas Bonnefon 
3365fa25391SNicolas Bonnefon     encodingGroup = new QActionGroup( this );
3375fa25391SNicolas Bonnefon 
3385fa25391SNicolas Bonnefon     for ( int i = 0; i < CrawlerWidget::ENCODING_MAX; ++i ) {
3395fa25391SNicolas Bonnefon         encodingAction[i] = new QAction( tr( encoding_list[i].name ), this );
3405fa25391SNicolas Bonnefon         encodingAction[i]->setCheckable( true );
3415fa25391SNicolas Bonnefon         encodingGroup->addAction( encodingAction[i] );
3425fa25391SNicolas Bonnefon     }
3435fa25391SNicolas Bonnefon 
3445fa25391SNicolas Bonnefon     encodingAction[0]->setStatusTip(tr("Automatically detect the file's encoding"));
3455fa25391SNicolas Bonnefon     encodingAction[0]->setChecked( true );
3465fa25391SNicolas Bonnefon 
3475fa25391SNicolas Bonnefon     connect( encodingGroup, SIGNAL( triggered( QAction* ) ),
3485fa25391SNicolas Bonnefon             this, SLOT( encodingChanged( QAction* ) ) );
349bb02e0acSNicolas Bonnefon }
350bb02e0acSNicolas Bonnefon 
351bb02e0acSNicolas Bonnefon void MainWindow::createMenus()
352bb02e0acSNicolas Bonnefon {
353bb02e0acSNicolas Bonnefon     fileMenu = menuBar()->addMenu( tr("&File") );
354bb02e0acSNicolas Bonnefon     fileMenu->addAction( openAction );
35563dc3514SGustav Andersson     fileMenu->addAction( closeAction );
35663dc3514SGustav Andersson     fileMenu->addAction( closeAllAction );
357bb02e0acSNicolas Bonnefon     fileMenu->addSeparator();
358bb02e0acSNicolas Bonnefon     for (int i = 0; i < MaxRecentFiles; ++i) {
359bb02e0acSNicolas Bonnefon         fileMenu->addAction( recentFileActions[i] );
360bb02e0acSNicolas Bonnefon         recentFileActionBehaviors[i] =
361bb02e0acSNicolas Bonnefon             new MenuActionToolTipBehavior(recentFileActions[i], fileMenu, this);
362bb02e0acSNicolas Bonnefon     }
363bb02e0acSNicolas Bonnefon     fileMenu->addSeparator();
364bb02e0acSNicolas Bonnefon     fileMenu->addAction( exitAction );
365bb02e0acSNicolas Bonnefon 
366bb02e0acSNicolas Bonnefon     editMenu = menuBar()->addMenu( tr("&Edit") );
367bb02e0acSNicolas Bonnefon     editMenu->addAction( copyAction );
368bb02e0acSNicolas Bonnefon     editMenu->addAction( selectAllAction );
369bb02e0acSNicolas Bonnefon     editMenu->addSeparator();
370bb02e0acSNicolas Bonnefon     editMenu->addAction( findAction );
371bb02e0acSNicolas Bonnefon 
372bb02e0acSNicolas Bonnefon     viewMenu = menuBar()->addMenu( tr("&View") );
373bb02e0acSNicolas Bonnefon     viewMenu->addAction( overviewVisibleAction );
374bb02e0acSNicolas Bonnefon     viewMenu->addSeparator();
375bb02e0acSNicolas Bonnefon     viewMenu->addAction( lineNumbersVisibleInMainAction );
376bb02e0acSNicolas Bonnefon     viewMenu->addAction( lineNumbersVisibleInFilteredAction );
377bb02e0acSNicolas Bonnefon     viewMenu->addSeparator();
378bb02e0acSNicolas Bonnefon     viewMenu->addAction( followAction );
379bb02e0acSNicolas Bonnefon     viewMenu->addSeparator();
380bb02e0acSNicolas Bonnefon     viewMenu->addAction( reloadAction );
381bb02e0acSNicolas Bonnefon 
382bb02e0acSNicolas Bonnefon     toolsMenu = menuBar()->addMenu( tr("&Tools") );
383bb02e0acSNicolas Bonnefon     toolsMenu->addAction( filtersAction );
384bb02e0acSNicolas Bonnefon     toolsMenu->addSeparator();
385bb02e0acSNicolas Bonnefon     toolsMenu->addAction( optionsAction );
386bb02e0acSNicolas Bonnefon 
3875fa25391SNicolas Bonnefon     encodingMenu = menuBar()->addMenu( tr("En&coding") );
3885fa25391SNicolas Bonnefon     encodingMenu->addAction( encodingAction[0] );
3895fa25391SNicolas Bonnefon     encodingMenu->addSeparator();
3905fa25391SNicolas Bonnefon     for ( int i = 1; i < CrawlerWidget::ENCODING_MAX; ++i ) {
3915fa25391SNicolas Bonnefon         encodingMenu->addAction( encodingAction[i] );
3925fa25391SNicolas Bonnefon     }
3935fa25391SNicolas Bonnefon 
394bb02e0acSNicolas Bonnefon     menuBar()->addSeparator();
395bb02e0acSNicolas Bonnefon 
396bb02e0acSNicolas Bonnefon     helpMenu = menuBar()->addMenu( tr("&Help") );
397bb02e0acSNicolas Bonnefon     helpMenu->addAction( aboutAction );
398bb02e0acSNicolas Bonnefon }
399bb02e0acSNicolas Bonnefon 
400bb02e0acSNicolas Bonnefon void MainWindow::createToolBars()
401bb02e0acSNicolas Bonnefon {
402bb02e0acSNicolas Bonnefon     infoLine = new InfoLine();
403bb02e0acSNicolas Bonnefon     infoLine->setFrameStyle( QFrame::WinPanel | QFrame::Sunken );
404bb02e0acSNicolas Bonnefon     infoLine->setLineWidth( 0 );
405bb02e0acSNicolas Bonnefon 
406bb02e0acSNicolas Bonnefon     lineNbField = new QLabel( );
407bb02e0acSNicolas Bonnefon     lineNbField->setText( "Line 0" );
408bb02e0acSNicolas Bonnefon     lineNbField->setAlignment( Qt::AlignLeft | Qt::AlignVCenter );
409bb02e0acSNicolas Bonnefon     lineNbField->setMinimumSize(
410bb02e0acSNicolas Bonnefon             lineNbField->fontMetrics().size( 0, "Line 0000000") );
411bb02e0acSNicolas Bonnefon 
412bb02e0acSNicolas Bonnefon     toolBar = addToolBar( tr("&Toolbar") );
413c633ced3SNicolas Bonnefon     toolBar->setIconSize( QSize( 14, 14 ) );
414bb02e0acSNicolas Bonnefon     toolBar->setMovable( false );
415bb02e0acSNicolas Bonnefon     toolBar->addAction( openAction );
416bb02e0acSNicolas Bonnefon     toolBar->addAction( reloadAction );
417bb02e0acSNicolas Bonnefon     toolBar->addWidget( infoLine );
418bb02e0acSNicolas Bonnefon     toolBar->addAction( stopAction );
419bb02e0acSNicolas Bonnefon     toolBar->addWidget( lineNbField );
420bb02e0acSNicolas Bonnefon }
421bb02e0acSNicolas Bonnefon 
422bb02e0acSNicolas Bonnefon //
423bb02e0acSNicolas Bonnefon // Slots
424bb02e0acSNicolas Bonnefon //
425bb02e0acSNicolas Bonnefon 
426bb02e0acSNicolas Bonnefon // Opens the file selection dialog to select a new log file
427bb02e0acSNicolas Bonnefon void MainWindow::open()
428bb02e0acSNicolas Bonnefon {
429bb02e0acSNicolas Bonnefon     QString defaultDir = ".";
430bb02e0acSNicolas Bonnefon 
431bb02e0acSNicolas Bonnefon     // Default to the path of the current file if there is one
4320e97f16dSNicolas Bonnefon     if ( auto current = currentCrawlerWidget() )
4330e97f16dSNicolas Bonnefon     {
4340e97f16dSNicolas Bonnefon         std::string current_file = session_->getFilename( current );
4350e97f16dSNicolas Bonnefon         QFileInfo fileInfo = QFileInfo( QString( current_file.c_str() ) );
436bb02e0acSNicolas Bonnefon         defaultDir = fileInfo.path();
437bb02e0acSNicolas Bonnefon     }
438bb02e0acSNicolas Bonnefon 
439bb02e0acSNicolas Bonnefon     QString fileName = QFileDialog::getOpenFileName(this,
440bb02e0acSNicolas Bonnefon             tr("Open file"), defaultDir, tr("All files (*)"));
441bb02e0acSNicolas Bonnefon     if (!fileName.isEmpty())
442bb02e0acSNicolas Bonnefon         loadFile(fileName);
443bb02e0acSNicolas Bonnefon }
444bb02e0acSNicolas Bonnefon 
445bb02e0acSNicolas Bonnefon // Opens a log file from the recent files list
446bb02e0acSNicolas Bonnefon void MainWindow::openRecentFile()
447bb02e0acSNicolas Bonnefon {
448bb02e0acSNicolas Bonnefon     QAction* action = qobject_cast<QAction*>(sender());
449bb02e0acSNicolas Bonnefon     if (action)
450bb02e0acSNicolas Bonnefon         loadFile(action->data().toString());
451bb02e0acSNicolas Bonnefon }
452bb02e0acSNicolas Bonnefon 
45363dc3514SGustav Andersson // Close current tab
45463dc3514SGustav Andersson void MainWindow::closeTab()
45563dc3514SGustav Andersson {
45663dc3514SGustav Andersson     int currentIndex = mainTabWidget_.currentIndex();
45763dc3514SGustav Andersson 
45863dc3514SGustav Andersson     if ( currentIndex >= 0 )
45963dc3514SGustav Andersson     {
46063dc3514SGustav Andersson         closeTab(currentIndex);
46163dc3514SGustav Andersson     }
46263dc3514SGustav Andersson }
46363dc3514SGustav Andersson 
46463dc3514SGustav Andersson // Close all tabs
46563dc3514SGustav Andersson void MainWindow::closeAll()
46663dc3514SGustav Andersson {
46763dc3514SGustav Andersson     while ( mainTabWidget_.count() )
46863dc3514SGustav Andersson     {
46963dc3514SGustav Andersson         closeTab(0);
47063dc3514SGustav Andersson     }
47163dc3514SGustav Andersson }
47263dc3514SGustav Andersson 
473bb02e0acSNicolas Bonnefon // Select all the text in the currently selected view
474bb02e0acSNicolas Bonnefon void MainWindow::selectAll()
475bb02e0acSNicolas Bonnefon {
47627ddfd3aSNicolas Bonnefon     CrawlerWidget* current = currentCrawlerWidget();
47727ddfd3aSNicolas Bonnefon 
47827ddfd3aSNicolas Bonnefon     if ( current )
47927ddfd3aSNicolas Bonnefon         current->selectAll();
480bb02e0acSNicolas Bonnefon }
481bb02e0acSNicolas Bonnefon 
482bb02e0acSNicolas Bonnefon // Copy the currently selected line into the clipboard
483bb02e0acSNicolas Bonnefon void MainWindow::copy()
484bb02e0acSNicolas Bonnefon {
485bb02e0acSNicolas Bonnefon     static QClipboard* clipboard = QApplication::clipboard();
48627ddfd3aSNicolas Bonnefon     CrawlerWidget* current = currentCrawlerWidget();
487bb02e0acSNicolas Bonnefon 
48827ddfd3aSNicolas Bonnefon     if ( current ) {
48927ddfd3aSNicolas Bonnefon         clipboard->setText( current->getSelectedText() );
490bb02e0acSNicolas Bonnefon 
491bb02e0acSNicolas Bonnefon         // Put it in the global selection as well (X11 only)
49227ddfd3aSNicolas Bonnefon         clipboard->setText( current->getSelectedText(),
493bb02e0acSNicolas Bonnefon                 QClipboard::Selection );
494bb02e0acSNicolas Bonnefon     }
49527ddfd3aSNicolas Bonnefon }
496bb02e0acSNicolas Bonnefon 
497bb02e0acSNicolas Bonnefon // Display the QuickFind bar
498bb02e0acSNicolas Bonnefon void MainWindow::find()
499bb02e0acSNicolas Bonnefon {
500b423cd88SNicolas Bonnefon     displayQuickFindBar( QuickFindMux::Forward );
501bb02e0acSNicolas Bonnefon }
502bb02e0acSNicolas Bonnefon 
503bb02e0acSNicolas Bonnefon // Opens the 'Filters' dialog box
504bb02e0acSNicolas Bonnefon void MainWindow::filters()
505bb02e0acSNicolas Bonnefon {
506bb02e0acSNicolas Bonnefon     FiltersDialog dialog(this);
50727ddfd3aSNicolas Bonnefon     signalMux_.connect(&dialog, SIGNAL( optionsChanged() ), SLOT( applyConfiguration() ));
508bb02e0acSNicolas Bonnefon     dialog.exec();
50927ddfd3aSNicolas Bonnefon     signalMux_.disconnect(&dialog, SIGNAL( optionsChanged() ), SLOT( applyConfiguration() ));
510bb02e0acSNicolas Bonnefon }
511bb02e0acSNicolas Bonnefon 
512bb02e0acSNicolas Bonnefon // Opens the 'Options' modal dialog box
513bb02e0acSNicolas Bonnefon void MainWindow::options()
514bb02e0acSNicolas Bonnefon {
515bb02e0acSNicolas Bonnefon     OptionsDialog dialog(this);
51627ddfd3aSNicolas Bonnefon     signalMux_.connect(&dialog, SIGNAL( optionsChanged() ), SLOT( applyConfiguration() ));
517bb02e0acSNicolas Bonnefon     dialog.exec();
51827ddfd3aSNicolas Bonnefon     signalMux_.disconnect(&dialog, SIGNAL( optionsChanged() ), SLOT( applyConfiguration() ));
519bb02e0acSNicolas Bonnefon }
520bb02e0acSNicolas Bonnefon 
521bb02e0acSNicolas Bonnefon // Opens the 'About' dialog box.
522bb02e0acSNicolas Bonnefon void MainWindow::about()
523bb02e0acSNicolas Bonnefon {
524bb02e0acSNicolas Bonnefon     QMessageBox::about(this, tr("About glogg"),
525bb02e0acSNicolas Bonnefon             tr("<h2>glogg " GLOGG_VERSION "</h2>"
526bb02e0acSNicolas Bonnefon                 "<p>A fast, advanced log explorer."
527bb02e0acSNicolas Bonnefon #ifdef GLOGG_COMMIT
528bb02e0acSNicolas Bonnefon                 "<p>Built " GLOGG_DATE " from " GLOGG_COMMIT
529bb02e0acSNicolas Bonnefon #endif
53035c20658SNicolas Bonnefon                 "<p><a href=\"http://glogg.bonnefon.org/\">http://glogg.bonnefon.org/</a></p>"
5315fa25391SNicolas Bonnefon                 "<p>Copyright &copy; 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicolas Bonnefon and other contributors"
532bb02e0acSNicolas Bonnefon                 "<p>You may modify and redistribute the program under the terms of the GPL (version 3 or later)." ) );
533bb02e0acSNicolas Bonnefon }
534bb02e0acSNicolas Bonnefon 
535bb02e0acSNicolas Bonnefon // Opens the 'About Qt' dialog box.
536bb02e0acSNicolas Bonnefon void MainWindow::aboutQt()
537bb02e0acSNicolas Bonnefon {
538bb02e0acSNicolas Bonnefon }
539bb02e0acSNicolas Bonnefon 
5405fa25391SNicolas Bonnefon void MainWindow::encodingChanged( QAction* action )
5415fa25391SNicolas Bonnefon {
5425fa25391SNicolas Bonnefon     int i = 0;
5435fa25391SNicolas Bonnefon     for ( i = 0; i < CrawlerWidget::ENCODING_MAX; ++i )
5445fa25391SNicolas Bonnefon         if ( action == encodingAction[i] )
5455fa25391SNicolas Bonnefon             break;
5465fa25391SNicolas Bonnefon 
5475fa25391SNicolas Bonnefon     LOG(logDEBUG) << "encodingChanged, encoding " << i;
5485fa25391SNicolas Bonnefon     currentCrawlerWidget()->setEncoding( static_cast<CrawlerWidget::Encoding>( i ) );
5495fa25391SNicolas Bonnefon     updateInfoLine();
5505fa25391SNicolas Bonnefon }
5515fa25391SNicolas Bonnefon 
552bb02e0acSNicolas Bonnefon void MainWindow::toggleOverviewVisibility( bool isVisible )
553bb02e0acSNicolas Bonnefon {
55411582726SNicolas Bonnefon     std::shared_ptr<Configuration> config =
55511582726SNicolas Bonnefon         Persistent<Configuration>( "settings" );
55611582726SNicolas Bonnefon     config->setOverviewVisible( isVisible );
557bb02e0acSNicolas Bonnefon     emit optionsChanged();
558bb02e0acSNicolas Bonnefon }
559bb02e0acSNicolas Bonnefon 
560bb02e0acSNicolas Bonnefon void MainWindow::toggleMainLineNumbersVisibility( bool isVisible )
561bb02e0acSNicolas Bonnefon {
56211582726SNicolas Bonnefon     std::shared_ptr<Configuration> config =
56311582726SNicolas Bonnefon         Persistent<Configuration>( "settings" );
56411582726SNicolas Bonnefon     config->setMainLineNumbersVisible( isVisible );
565bb02e0acSNicolas Bonnefon     emit optionsChanged();
566bb02e0acSNicolas Bonnefon }
567bb02e0acSNicolas Bonnefon 
568bb02e0acSNicolas Bonnefon void MainWindow::toggleFilteredLineNumbersVisibility( bool isVisible )
569bb02e0acSNicolas Bonnefon {
57011582726SNicolas Bonnefon     std::shared_ptr<Configuration> config =
57111582726SNicolas Bonnefon         Persistent<Configuration>( "settings" );
57211582726SNicolas Bonnefon     config->setFilteredLineNumbersVisible( isVisible );
573bb02e0acSNicolas Bonnefon     emit optionsChanged();
574bb02e0acSNicolas Bonnefon }
575bb02e0acSNicolas Bonnefon 
576b297d2f4SNicolas Bonnefon void MainWindow::changeFollowMode( bool follow )
577bb02e0acSNicolas Bonnefon {
578b297d2f4SNicolas Bonnefon     followAction->setChecked( follow );
579bb02e0acSNicolas Bonnefon }
580bb02e0acSNicolas Bonnefon 
581bb02e0acSNicolas Bonnefon void MainWindow::lineNumberHandler( int line )
582bb02e0acSNicolas Bonnefon {
583bb02e0acSNicolas Bonnefon     // The line number received is the internal (starts at 0)
584bb02e0acSNicolas Bonnefon     lineNbField->setText( tr( "Line %1" ).arg( line + 1 ) );
585bb02e0acSNicolas Bonnefon }
586bb02e0acSNicolas Bonnefon 
587bb02e0acSNicolas Bonnefon void MainWindow::updateLoadingProgress( int progress )
588bb02e0acSNicolas Bonnefon {
589bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "Loading progress: " << progress;
590bb02e0acSNicolas Bonnefon 
591f8bd90d8SNicolas Bonnefon     QString current_file =
592f8bd90d8SNicolas Bonnefon         session_->getFilename( currentCrawlerWidget() ).c_str();
5930e97f16dSNicolas Bonnefon 
594bb02e0acSNicolas Bonnefon     // We ignore 0% and 100% to avoid a flash when the file (or update)
595bb02e0acSNicolas Bonnefon     // is very short.
596bb02e0acSNicolas Bonnefon     if ( progress > 0 && progress < 100 ) {
597f8bd90d8SNicolas Bonnefon         infoLine->setText( current_file +
598f8bd90d8SNicolas Bonnefon                 tr( " - Indexing lines... (%1 %)" ).arg( progress ) );
599bb02e0acSNicolas Bonnefon         infoLine->displayGauge( progress );
600bb02e0acSNicolas Bonnefon 
601bb02e0acSNicolas Bonnefon         stopAction->setEnabled( true );
602f8bd90d8SNicolas Bonnefon         reloadAction->setEnabled( false );
603bb02e0acSNicolas Bonnefon     }
604bb02e0acSNicolas Bonnefon }
605bb02e0acSNicolas Bonnefon 
606812146a8SNicolas Bonnefon void MainWindow::handleLoadingFinished( LoadingStatus status )
607bb02e0acSNicolas Bonnefon {
608812146a8SNicolas Bonnefon     LOG(logDEBUG) << "handleLoadingFinished success=" <<
609812146a8SNicolas Bonnefon         ( status == LoadingStatus::Successful );
610bb02e0acSNicolas Bonnefon 
6110e97f16dSNicolas Bonnefon     // No file is loading
6120e97f16dSNicolas Bonnefon     loadingFileName.clear();
6130e97f16dSNicolas Bonnefon 
614812146a8SNicolas Bonnefon     if ( status == LoadingStatus::Successful )
615f8bd90d8SNicolas Bonnefon     {
6165fa25391SNicolas Bonnefon         updateInfoLine();
617bb02e0acSNicolas Bonnefon 
618bb02e0acSNicolas Bonnefon         infoLine->hideGauge();
619bb02e0acSNicolas Bonnefon         stopAction->setEnabled( false );
620f8bd90d8SNicolas Bonnefon         reloadAction->setEnabled( true );
6210a90ca6aSNicolas Bonnefon 
6220a90ca6aSNicolas Bonnefon         // Now everything is ready, we can finally show the file!
62327ddfd3aSNicolas Bonnefon         currentCrawlerWidget()->show();
624f8bd90d8SNicolas Bonnefon     }
625f8bd90d8SNicolas Bonnefon     else
626f8bd90d8SNicolas Bonnefon     {
627812146a8SNicolas Bonnefon         if ( status == LoadingStatus::NoMemory )
628812146a8SNicolas Bonnefon         {
629812146a8SNicolas Bonnefon             QMessageBox alertBox;
630812146a8SNicolas Bonnefon             alertBox.setText( "Not enough memory." );
631812146a8SNicolas Bonnefon             alertBox.setInformativeText( "The system does not have enough \
632812146a8SNicolas Bonnefon memory to hold the index for this file. The file will now be closed." );
633812146a8SNicolas Bonnefon             alertBox.setIcon( QMessageBox::Critical );
634812146a8SNicolas Bonnefon             alertBox.exec();
635812146a8SNicolas Bonnefon         }
636812146a8SNicolas Bonnefon 
637f8bd90d8SNicolas Bonnefon         closeTab( mainTabWidget_.currentIndex()  );
638f8bd90d8SNicolas Bonnefon     }
639f8bd90d8SNicolas Bonnefon 
6407875bde2SNicolas Bonnefon     // mainTabWidget_.setEnabled( true );
641bb02e0acSNicolas Bonnefon }
642bb02e0acSNicolas Bonnefon 
643f688be2eSNicolas Bonnefon void MainWindow::handleSearchRefreshChanged( int state )
644f688be2eSNicolas Bonnefon {
645f688be2eSNicolas Bonnefon     auto config = Persistent<Configuration>( "settings" );
646f688be2eSNicolas Bonnefon     config->setSearchAutoRefreshDefault( state == Qt::Checked );
647f688be2eSNicolas Bonnefon }
648f688be2eSNicolas Bonnefon 
649f688be2eSNicolas Bonnefon void MainWindow::handleIgnoreCaseChanged( int state )
650f688be2eSNicolas Bonnefon {
651f688be2eSNicolas Bonnefon     auto config = Persistent<Configuration>( "settings" );
652f688be2eSNicolas Bonnefon     config->setSearchIgnoreCaseDefault( state == Qt::Checked );
653f688be2eSNicolas Bonnefon }
654f688be2eSNicolas Bonnefon 
655cdd89779SNicolas Bonnefon void MainWindow::closeTab( int index )
656cdd89779SNicolas Bonnefon {
657cdd89779SNicolas Bonnefon     auto widget = dynamic_cast<CrawlerWidget*>(
658cdd89779SNicolas Bonnefon             mainTabWidget_.widget( index ) );
659cdd89779SNicolas Bonnefon 
660cdd89779SNicolas Bonnefon     assert( widget );
661cdd89779SNicolas Bonnefon 
662f8bd90d8SNicolas Bonnefon     widget->stopLoading();
663cdd89779SNicolas Bonnefon     mainTabWidget_.removeTab( index );
664cdd89779SNicolas Bonnefon     session_->close( widget );
665cdd89779SNicolas Bonnefon     delete widget;
666cdd89779SNicolas Bonnefon }
667cdd89779SNicolas Bonnefon 
668ee835f33SNicolas Bonnefon void MainWindow::currentTabChanged( int index )
669ee835f33SNicolas Bonnefon {
670ee835f33SNicolas Bonnefon     LOG(logDEBUG) << "currentTabChanged";
671ee835f33SNicolas Bonnefon 
672ee835f33SNicolas Bonnefon     if ( index >= 0 )
673ee835f33SNicolas Bonnefon     {
674ee835f33SNicolas Bonnefon         CrawlerWidget* crawler_widget = dynamic_cast<CrawlerWidget*>(
675ee835f33SNicolas Bonnefon                 mainTabWidget_.widget( index ) );
676ee835f33SNicolas Bonnefon         signalMux_.setCurrentDocument( crawler_widget );
677ee835f33SNicolas Bonnefon         quickFindMux_.registerSelector( crawler_widget );
678ee835f33SNicolas Bonnefon 
679ee835f33SNicolas Bonnefon         // New tab is set up with fonts etc...
680ee835f33SNicolas Bonnefon         emit optionsChanged();
6810e97f16dSNicolas Bonnefon 
6825fa25391SNicolas Bonnefon         // Update the menu bar
6835fa25391SNicolas Bonnefon         updateMenuBarFromDocument( crawler_widget );
6845fa25391SNicolas Bonnefon 
6850e97f16dSNicolas Bonnefon         // Update the title bar
6860e97f16dSNicolas Bonnefon         updateTitleBar( QString(
6870e97f16dSNicolas Bonnefon                     session_->getFilename( crawler_widget ).c_str() ) );
688ee835f33SNicolas Bonnefon     }
689ee835f33SNicolas Bonnefon     else
690ee835f33SNicolas Bonnefon     {
691a1202e0cSNicolas Bonnefon         // No tab left
692a1202e0cSNicolas Bonnefon         signalMux_.setCurrentDocument( nullptr );
693a1202e0cSNicolas Bonnefon         quickFindMux_.registerSelector( nullptr );
694a1202e0cSNicolas Bonnefon 
695a1202e0cSNicolas Bonnefon         infoLine->hideGauge();
696a1202e0cSNicolas Bonnefon         infoLine->clear();
697a1202e0cSNicolas Bonnefon 
698a1202e0cSNicolas Bonnefon         updateTitleBar( QString() );
699ee835f33SNicolas Bonnefon     }
700ee835f33SNicolas Bonnefon }
701ee835f33SNicolas Bonnefon 
7028570d8d2SNicolas Bonnefon void MainWindow::changeQFPattern( const QString& newPattern )
7038570d8d2SNicolas Bonnefon {
7048570d8d2SNicolas Bonnefon     quickFindWidget_.changeDisplayedPattern( newPattern );
7058570d8d2SNicolas Bonnefon }
7068570d8d2SNicolas Bonnefon 
70709aff35dSNicolas Bonnefon void MainWindow::loadFileNonInteractive( const QString& file_name )
70809aff35dSNicolas Bonnefon {
70909aff35dSNicolas Bonnefon     LOG(logDEBUG) << "loadFileNonInteractive( "
71009aff35dSNicolas Bonnefon         << file_name.toStdString() << " )";
71109aff35dSNicolas Bonnefon 
71209aff35dSNicolas Bonnefon     loadFile( file_name );
71367cec333SNicolas Bonnefon 
71467cec333SNicolas Bonnefon     // Try to get the window to the front
71567cec333SNicolas Bonnefon     // This is a bit of a hack but has been tested on:
71667cec333SNicolas Bonnefon     // Qt 5.3 / Gnome / Linux
717cf609627SNicolas Bonnefon     // Qt 4.8 / Win7
718cf609627SNicolas Bonnefon #ifdef _WIN32
719cf609627SNicolas Bonnefon     // Hack copied from http://qt-project.org/forums/viewthread/6164
7208f46a826SNicolas Bonnefon     ::SetWindowPos((HWND) effectiveWinId(), HWND_TOPMOST,
721cf609627SNicolas Bonnefon             0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW);
7228f46a826SNicolas Bonnefon     ::SetWindowPos((HWND) effectiveWinId(), HWND_NOTOPMOST,
723cf609627SNicolas Bonnefon             0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW);
724cf609627SNicolas Bonnefon #else
72567cec333SNicolas Bonnefon     Qt::WindowFlags window_flags = windowFlags();
72667cec333SNicolas Bonnefon     window_flags |= Qt::WindowStaysOnTopHint;
72767cec333SNicolas Bonnefon     setWindowFlags( window_flags );
728cf609627SNicolas Bonnefon #endif
72967cec333SNicolas Bonnefon 
73067cec333SNicolas Bonnefon     activateWindow();
73167cec333SNicolas Bonnefon     raise();
73267cec333SNicolas Bonnefon 
733cf609627SNicolas Bonnefon #ifndef _WIN32
73467cec333SNicolas Bonnefon     window_flags = windowFlags();
73567cec333SNicolas Bonnefon     window_flags &= ~Qt::WindowStaysOnTopHint;
73667cec333SNicolas Bonnefon     setWindowFlags( window_flags );
737cf609627SNicolas Bonnefon #endif
73867cec333SNicolas Bonnefon 
739cf609627SNicolas Bonnefon     showNormal();
74009aff35dSNicolas Bonnefon }
74109aff35dSNicolas Bonnefon 
742460de700SNicolas Bonnefon void MainWindow::newVersionNotification( const QString& new_version )
743460de700SNicolas Bonnefon {
744460de700SNicolas Bonnefon     LOG(logDEBUG) << "newVersionNotification( " <<
745460de700SNicolas Bonnefon         new_version.toStdString() << " )";
746460de700SNicolas Bonnefon 
747460de700SNicolas Bonnefon     QMessageBox msgBox;
748460de700SNicolas Bonnefon     msgBox.setText( QString( "A new version of glogg (%1) is available for download <p>"
749460de700SNicolas Bonnefon                 "<a href=\"http://glogg.bonnefon.org/download.html\">http://glogg.bonnefon.org/download.html</a>"
750460de700SNicolas Bonnefon                 ).arg( new_version ) );
751460de700SNicolas Bonnefon     msgBox.exec();
752460de700SNicolas Bonnefon }
753460de700SNicolas Bonnefon 
754bb02e0acSNicolas Bonnefon //
755bb02e0acSNicolas Bonnefon // Events
756bb02e0acSNicolas Bonnefon //
757bb02e0acSNicolas Bonnefon 
758bb02e0acSNicolas Bonnefon // Closes the application
759bb02e0acSNicolas Bonnefon void MainWindow::closeEvent( QCloseEvent *event )
760bb02e0acSNicolas Bonnefon {
761bb02e0acSNicolas Bonnefon     writeSettings();
762bb02e0acSNicolas Bonnefon     event->accept();
763bb02e0acSNicolas Bonnefon }
764bb02e0acSNicolas Bonnefon 
765bb02e0acSNicolas Bonnefon // Accepts the drag event if it looks like a filename
766bb02e0acSNicolas Bonnefon void MainWindow::dragEnterEvent( QDragEnterEvent* event )
767bb02e0acSNicolas Bonnefon {
768bb02e0acSNicolas Bonnefon     if ( event->mimeData()->hasFormat( "text/uri-list" ) )
769bb02e0acSNicolas Bonnefon         event->acceptProposedAction();
770bb02e0acSNicolas Bonnefon }
771bb02e0acSNicolas Bonnefon 
772bb02e0acSNicolas Bonnefon // Tries and loads the file if the URL dropped is local
773bb02e0acSNicolas Bonnefon void MainWindow::dropEvent( QDropEvent* event )
774bb02e0acSNicolas Bonnefon {
775bb02e0acSNicolas Bonnefon     QList<QUrl> urls = event->mimeData()->urls();
776bb02e0acSNicolas Bonnefon     if ( urls.isEmpty() )
777bb02e0acSNicolas Bonnefon         return;
778bb02e0acSNicolas Bonnefon 
779bb02e0acSNicolas Bonnefon     QString fileName = urls.first().toLocalFile();
780bb02e0acSNicolas Bonnefon     if ( fileName.isEmpty() )
781bb02e0acSNicolas Bonnefon         return;
782bb02e0acSNicolas Bonnefon 
783bb02e0acSNicolas Bonnefon     loadFile( fileName );
784bb02e0acSNicolas Bonnefon }
785bb02e0acSNicolas Bonnefon 
7868570d8d2SNicolas Bonnefon void MainWindow::keyPressEvent( QKeyEvent* keyEvent )
7878570d8d2SNicolas Bonnefon {
7888570d8d2SNicolas Bonnefon     LOG(logDEBUG4) << "keyPressEvent received";
7898570d8d2SNicolas Bonnefon 
7908570d8d2SNicolas Bonnefon     switch ( (keyEvent->text())[0].toLatin1() ) {
7918570d8d2SNicolas Bonnefon         case '/':
7928570d8d2SNicolas Bonnefon             displayQuickFindBar( QuickFindMux::Forward );
7938570d8d2SNicolas Bonnefon             break;
7948570d8d2SNicolas Bonnefon         case '?':
7958570d8d2SNicolas Bonnefon             displayQuickFindBar( QuickFindMux::Backward );
7968570d8d2SNicolas Bonnefon             break;
7978570d8d2SNicolas Bonnefon         default:
7988570d8d2SNicolas Bonnefon             keyEvent->ignore();
7998570d8d2SNicolas Bonnefon     }
8008570d8d2SNicolas Bonnefon 
8018570d8d2SNicolas Bonnefon     if ( !keyEvent->isAccepted() )
8028570d8d2SNicolas Bonnefon         QMainWindow::keyPressEvent( keyEvent );
8038570d8d2SNicolas Bonnefon }
8048570d8d2SNicolas Bonnefon 
805bb02e0acSNicolas Bonnefon //
806bb02e0acSNicolas Bonnefon // Private functions
807bb02e0acSNicolas Bonnefon //
808bb02e0acSNicolas Bonnefon 
8090a90ca6aSNicolas Bonnefon // Create a CrawlerWidget for the passed file, start its loading
8100a90ca6aSNicolas Bonnefon // and update the title bar.
811bb02e0acSNicolas Bonnefon // The loading is done asynchronously.
812bb02e0acSNicolas Bonnefon bool MainWindow::loadFile( const QString& fileName )
813bb02e0acSNicolas Bonnefon {
814bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "loadFile ( " << fileName.toStdString() << " )";
815bb02e0acSNicolas Bonnefon 
8163b4aad7fSNicolas Bonnefon     // First check if the file is already open...
8173b4aad7fSNicolas Bonnefon     CrawlerWidget* existing_crawler = dynamic_cast<CrawlerWidget*>(
8183b4aad7fSNicolas Bonnefon             session_->getViewIfOpen( fileName.toStdString() ) );
8193b4aad7fSNicolas Bonnefon     if ( existing_crawler ) {
8203b4aad7fSNicolas Bonnefon         // ... and switch to it.
8213b4aad7fSNicolas Bonnefon         mainTabWidget_.setCurrentWidget( existing_crawler );
8223b4aad7fSNicolas Bonnefon 
8233b4aad7fSNicolas Bonnefon         return true;
8243b4aad7fSNicolas Bonnefon     }
8253b4aad7fSNicolas Bonnefon 
826bb02e0acSNicolas Bonnefon     // Load the file
827bb02e0acSNicolas Bonnefon     loadingFileName = fileName;
828039481acSNicolas Bonnefon 
829a3b56311SNicolas Bonnefon     try {
83027ddfd3aSNicolas Bonnefon         CrawlerWidget* crawler_widget = dynamic_cast<CrawlerWidget*>(
83127ddfd3aSNicolas Bonnefon                 session_->open( fileName.toStdString(),
8321b5e406eSNicolas Bonnefon                     []() { return new CrawlerWidget(); } ) );
8331b5e406eSNicolas Bonnefon         assert( crawler_widget );
834f0708ca8SNicolas Bonnefon 
8350a90ca6aSNicolas Bonnefon         // We won't show the widget until the file is fully loaded
83627ddfd3aSNicolas Bonnefon         crawler_widget->hide();
837f0708ca8SNicolas Bonnefon 
83827ddfd3aSNicolas Bonnefon         // We disable the tab widget to avoid having someone switch
83927ddfd3aSNicolas Bonnefon         // tab during loading. (maybe FIXME)
8407875bde2SNicolas Bonnefon         //mainTabWidget_.setEnabled( false );
841313a820fSNicolas Bonnefon 
842a3b56311SNicolas Bonnefon         int index = mainTabWidget_.addTab(
843a3b56311SNicolas Bonnefon                 crawler_widget, strippedName( fileName ) );
844f0708ca8SNicolas Bonnefon 
84527ddfd3aSNicolas Bonnefon         // Setting the new tab, the user will see a blank page for the duration
84627ddfd3aSNicolas Bonnefon         // of the loading, with no way to switch to another tab
84727ddfd3aSNicolas Bonnefon         mainTabWidget_.setCurrentIndex( index );
84827ddfd3aSNicolas Bonnefon 
84960864ff5SNicolas Bonnefon         // Update the recent files list
85060864ff5SNicolas Bonnefon         // (reload the list first in case another glogg changed it)
85160864ff5SNicolas Bonnefon         GetPersistentInfo().retrieve( "recentFiles" );
85211582726SNicolas Bonnefon         recentFiles_->addRecent( fileName );
85360864ff5SNicolas Bonnefon         GetPersistentInfo().save( "recentFiles" );
85460864ff5SNicolas Bonnefon         updateRecentFileActions();
855a3b56311SNicolas Bonnefon     }
856a3b56311SNicolas Bonnefon     catch ( FileUnreadableErr ) {
857a3b56311SNicolas Bonnefon         LOG(logDEBUG) << "Can't open file " << fileName.toStdString();
858a3b56311SNicolas Bonnefon         return false;
859a3b56311SNicolas Bonnefon     }
86060864ff5SNicolas Bonnefon 
861bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "Success loading file " << fileName.toStdString();
862bb02e0acSNicolas Bonnefon     return true;
863a3b56311SNicolas Bonnefon 
864bb02e0acSNicolas Bonnefon }
865bb02e0acSNicolas Bonnefon 
866bb02e0acSNicolas Bonnefon // Strips the passed filename from its directory part.
867bb02e0acSNicolas Bonnefon QString MainWindow::strippedName( const QString& fullFileName ) const
868bb02e0acSNicolas Bonnefon {
869bb02e0acSNicolas Bonnefon     return QFileInfo( fullFileName ).fileName();
870bb02e0acSNicolas Bonnefon }
871bb02e0acSNicolas Bonnefon 
87227ddfd3aSNicolas Bonnefon // Return the currently active CrawlerWidget, or NULL if none
87327ddfd3aSNicolas Bonnefon CrawlerWidget* MainWindow::currentCrawlerWidget() const
87427ddfd3aSNicolas Bonnefon {
87527ddfd3aSNicolas Bonnefon     auto current = dynamic_cast<CrawlerWidget*>(
87627ddfd3aSNicolas Bonnefon             mainTabWidget_.currentWidget() );
87727ddfd3aSNicolas Bonnefon 
87827ddfd3aSNicolas Bonnefon     return current;
87927ddfd3aSNicolas Bonnefon }
88027ddfd3aSNicolas Bonnefon 
8810e97f16dSNicolas Bonnefon // Update the title bar.
8820e97f16dSNicolas Bonnefon void MainWindow::updateTitleBar( const QString& file_name )
883bb02e0acSNicolas Bonnefon {
884bb02e0acSNicolas Bonnefon     QString shownName = tr( "Untitled" );
8850e97f16dSNicolas Bonnefon     if ( !file_name.isEmpty() )
8860e97f16dSNicolas Bonnefon         shownName = strippedName( file_name );
887bb02e0acSNicolas Bonnefon 
888bb02e0acSNicolas Bonnefon     setWindowTitle(
889bb02e0acSNicolas Bonnefon             tr("%1 - %2").arg(shownName).arg(tr("glogg"))
890bb02e0acSNicolas Bonnefon #ifdef GLOGG_COMMIT
891bb02e0acSNicolas Bonnefon             + " (dev build " GLOGG_VERSION ")"
892bb02e0acSNicolas Bonnefon #endif
893bb02e0acSNicolas Bonnefon             );
894bb02e0acSNicolas Bonnefon }
895bb02e0acSNicolas Bonnefon 
896bb02e0acSNicolas Bonnefon // Updates the actions for the recent files.
897bb02e0acSNicolas Bonnefon // Must be called after having added a new name to the list.
898bb02e0acSNicolas Bonnefon void MainWindow::updateRecentFileActions()
899bb02e0acSNicolas Bonnefon {
90011582726SNicolas Bonnefon     QStringList recent_files = recentFiles_->recentFiles();
901bb02e0acSNicolas Bonnefon 
902bb02e0acSNicolas Bonnefon     for ( int j = 0; j < MaxRecentFiles; ++j ) {
903bb02e0acSNicolas Bonnefon         if ( j < recent_files.count() ) {
904bb02e0acSNicolas Bonnefon             QString text = tr("&%1 %2").arg(j + 1).arg(strippedName(recent_files[j]));
905bb02e0acSNicolas Bonnefon             recentFileActions[j]->setText( text );
906bb02e0acSNicolas Bonnefon             recentFileActions[j]->setToolTip( recent_files[j] );
907bb02e0acSNicolas Bonnefon             recentFileActions[j]->setData( recent_files[j] );
908bb02e0acSNicolas Bonnefon             recentFileActions[j]->setVisible( true );
909bb02e0acSNicolas Bonnefon         }
910bb02e0acSNicolas Bonnefon         else {
911bb02e0acSNicolas Bonnefon             recentFileActions[j]->setVisible( false );
912bb02e0acSNicolas Bonnefon         }
913bb02e0acSNicolas Bonnefon     }
914bb02e0acSNicolas Bonnefon 
915bb02e0acSNicolas Bonnefon     // separatorAction->setVisible(!recentFiles.isEmpty());
916bb02e0acSNicolas Bonnefon }
917bb02e0acSNicolas Bonnefon 
9185fa25391SNicolas Bonnefon // Update our menu bar to match the settings of the crawler
9195fa25391SNicolas Bonnefon // (used when the tab is changed)
9205fa25391SNicolas Bonnefon void MainWindow::updateMenuBarFromDocument( const CrawlerWidget* crawler )
9215fa25391SNicolas Bonnefon {
9225fa25391SNicolas Bonnefon     auto encoding = crawler->encodingSetting();
9235fa25391SNicolas Bonnefon     encodingAction[static_cast<int>( encoding )]->setChecked( true );
924*78dc0425SNicolas Bonnefon     bool follow = crawler->isFollowEnabled();
925*78dc0425SNicolas Bonnefon     followAction->setChecked( follow );
9265fa25391SNicolas Bonnefon }
9275fa25391SNicolas Bonnefon 
9285fa25391SNicolas Bonnefon // Update the top info line from the session
9295fa25391SNicolas Bonnefon void MainWindow::updateInfoLine()
9305fa25391SNicolas Bonnefon {
9315fa25391SNicolas Bonnefon     QLocale defaultLocale;
9325fa25391SNicolas Bonnefon 
9335fa25391SNicolas Bonnefon     // Following should always work as we will only receive enter
9345fa25391SNicolas Bonnefon     // this slot if there is a crawler connected.
9355fa25391SNicolas Bonnefon     QString current_file =
9365fa25391SNicolas Bonnefon         session_->getFilename( currentCrawlerWidget() ).c_str();
9375fa25391SNicolas Bonnefon 
9385fa25391SNicolas Bonnefon     uint64_t fileSize;
9395fa25391SNicolas Bonnefon     uint32_t fileNbLine;
9405fa25391SNicolas Bonnefon     QDateTime lastModified;
9415fa25391SNicolas Bonnefon 
9425fa25391SNicolas Bonnefon     session_->getFileInfo( currentCrawlerWidget(),
9435fa25391SNicolas Bonnefon             &fileSize, &fileNbLine, &lastModified );
9445fa25391SNicolas Bonnefon     if ( lastModified.isValid() ) {
9455fa25391SNicolas Bonnefon         const QString date =
9465fa25391SNicolas Bonnefon             defaultLocale.toString( lastModified, QLocale::NarrowFormat );
9475fa25391SNicolas Bonnefon         infoLine->setText( tr( "%1 (%2 - %3 lines - modified on %4 - %5)" )
9485fa25391SNicolas Bonnefon                 .arg(current_file).arg(readableSize(fileSize))
9495fa25391SNicolas Bonnefon                 .arg(fileNbLine).arg( date )
9505fa25391SNicolas Bonnefon                 .arg(currentCrawlerWidget()->encodingText()) );
9515fa25391SNicolas Bonnefon     }
9525fa25391SNicolas Bonnefon     else {
9535fa25391SNicolas Bonnefon         infoLine->setText( tr( "%1 (%2 - %3 lines - %4)" )
9545fa25391SNicolas Bonnefon                 .arg(current_file).arg(readableSize(fileSize))
9555fa25391SNicolas Bonnefon                 .arg(fileNbLine)
9565fa25391SNicolas Bonnefon                 .arg(currentCrawlerWidget()->encodingText()) );
9575fa25391SNicolas Bonnefon     }
9585fa25391SNicolas Bonnefon }
9595fa25391SNicolas Bonnefon 
960bb02e0acSNicolas Bonnefon // Write settings to permanent storage
961bb02e0acSNicolas Bonnefon void MainWindow::writeSettings()
962bb02e0acSNicolas Bonnefon {
963bb02e0acSNicolas Bonnefon     // Save the session
964b57881faSNicolas Bonnefon     // Generate the ordered list of widgets and their topLine
965a44d09bcSNicolas Bonnefon     std::vector<
966a44d09bcSNicolas Bonnefon             std::tuple<const ViewInterface*, uint64_t, std::shared_ptr<const ViewContextInterface>>
967a44d09bcSNicolas Bonnefon         > widget_list;
968b57881faSNicolas Bonnefon     for ( int i = 0; i < mainTabWidget_.count(); ++i )
969a44d09bcSNicolas Bonnefon     {
970a44d09bcSNicolas Bonnefon         auto view = dynamic_cast<const ViewInterface*>( mainTabWidget_.widget( i ) );
971a44d09bcSNicolas Bonnefon         widget_list.push_back( std::make_tuple(
972a44d09bcSNicolas Bonnefon                 view,
973a44d09bcSNicolas Bonnefon                 0UL,
974a44d09bcSNicolas Bonnefon                 view->context() ) );
975a44d09bcSNicolas Bonnefon     }
976b76966a6SNicolas Bonnefon     session_->save( widget_list, saveGeometry() );
977bb02e0acSNicolas Bonnefon 
978bb02e0acSNicolas Bonnefon     // User settings
979bb02e0acSNicolas Bonnefon     GetPersistentInfo().save( QString( "settings" ) );
980bb02e0acSNicolas Bonnefon }
981bb02e0acSNicolas Bonnefon 
982bb02e0acSNicolas Bonnefon // Read settings from permanent storage
983bb02e0acSNicolas Bonnefon void MainWindow::readSettings()
984bb02e0acSNicolas Bonnefon {
985bb02e0acSNicolas Bonnefon     // Get and restore the session
986b57881faSNicolas Bonnefon     // GetPersistentInfo().retrieve( QString( "session" ) );
987b57881faSNicolas Bonnefon     // SessionInfo session = Persistent<SessionInfo>( "session" );
9880a90ca6aSNicolas Bonnefon     /*
9890a90ca6aSNicolas Bonnefon      * FIXME: should be in the session
9900a90ca6aSNicolas Bonnefon     crawlerWidget->restoreState( session.crawlerState() );
9910a90ca6aSNicolas Bonnefon     */
992bb02e0acSNicolas Bonnefon 
993bb02e0acSNicolas Bonnefon     // History of recent files
994bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "recentFiles" ) );
995bb02e0acSNicolas Bonnefon     updateRecentFileActions();
996bb02e0acSNicolas Bonnefon 
997b57881faSNicolas Bonnefon     // GetPersistentInfo().retrieve( QString( "settings" ) );
998bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "filterSet" ) );
999bb02e0acSNicolas Bonnefon }
1000bb02e0acSNicolas Bonnefon 
1001b423cd88SNicolas Bonnefon void MainWindow::displayQuickFindBar( QuickFindMux::QFDirection direction )
1002b423cd88SNicolas Bonnefon {
1003b423cd88SNicolas Bonnefon     LOG(logDEBUG) << "MainWindow::displayQuickFindBar";
1004b423cd88SNicolas Bonnefon 
10058570d8d2SNicolas Bonnefon     // Warn crawlers so they can save the position of the focus in order
10068570d8d2SNicolas Bonnefon     // to do incremental search in the right view.
10078570d8d2SNicolas Bonnefon     emit enteringQuickFind();
1008b423cd88SNicolas Bonnefon 
1009b423cd88SNicolas Bonnefon     quickFindMux_.setDirection( direction );
1010b423cd88SNicolas Bonnefon     quickFindWidget_.userActivate();
1011b423cd88SNicolas Bonnefon }
1012b423cd88SNicolas Bonnefon 
1013bb02e0acSNicolas Bonnefon // Returns the size in human readable format
10140a90ca6aSNicolas Bonnefon static QString readableSize( qint64 size )
1015bb02e0acSNicolas Bonnefon {
1016bb02e0acSNicolas Bonnefon     static const QString sizeStrs[] = {
10170a90ca6aSNicolas Bonnefon         QObject::tr("B"), QObject::tr("KiB"), QObject::tr("MiB"),
10180a90ca6aSNicolas Bonnefon         QObject::tr("GiB"), QObject::tr("TiB") };
1019bb02e0acSNicolas Bonnefon 
1020bb02e0acSNicolas Bonnefon     QLocale defaultLocale;
1021bb02e0acSNicolas Bonnefon     unsigned int i;
1022bb02e0acSNicolas Bonnefon     double humanSize = size;
1023bb02e0acSNicolas Bonnefon 
1024bb02e0acSNicolas Bonnefon     for ( i=0; i+1 < (sizeof(sizeStrs)/sizeof(QString)) && (humanSize/1024.0) >= 1024.0; i++ )
1025bb02e0acSNicolas Bonnefon         humanSize /= 1024.0;
1026bb02e0acSNicolas Bonnefon 
1027bb02e0acSNicolas Bonnefon     if ( humanSize >= 1024.0 ) {
1028bb02e0acSNicolas Bonnefon         humanSize /= 1024.0;
1029bb02e0acSNicolas Bonnefon         i++;
1030bb02e0acSNicolas Bonnefon     }
1031bb02e0acSNicolas Bonnefon 
1032bb02e0acSNicolas Bonnefon     QString output;
1033bb02e0acSNicolas Bonnefon     if ( i == 0 )
1034bb02e0acSNicolas Bonnefon         // No decimal part if we display straight bytes.
1035bb02e0acSNicolas Bonnefon         output = defaultLocale.toString( (int) humanSize );
1036bb02e0acSNicolas Bonnefon     else
1037bb02e0acSNicolas Bonnefon         output = defaultLocale.toString( humanSize, 'f', 1 );
1038bb02e0acSNicolas Bonnefon 
1039bb02e0acSNicolas Bonnefon     output += QString(" ") + sizeStrs[i];
1040bb02e0acSNicolas Bonnefon 
1041bb02e0acSNicolas Bonnefon     return output;
1042bb02e0acSNicolas Bonnefon }
1043