xref: /glogg/src/mainwindow.cpp (revision 0a90ca6a779d815722f77dfd01ae1f9373033a76)
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 // 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>
25eb6a8f99SNicolas Bonnefon 
26eb6a8f99SNicolas Bonnefon #include <QAction>
27eb6a8f99SNicolas Bonnefon #include <QDesktopWidget>
28eb6a8f99SNicolas Bonnefon #include <QMenuBar>
29eb6a8f99SNicolas Bonnefon #include <QToolBar>
30eb6a8f99SNicolas Bonnefon #include <QFileInfo>
31eb6a8f99SNicolas Bonnefon #include <QFileDialog>
32eb6a8f99SNicolas Bonnefon #include <QClipboard>
33eb6a8f99SNicolas Bonnefon #include <QMessageBox>
34eb6a8f99SNicolas Bonnefon #include <QCloseEvent>
35eb6a8f99SNicolas Bonnefon #include <QDragEnterEvent>
36eb6a8f99SNicolas Bonnefon #include <QMimeData>
37eb6a8f99SNicolas Bonnefon #include <QUrl>
38bb02e0acSNicolas Bonnefon 
39bb02e0acSNicolas Bonnefon #include "log.h"
40bb02e0acSNicolas Bonnefon 
41bb02e0acSNicolas Bonnefon #include "mainwindow.h"
42bb02e0acSNicolas Bonnefon 
43bb02e0acSNicolas Bonnefon #include "sessioninfo.h"
44bb02e0acSNicolas Bonnefon #include "recentfiles.h"
45bb02e0acSNicolas Bonnefon #include "crawlerwidget.h"
46bb02e0acSNicolas Bonnefon #include "filtersdialog.h"
47bb02e0acSNicolas Bonnefon #include "optionsdialog.h"
48bb02e0acSNicolas Bonnefon #include "persistentinfo.h"
49bb02e0acSNicolas Bonnefon #include "savedsearches.h"
50bb02e0acSNicolas Bonnefon #include "menuactiontooltipbehavior.h"
51bb02e0acSNicolas Bonnefon 
52*0a90ca6aSNicolas Bonnefon // Returns the size in human readable format
53*0a90ca6aSNicolas Bonnefon static QString readableSize( qint64 size );
54*0a90ca6aSNicolas Bonnefon 
55d96f3f21SNicolas Bonnefon MainWindow::MainWindow( std::unique_ptr<Session> session ) :
56d96f3f21SNicolas Bonnefon     session_( std::move( session )  ),
57d96f3f21SNicolas Bonnefon     recentFiles( Persistent<RecentFiles>( "recentFiles" ) ),
58d96f3f21SNicolas Bonnefon     mainIcon_()
59bb02e0acSNicolas Bonnefon {
60bb02e0acSNicolas Bonnefon     createActions();
61bb02e0acSNicolas Bonnefon     createMenus();
62bb02e0acSNicolas Bonnefon     // createContextMenu();
63bb02e0acSNicolas Bonnefon     createToolBars();
64bb02e0acSNicolas Bonnefon     // createStatusBar();
65bb02e0acSNicolas Bonnefon 
66bb02e0acSNicolas Bonnefon     setAcceptDrops( true );
67bb02e0acSNicolas Bonnefon 
68bb02e0acSNicolas Bonnefon     // Default geometry
69bb02e0acSNicolas Bonnefon     const QRect geometry = QApplication::desktop()->availableGeometry( this );
70bb02e0acSNicolas Bonnefon     setGeometry( geometry.x() + 20, geometry.y() + 40,
71bb02e0acSNicolas Bonnefon             geometry.width() - 140, geometry.height() - 140 );
72bb02e0acSNicolas Bonnefon 
73bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/16x16/glogg.png" );
74bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/24x24/glogg.png" );
75bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/32x32/glogg.png" );
76bb02e0acSNicolas Bonnefon     mainIcon_.addFile( ":/images/hicolor/48x48/glogg.png" );
77bb02e0acSNicolas Bonnefon 
78bb02e0acSNicolas Bonnefon     setWindowIcon( mainIcon_ );
79f0708ca8SNicolas Bonnefon 
80*0a90ca6aSNicolas Bonnefon     readSettings();
81*0a90ca6aSNicolas Bonnefon 
82f0708ca8SNicolas Bonnefon     crawlerWidget = nullptr;
83bb02e0acSNicolas Bonnefon }
84bb02e0acSNicolas Bonnefon 
85bb02e0acSNicolas Bonnefon void MainWindow::loadInitialFile( QString fileName )
86bb02e0acSNicolas Bonnefon {
87bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "loadInitialFile";
88bb02e0acSNicolas Bonnefon 
89bb02e0acSNicolas Bonnefon     // Is there a file passed as argument?
90bb02e0acSNicolas Bonnefon     if ( !fileName.isEmpty() )
91bb02e0acSNicolas Bonnefon         loadFile( fileName );
92bb02e0acSNicolas Bonnefon     else if ( !previousFile.isEmpty() )
93bb02e0acSNicolas Bonnefon         loadFile( previousFile );
94bb02e0acSNicolas Bonnefon }
95bb02e0acSNicolas Bonnefon 
96bb02e0acSNicolas Bonnefon //
97bb02e0acSNicolas Bonnefon // Private functions
98bb02e0acSNicolas Bonnefon //
99bb02e0acSNicolas Bonnefon 
100bb02e0acSNicolas Bonnefon // Menu actions
101bb02e0acSNicolas Bonnefon void MainWindow::createActions()
102bb02e0acSNicolas Bonnefon {
103bb02e0acSNicolas Bonnefon     Configuration& config = Persistent<Configuration>( "settings" );
104bb02e0acSNicolas Bonnefon 
105bb02e0acSNicolas Bonnefon     openAction = new QAction(tr("&Open..."), this);
106bb02e0acSNicolas Bonnefon     openAction->setShortcut(QKeySequence::Open);
107bb02e0acSNicolas Bonnefon     openAction->setIcon( QIcon(":/images/open16.png") );
108bb02e0acSNicolas Bonnefon     openAction->setStatusTip(tr("Open a file"));
109bb02e0acSNicolas Bonnefon     connect(openAction, SIGNAL(triggered()), this, SLOT(open()));
110bb02e0acSNicolas Bonnefon 
111bb02e0acSNicolas Bonnefon     // Recent files
112bb02e0acSNicolas Bonnefon     for (int i = 0; i < MaxRecentFiles; ++i) {
113bb02e0acSNicolas Bonnefon         recentFileActions[i] = new QAction(this);
114bb02e0acSNicolas Bonnefon         recentFileActions[i]->setVisible(false);
115bb02e0acSNicolas Bonnefon         connect(recentFileActions[i], SIGNAL(triggered()),
116bb02e0acSNicolas Bonnefon                 this, SLOT(openRecentFile()));
117bb02e0acSNicolas Bonnefon     }
118bb02e0acSNicolas Bonnefon 
119bb02e0acSNicolas Bonnefon     exitAction = new QAction(tr("E&xit"), this);
120bb02e0acSNicolas Bonnefon     exitAction->setShortcut(tr("Ctrl+Q"));
121bb02e0acSNicolas Bonnefon     exitAction->setStatusTip(tr("Exit the application"));
122bb02e0acSNicolas Bonnefon     connect( exitAction, SIGNAL(triggered()), this, SLOT(close()) );
123bb02e0acSNicolas Bonnefon 
124bb02e0acSNicolas Bonnefon     copyAction = new QAction(tr("&Copy"), this);
125bb02e0acSNicolas Bonnefon     copyAction->setShortcut(QKeySequence::Copy);
126bb02e0acSNicolas Bonnefon     copyAction->setStatusTip(tr("Copy the selection"));
127bb02e0acSNicolas Bonnefon     connect( copyAction, SIGNAL(triggered()), this, SLOT(copy()) );
128bb02e0acSNicolas Bonnefon 
129bb02e0acSNicolas Bonnefon     selectAllAction = new QAction(tr("Select &All"), this);
130bb02e0acSNicolas Bonnefon     selectAllAction->setShortcut(tr("Ctrl+A"));
131bb02e0acSNicolas Bonnefon     selectAllAction->setStatusTip(tr("Select all the text"));
132bb02e0acSNicolas Bonnefon     connect( selectAllAction, SIGNAL(triggered()),
133bb02e0acSNicolas Bonnefon              this, SLOT( selectAll() ) );
134bb02e0acSNicolas Bonnefon 
135bb02e0acSNicolas Bonnefon     findAction = new QAction(tr("&Find..."), this);
136bb02e0acSNicolas Bonnefon     findAction->setShortcut(QKeySequence::Find);
137bb02e0acSNicolas Bonnefon     findAction->setStatusTip(tr("Find the text"));
138bb02e0acSNicolas Bonnefon     connect( findAction, SIGNAL(triggered()),
139bb02e0acSNicolas Bonnefon             this, SLOT( find() ) );
140bb02e0acSNicolas Bonnefon 
141bb02e0acSNicolas Bonnefon     overviewVisibleAction = new QAction( tr("Matches &overview"), this );
142bb02e0acSNicolas Bonnefon     overviewVisibleAction->setCheckable( true );
143bb02e0acSNicolas Bonnefon     overviewVisibleAction->setChecked( config.isOverviewVisible() );
144bb02e0acSNicolas Bonnefon     connect( overviewVisibleAction, SIGNAL( toggled( bool ) ),
145bb02e0acSNicolas Bonnefon             this, SLOT( toggleOverviewVisibility( bool )) );
146bb02e0acSNicolas Bonnefon 
147bb02e0acSNicolas Bonnefon     lineNumbersVisibleInMainAction =
148bb02e0acSNicolas Bonnefon         new QAction( tr("Line &numbers in main view"), this );
149bb02e0acSNicolas Bonnefon     lineNumbersVisibleInMainAction->setCheckable( true );
150bb02e0acSNicolas Bonnefon     lineNumbersVisibleInMainAction->setChecked( config.mainLineNumbersVisible() );
151bb02e0acSNicolas Bonnefon     connect( lineNumbersVisibleInMainAction, SIGNAL( toggled( bool ) ),
152bb02e0acSNicolas Bonnefon             this, SLOT( toggleMainLineNumbersVisibility( bool )) );
153bb02e0acSNicolas Bonnefon 
154bb02e0acSNicolas Bonnefon     lineNumbersVisibleInFilteredAction =
155bb02e0acSNicolas Bonnefon         new QAction( tr("Line &numbers in filtered view"), this );
156bb02e0acSNicolas Bonnefon     lineNumbersVisibleInFilteredAction->setCheckable( true );
157bb02e0acSNicolas Bonnefon     lineNumbersVisibleInFilteredAction->setChecked( config.filteredLineNumbersVisible() );
158bb02e0acSNicolas Bonnefon     connect( lineNumbersVisibleInFilteredAction, SIGNAL( toggled( bool ) ),
159bb02e0acSNicolas Bonnefon             this, SLOT( toggleFilteredLineNumbersVisibility( bool )) );
160bb02e0acSNicolas Bonnefon 
161bb02e0acSNicolas Bonnefon     followAction = new QAction( tr("&Follow File"), this );
162bb02e0acSNicolas Bonnefon     followAction->setShortcut(Qt::Key_F);
163bb02e0acSNicolas Bonnefon     followAction->setCheckable(true);
164bb02e0acSNicolas Bonnefon     connect( followAction, SIGNAL(toggled( bool )),
165bb02e0acSNicolas Bonnefon             this, SIGNAL(followSet( bool )) );
166bb02e0acSNicolas Bonnefon 
167bb02e0acSNicolas Bonnefon     reloadAction = new QAction( tr("&Reload"), this );
168bb02e0acSNicolas Bonnefon     reloadAction->setShortcut(QKeySequence::Refresh);
169bb02e0acSNicolas Bonnefon     reloadAction->setIcon( QIcon(":/images/reload16.png") );
170bb02e0acSNicolas Bonnefon     connect( reloadAction, SIGNAL(triggered()), this, SLOT(reload()) );
171bb02e0acSNicolas Bonnefon 
172bb02e0acSNicolas Bonnefon     stopAction = new QAction( tr("&Stop"), this );
173bb02e0acSNicolas Bonnefon     stopAction->setIcon( QIcon(":/images/stop16.png") );
174bb02e0acSNicolas Bonnefon     stopAction->setEnabled( false );
175bb02e0acSNicolas Bonnefon     connect( stopAction, SIGNAL(triggered()), this, SLOT(stop()) );
176bb02e0acSNicolas Bonnefon 
177bb02e0acSNicolas Bonnefon     filtersAction = new QAction(tr("&Filters..."), this);
178bb02e0acSNicolas Bonnefon     filtersAction->setStatusTip(tr("Show the Filters box"));
179bb02e0acSNicolas Bonnefon     connect( filtersAction, SIGNAL(triggered()), this, SLOT(filters()) );
180bb02e0acSNicolas Bonnefon 
181bb02e0acSNicolas Bonnefon     optionsAction = new QAction(tr("&Options..."), this);
182bb02e0acSNicolas Bonnefon     optionsAction->setStatusTip(tr("Show the Options box"));
183bb02e0acSNicolas Bonnefon     connect( optionsAction, SIGNAL(triggered()), this, SLOT(options()) );
184bb02e0acSNicolas Bonnefon 
185bb02e0acSNicolas Bonnefon     aboutAction = new QAction(tr("&About"), this);
186bb02e0acSNicolas Bonnefon     aboutAction->setStatusTip(tr("Show the About box"));
187bb02e0acSNicolas Bonnefon     connect( aboutAction, SIGNAL(triggered()), this, SLOT(about()) );
188bb02e0acSNicolas Bonnefon 
189bb02e0acSNicolas Bonnefon     aboutQtAction = new QAction(tr("About &Qt"), this);
190bb02e0acSNicolas Bonnefon     aboutAction->setStatusTip(tr("Show the Qt library's About box"));
191bb02e0acSNicolas Bonnefon     connect( aboutQtAction, SIGNAL(triggered()), this, SLOT(aboutQt()) );
192bb02e0acSNicolas Bonnefon }
193bb02e0acSNicolas Bonnefon 
194bb02e0acSNicolas Bonnefon void MainWindow::createMenus()
195bb02e0acSNicolas Bonnefon {
196bb02e0acSNicolas Bonnefon     fileMenu = menuBar()->addMenu( tr("&File") );
197bb02e0acSNicolas Bonnefon     fileMenu->addAction( openAction );
198bb02e0acSNicolas Bonnefon     fileMenu->addSeparator();
199bb02e0acSNicolas Bonnefon     for (int i = 0; i < MaxRecentFiles; ++i) {
200bb02e0acSNicolas Bonnefon         fileMenu->addAction( recentFileActions[i] );
201bb02e0acSNicolas Bonnefon         recentFileActionBehaviors[i] =
202bb02e0acSNicolas Bonnefon             new MenuActionToolTipBehavior(recentFileActions[i], fileMenu, this);
203bb02e0acSNicolas Bonnefon     }
204bb02e0acSNicolas Bonnefon     fileMenu->addSeparator();
205bb02e0acSNicolas Bonnefon     fileMenu->addAction( exitAction );
206bb02e0acSNicolas Bonnefon 
207bb02e0acSNicolas Bonnefon     editMenu = menuBar()->addMenu( tr("&Edit") );
208bb02e0acSNicolas Bonnefon     editMenu->addAction( copyAction );
209bb02e0acSNicolas Bonnefon     editMenu->addAction( selectAllAction );
210bb02e0acSNicolas Bonnefon     editMenu->addSeparator();
211bb02e0acSNicolas Bonnefon     editMenu->addAction( findAction );
212bb02e0acSNicolas Bonnefon 
213bb02e0acSNicolas Bonnefon     viewMenu = menuBar()->addMenu( tr("&View") );
214bb02e0acSNicolas Bonnefon     viewMenu->addAction( overviewVisibleAction );
215bb02e0acSNicolas Bonnefon     viewMenu->addSeparator();
216bb02e0acSNicolas Bonnefon     viewMenu->addAction( lineNumbersVisibleInMainAction );
217bb02e0acSNicolas Bonnefon     viewMenu->addAction( lineNumbersVisibleInFilteredAction );
218bb02e0acSNicolas Bonnefon     viewMenu->addSeparator();
219bb02e0acSNicolas Bonnefon     viewMenu->addAction( followAction );
220bb02e0acSNicolas Bonnefon     viewMenu->addSeparator();
221bb02e0acSNicolas Bonnefon     viewMenu->addAction( reloadAction );
222bb02e0acSNicolas Bonnefon 
223bb02e0acSNicolas Bonnefon     toolsMenu = menuBar()->addMenu( tr("&Tools") );
224bb02e0acSNicolas Bonnefon     toolsMenu->addAction( filtersAction );
225bb02e0acSNicolas Bonnefon     toolsMenu->addSeparator();
226bb02e0acSNicolas Bonnefon     toolsMenu->addAction( optionsAction );
227bb02e0acSNicolas Bonnefon 
228bb02e0acSNicolas Bonnefon     menuBar()->addSeparator();
229bb02e0acSNicolas Bonnefon 
230bb02e0acSNicolas Bonnefon     helpMenu = menuBar()->addMenu( tr("&Help") );
231bb02e0acSNicolas Bonnefon     helpMenu->addAction( aboutAction );
232bb02e0acSNicolas Bonnefon }
233bb02e0acSNicolas Bonnefon 
234bb02e0acSNicolas Bonnefon void MainWindow::createToolBars()
235bb02e0acSNicolas Bonnefon {
236bb02e0acSNicolas Bonnefon     infoLine = new InfoLine();
237bb02e0acSNicolas Bonnefon     infoLine->setFrameStyle( QFrame::WinPanel | QFrame::Sunken );
238bb02e0acSNicolas Bonnefon     infoLine->setLineWidth( 0 );
239bb02e0acSNicolas Bonnefon 
240bb02e0acSNicolas Bonnefon     lineNbField = new QLabel( );
241bb02e0acSNicolas Bonnefon     lineNbField->setText( "Line 0" );
242bb02e0acSNicolas Bonnefon     lineNbField->setAlignment( Qt::AlignLeft | Qt::AlignVCenter );
243bb02e0acSNicolas Bonnefon     lineNbField->setMinimumSize(
244bb02e0acSNicolas Bonnefon             lineNbField->fontMetrics().size( 0, "Line 0000000") );
245bb02e0acSNicolas Bonnefon 
246bb02e0acSNicolas Bonnefon     toolBar = addToolBar( tr("&Toolbar") );
247bb02e0acSNicolas Bonnefon     toolBar->setIconSize( QSize( 16, 16 ) );
248bb02e0acSNicolas Bonnefon     toolBar->setMovable( false );
249bb02e0acSNicolas Bonnefon     toolBar->addAction( openAction );
250bb02e0acSNicolas Bonnefon     toolBar->addAction( reloadAction );
251bb02e0acSNicolas Bonnefon     toolBar->addWidget( infoLine );
252bb02e0acSNicolas Bonnefon     toolBar->addAction( stopAction );
253bb02e0acSNicolas Bonnefon     toolBar->addWidget( lineNbField );
254bb02e0acSNicolas Bonnefon }
255bb02e0acSNicolas Bonnefon 
256bb02e0acSNicolas Bonnefon //
257bb02e0acSNicolas Bonnefon // Slots
258bb02e0acSNicolas Bonnefon //
259bb02e0acSNicolas Bonnefon 
260bb02e0acSNicolas Bonnefon // Opens the file selection dialog to select a new log file
261bb02e0acSNicolas Bonnefon void MainWindow::open()
262bb02e0acSNicolas Bonnefon {
263bb02e0acSNicolas Bonnefon     QString defaultDir = ".";
264bb02e0acSNicolas Bonnefon 
265bb02e0acSNicolas Bonnefon     // Default to the path of the current file if there is one
266bb02e0acSNicolas Bonnefon     if ( !currentFile.isEmpty() ) {
267bb02e0acSNicolas Bonnefon         QFileInfo fileInfo = QFileInfo( currentFile );
268bb02e0acSNicolas Bonnefon         defaultDir = fileInfo.path();
269bb02e0acSNicolas Bonnefon     }
270bb02e0acSNicolas Bonnefon 
271bb02e0acSNicolas Bonnefon     QString fileName = QFileDialog::getOpenFileName(this,
272bb02e0acSNicolas Bonnefon             tr("Open file"), defaultDir, tr("All files (*)"));
273bb02e0acSNicolas Bonnefon     if (!fileName.isEmpty())
274bb02e0acSNicolas Bonnefon         loadFile(fileName);
275bb02e0acSNicolas Bonnefon }
276bb02e0acSNicolas Bonnefon 
277bb02e0acSNicolas Bonnefon // Opens a log file from the recent files list
278bb02e0acSNicolas Bonnefon void MainWindow::openRecentFile()
279bb02e0acSNicolas Bonnefon {
280bb02e0acSNicolas Bonnefon     QAction* action = qobject_cast<QAction*>(sender());
281bb02e0acSNicolas Bonnefon     if (action)
282bb02e0acSNicolas Bonnefon         loadFile(action->data().toString());
283bb02e0acSNicolas Bonnefon }
284bb02e0acSNicolas Bonnefon 
285bb02e0acSNicolas Bonnefon // Select all the text in the currently selected view
286bb02e0acSNicolas Bonnefon void MainWindow::selectAll()
287bb02e0acSNicolas Bonnefon {
288bb02e0acSNicolas Bonnefon     crawlerWidget->selectAll();
289bb02e0acSNicolas Bonnefon }
290bb02e0acSNicolas Bonnefon 
291bb02e0acSNicolas Bonnefon // Copy the currently selected line into the clipboard
292bb02e0acSNicolas Bonnefon void MainWindow::copy()
293bb02e0acSNicolas Bonnefon {
294bb02e0acSNicolas Bonnefon     static QClipboard* clipboard = QApplication::clipboard();
295bb02e0acSNicolas Bonnefon 
296bb02e0acSNicolas Bonnefon     clipboard->setText( crawlerWidget->getSelectedText() );
297bb02e0acSNicolas Bonnefon 
298bb02e0acSNicolas Bonnefon     // Put it in the global selection as well (X11 only)
299bb02e0acSNicolas Bonnefon     clipboard->setText( crawlerWidget->getSelectedText(),
300bb02e0acSNicolas Bonnefon             QClipboard::Selection );
301bb02e0acSNicolas Bonnefon }
302bb02e0acSNicolas Bonnefon 
303bb02e0acSNicolas Bonnefon // Display the QuickFind bar
304bb02e0acSNicolas Bonnefon void MainWindow::find()
305bb02e0acSNicolas Bonnefon {
306bb02e0acSNicolas Bonnefon     crawlerWidget->displayQuickFindBar( QuickFindMux::Forward );
307bb02e0acSNicolas Bonnefon }
308bb02e0acSNicolas Bonnefon 
309bb02e0acSNicolas Bonnefon // Reload the current log file
310bb02e0acSNicolas Bonnefon void MainWindow::reload()
311bb02e0acSNicolas Bonnefon {
312bb02e0acSNicolas Bonnefon     if ( !currentFile.isEmpty() )
313bb02e0acSNicolas Bonnefon         loadFile( currentFile );
314bb02e0acSNicolas Bonnefon }
315bb02e0acSNicolas Bonnefon 
316bb02e0acSNicolas Bonnefon // Stop the loading operation
317bb02e0acSNicolas Bonnefon void MainWindow::stop()
318bb02e0acSNicolas Bonnefon {
31978b9e3f6SNicolas Bonnefon     session_->stopLoading( crawlerWidget );
320bb02e0acSNicolas Bonnefon }
321bb02e0acSNicolas Bonnefon 
322bb02e0acSNicolas Bonnefon // Opens the 'Filters' dialog box
323bb02e0acSNicolas Bonnefon void MainWindow::filters()
324bb02e0acSNicolas Bonnefon {
325bb02e0acSNicolas Bonnefon     FiltersDialog dialog(this);
326bb02e0acSNicolas Bonnefon     connect(&dialog, SIGNAL( optionsChanged() ), crawlerWidget, SLOT( applyConfiguration() ));
327bb02e0acSNicolas Bonnefon     dialog.exec();
328bb02e0acSNicolas Bonnefon }
329bb02e0acSNicolas Bonnefon 
330bb02e0acSNicolas Bonnefon // Opens the 'Options' modal dialog box
331bb02e0acSNicolas Bonnefon void MainWindow::options()
332bb02e0acSNicolas Bonnefon {
333bb02e0acSNicolas Bonnefon     OptionsDialog dialog(this);
334bb02e0acSNicolas Bonnefon     connect(&dialog, SIGNAL( optionsChanged() ), crawlerWidget, SLOT( applyConfiguration() ));
335bb02e0acSNicolas Bonnefon     dialog.exec();
336bb02e0acSNicolas Bonnefon }
337bb02e0acSNicolas Bonnefon 
338bb02e0acSNicolas Bonnefon // Opens the 'About' dialog box.
339bb02e0acSNicolas Bonnefon void MainWindow::about()
340bb02e0acSNicolas Bonnefon {
341bb02e0acSNicolas Bonnefon     QMessageBox::about(this, tr("About glogg"),
342bb02e0acSNicolas Bonnefon             tr("<h2>glogg " GLOGG_VERSION "</h2>"
343bb02e0acSNicolas Bonnefon                 "<p>A fast, advanced log explorer."
344bb02e0acSNicolas Bonnefon #ifdef GLOGG_COMMIT
345bb02e0acSNicolas Bonnefon                 "<p>Built " GLOGG_DATE " from " GLOGG_COMMIT
346bb02e0acSNicolas Bonnefon #endif
347bb02e0acSNicolas Bonnefon                 "<p>Copyright &copy; 2009, 2010, 2011, 2012, 2013 Nicolas Bonnefon and other contributors"
348bb02e0acSNicolas Bonnefon                 "<p>You may modify and redistribute the program under the terms of the GPL (version 3 or later)." ) );
349bb02e0acSNicolas Bonnefon }
350bb02e0acSNicolas Bonnefon 
351bb02e0acSNicolas Bonnefon // Opens the 'About Qt' dialog box.
352bb02e0acSNicolas Bonnefon void MainWindow::aboutQt()
353bb02e0acSNicolas Bonnefon {
354bb02e0acSNicolas Bonnefon }
355bb02e0acSNicolas Bonnefon 
356bb02e0acSNicolas Bonnefon void MainWindow::toggleOverviewVisibility( bool isVisible )
357bb02e0acSNicolas Bonnefon {
358bb02e0acSNicolas Bonnefon     Configuration& config = Persistent<Configuration>( "settings" );
359bb02e0acSNicolas Bonnefon     config.setOverviewVisible( isVisible );
360bb02e0acSNicolas Bonnefon     emit optionsChanged();
361bb02e0acSNicolas Bonnefon }
362bb02e0acSNicolas Bonnefon 
363bb02e0acSNicolas Bonnefon void MainWindow::toggleMainLineNumbersVisibility( bool isVisible )
364bb02e0acSNicolas Bonnefon {
365bb02e0acSNicolas Bonnefon     Configuration& config = Persistent<Configuration>( "settings" );
366bb02e0acSNicolas Bonnefon     config.setMainLineNumbersVisible( isVisible );
367bb02e0acSNicolas Bonnefon     emit optionsChanged();
368bb02e0acSNicolas Bonnefon }
369bb02e0acSNicolas Bonnefon 
370bb02e0acSNicolas Bonnefon void MainWindow::toggleFilteredLineNumbersVisibility( bool isVisible )
371bb02e0acSNicolas Bonnefon {
372bb02e0acSNicolas Bonnefon     Configuration& config = Persistent<Configuration>( "settings" );
373bb02e0acSNicolas Bonnefon     config.setFilteredLineNumbersVisible( isVisible );
374bb02e0acSNicolas Bonnefon     emit optionsChanged();
375bb02e0acSNicolas Bonnefon }
376bb02e0acSNicolas Bonnefon 
377bb02e0acSNicolas Bonnefon void MainWindow::disableFollow()
378bb02e0acSNicolas Bonnefon {
379bb02e0acSNicolas Bonnefon     followAction->setChecked( false );
380bb02e0acSNicolas Bonnefon }
381bb02e0acSNicolas Bonnefon 
382bb02e0acSNicolas Bonnefon void MainWindow::lineNumberHandler( int line )
383bb02e0acSNicolas Bonnefon {
384bb02e0acSNicolas Bonnefon     // The line number received is the internal (starts at 0)
385bb02e0acSNicolas Bonnefon     lineNbField->setText( tr( "Line %1" ).arg( line + 1 ) );
386bb02e0acSNicolas Bonnefon }
387bb02e0acSNicolas Bonnefon 
388bb02e0acSNicolas Bonnefon void MainWindow::updateLoadingProgress( int progress )
389bb02e0acSNicolas Bonnefon {
390bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "Loading progress: " << progress;
391bb02e0acSNicolas Bonnefon 
392bb02e0acSNicolas Bonnefon     // We ignore 0% and 100% to avoid a flash when the file (or update)
393bb02e0acSNicolas Bonnefon     // is very short.
394bb02e0acSNicolas Bonnefon     if ( progress > 0 && progress < 100 ) {
395bb02e0acSNicolas Bonnefon         infoLine->setText( loadingFileName + tr( " - Indexing lines... (%1 %)" ).arg( progress ) );
396bb02e0acSNicolas Bonnefon         infoLine->displayGauge( progress );
397bb02e0acSNicolas Bonnefon 
398bb02e0acSNicolas Bonnefon         stopAction->setEnabled( true );
399bb02e0acSNicolas Bonnefon     }
400bb02e0acSNicolas Bonnefon }
401bb02e0acSNicolas Bonnefon 
402bb02e0acSNicolas Bonnefon void MainWindow::displayNormalStatus( bool success )
403bb02e0acSNicolas Bonnefon {
404bb02e0acSNicolas Bonnefon     QLocale defaultLocale;
405bb02e0acSNicolas Bonnefon 
406bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "displayNormalStatus";
407bb02e0acSNicolas Bonnefon 
408bb02e0acSNicolas Bonnefon     if ( success )
409bb02e0acSNicolas Bonnefon         setCurrentFile( loadingFileName );
410bb02e0acSNicolas Bonnefon 
411*0a90ca6aSNicolas Bonnefon     uint64_t fileSize;
412*0a90ca6aSNicolas Bonnefon     uint32_t fileNbLine;
413bb02e0acSNicolas Bonnefon     QDateTime lastModified;
414bb02e0acSNicolas Bonnefon 
415*0a90ca6aSNicolas Bonnefon     session_->getFileInfo( crawlerWidget,
416*0a90ca6aSNicolas Bonnefon             &fileSize, &fileNbLine, &lastModified );
417bb02e0acSNicolas Bonnefon     if ( lastModified.isValid() ) {
418bb02e0acSNicolas Bonnefon         const QString date =
419bb02e0acSNicolas Bonnefon             defaultLocale.toString( lastModified, QLocale::NarrowFormat );
420bb02e0acSNicolas Bonnefon         infoLine->setText( tr( "%1 (%2 - %3 lines - modified on %4)" )
421bb02e0acSNicolas Bonnefon                 .arg(currentFile).arg(readableSize(fileSize))
422bb02e0acSNicolas Bonnefon                 .arg(fileNbLine).arg( date ) );
423bb02e0acSNicolas Bonnefon     }
424bb02e0acSNicolas Bonnefon     else {
425bb02e0acSNicolas Bonnefon         infoLine->setText( tr( "%1 (%2 - %3 lines)" )
426bb02e0acSNicolas Bonnefon                 .arg(currentFile).arg(readableSize(fileSize))
427bb02e0acSNicolas Bonnefon                 .arg(fileNbLine) );
428bb02e0acSNicolas Bonnefon     }
429bb02e0acSNicolas Bonnefon 
430bb02e0acSNicolas Bonnefon     infoLine->hideGauge();
431bb02e0acSNicolas Bonnefon     stopAction->setEnabled( false );
432*0a90ca6aSNicolas Bonnefon 
433*0a90ca6aSNicolas Bonnefon     // Now everything is ready, we can finally show the file!
434*0a90ca6aSNicolas Bonnefon     crawlerWidget->show();
435bb02e0acSNicolas Bonnefon }
436bb02e0acSNicolas Bonnefon 
437bb02e0acSNicolas Bonnefon //
438bb02e0acSNicolas Bonnefon // Events
439bb02e0acSNicolas Bonnefon //
440bb02e0acSNicolas Bonnefon 
441bb02e0acSNicolas Bonnefon // Closes the application
442bb02e0acSNicolas Bonnefon void MainWindow::closeEvent( QCloseEvent *event )
443bb02e0acSNicolas Bonnefon {
444bb02e0acSNicolas Bonnefon     writeSettings();
445bb02e0acSNicolas Bonnefon     event->accept();
446bb02e0acSNicolas Bonnefon }
447bb02e0acSNicolas Bonnefon 
448bb02e0acSNicolas Bonnefon // Accepts the drag event if it looks like a filename
449bb02e0acSNicolas Bonnefon void MainWindow::dragEnterEvent( QDragEnterEvent* event )
450bb02e0acSNicolas Bonnefon {
451bb02e0acSNicolas Bonnefon     if ( event->mimeData()->hasFormat( "text/uri-list" ) )
452bb02e0acSNicolas Bonnefon         event->acceptProposedAction();
453bb02e0acSNicolas Bonnefon }
454bb02e0acSNicolas Bonnefon 
455bb02e0acSNicolas Bonnefon // Tries and loads the file if the URL dropped is local
456bb02e0acSNicolas Bonnefon void MainWindow::dropEvent( QDropEvent* event )
457bb02e0acSNicolas Bonnefon {
458bb02e0acSNicolas Bonnefon     QList<QUrl> urls = event->mimeData()->urls();
459bb02e0acSNicolas Bonnefon     if ( urls.isEmpty() )
460bb02e0acSNicolas Bonnefon         return;
461bb02e0acSNicolas Bonnefon 
462bb02e0acSNicolas Bonnefon     QString fileName = urls.first().toLocalFile();
463bb02e0acSNicolas Bonnefon     if ( fileName.isEmpty() )
464bb02e0acSNicolas Bonnefon         return;
465bb02e0acSNicolas Bonnefon 
466bb02e0acSNicolas Bonnefon     loadFile( fileName );
467bb02e0acSNicolas Bonnefon }
468bb02e0acSNicolas Bonnefon 
469bb02e0acSNicolas Bonnefon //
470bb02e0acSNicolas Bonnefon // Private functions
471bb02e0acSNicolas Bonnefon //
472bb02e0acSNicolas Bonnefon 
473*0a90ca6aSNicolas Bonnefon // Create a CrawlerWidget for the passed file, start its loading
474*0a90ca6aSNicolas Bonnefon // and update the title bar.
475bb02e0acSNicolas Bonnefon // The loading is done asynchronously.
476bb02e0acSNicolas Bonnefon bool MainWindow::loadFile( const QString& fileName )
477bb02e0acSNicolas Bonnefon {
478bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "loadFile ( " << fileName.toStdString() << " )";
479bb02e0acSNicolas Bonnefon 
480bb02e0acSNicolas Bonnefon     int topLine = 0;
481bb02e0acSNicolas Bonnefon 
482bb02e0acSNicolas Bonnefon     // If we're loading the same file, put the same line on top.
483bb02e0acSNicolas Bonnefon     if ( fileName == currentFile )
484bb02e0acSNicolas Bonnefon         topLine = crawlerWidget->getTopLine();
485bb02e0acSNicolas Bonnefon 
486f0708ca8SNicolas Bonnefon     // First get the global search history
487f0708ca8SNicolas Bonnefon     savedSearches = &(Persistent<SavedSearches>( "savedSearches" ));
488f0708ca8SNicolas Bonnefon 
489bb02e0acSNicolas Bonnefon     // Load the file
490bb02e0acSNicolas Bonnefon     loadingFileName = fileName;
491039481acSNicolas Bonnefon 
492f0708ca8SNicolas Bonnefon     crawlerWidget = dynamic_cast<CrawlerWidget*>( session_->open( fileName.toStdString(),
493f0708ca8SNicolas Bonnefon             [this]() { return new CrawlerWidget( savedSearches, this ); } ) );
494f0708ca8SNicolas Bonnefon 
495*0a90ca6aSNicolas Bonnefon     // We won't show the widget until the file is fully loaded
496*0a90ca6aSNicolas Bonnefon     crawlerWidget->hide();
497f0708ca8SNicolas Bonnefon 
498f0708ca8SNicolas Bonnefon     // Send actions to the crawlerwidget
499f0708ca8SNicolas Bonnefon     connect( this, SIGNAL( followSet( bool ) ),
500f0708ca8SNicolas Bonnefon             crawlerWidget, SIGNAL( followSet( bool ) ) );
501f0708ca8SNicolas Bonnefon     connect( this, SIGNAL( optionsChanged() ),
502f0708ca8SNicolas Bonnefon             crawlerWidget, SLOT( applyConfiguration() ) );
503f0708ca8SNicolas Bonnefon 
504f0708ca8SNicolas Bonnefon     // Actions from the CrawlerWidget
505f0708ca8SNicolas Bonnefon     connect( crawlerWidget, SIGNAL( followDisabled() ),
506f0708ca8SNicolas Bonnefon             this, SLOT( disableFollow() ) );
507f0708ca8SNicolas Bonnefon     connect( crawlerWidget, SIGNAL( updateLineNumber( int ) ),
508f0708ca8SNicolas Bonnefon             this, SLOT( lineNumberHandler( int ) ) );
509f0708ca8SNicolas Bonnefon 
510*0a90ca6aSNicolas Bonnefon     // FIXME: is it necessary?
511f0708ca8SNicolas Bonnefon     emit optionsChanged();
512f0708ca8SNicolas Bonnefon 
513f0708ca8SNicolas Bonnefon     // We start with the empty file
514f0708ca8SNicolas Bonnefon     setCurrentFile( "" );
515f0708ca8SNicolas Bonnefon 
516f0708ca8SNicolas Bonnefon     // Register for progress status bar
517f0708ca8SNicolas Bonnefon     connect( crawlerWidget, SIGNAL( loadingProgressed( int ) ),
518f0708ca8SNicolas Bonnefon             this, SLOT( updateLoadingProgress( int ) ) );
519f0708ca8SNicolas Bonnefon     connect( crawlerWidget, SIGNAL( loadingFinished( bool ) ),
520f0708ca8SNicolas Bonnefon             this, SLOT( displayNormalStatus( bool ) ) );
521f0708ca8SNicolas Bonnefon 
522f0708ca8SNicolas Bonnefon     setCentralWidget(crawlerWidget);
523f0708ca8SNicolas Bonnefon 
524bb02e0acSNicolas Bonnefon     LOG(logDEBUG) << "Success loading file " << fileName.toStdString();
525bb02e0acSNicolas Bonnefon     return true;
526bb02e0acSNicolas Bonnefon }
527bb02e0acSNicolas Bonnefon 
528bb02e0acSNicolas Bonnefon // Strips the passed filename from its directory part.
529bb02e0acSNicolas Bonnefon QString MainWindow::strippedName( const QString& fullFileName ) const
530bb02e0acSNicolas Bonnefon {
531bb02e0acSNicolas Bonnefon     return QFileInfo( fullFileName ).fileName();
532bb02e0acSNicolas Bonnefon }
533bb02e0acSNicolas Bonnefon 
534bb02e0acSNicolas Bonnefon // Add the filename to the recent files list and update the title bar.
535bb02e0acSNicolas Bonnefon void MainWindow::setCurrentFile( const QString& fileName )
536bb02e0acSNicolas Bonnefon {
537bb02e0acSNicolas Bonnefon     // Change the current file
538bb02e0acSNicolas Bonnefon     currentFile = fileName;
539bb02e0acSNicolas Bonnefon     QString shownName = tr( "Untitled" );
540bb02e0acSNicolas Bonnefon     if ( !currentFile.isEmpty() ) {
541bb02e0acSNicolas Bonnefon         // (reload the list first in case another glogg changed it)
542bb02e0acSNicolas Bonnefon         GetPersistentInfo().retrieve( "recentFiles" );
543bb02e0acSNicolas Bonnefon         recentFiles.addRecent( currentFile );
544bb02e0acSNicolas Bonnefon         GetPersistentInfo().save( "recentFiles" );
545bb02e0acSNicolas Bonnefon         updateRecentFileActions();
546bb02e0acSNicolas Bonnefon         shownName = strippedName( currentFile );
547bb02e0acSNicolas Bonnefon     }
548bb02e0acSNicolas Bonnefon 
549bb02e0acSNicolas Bonnefon     setWindowTitle(
550bb02e0acSNicolas Bonnefon             tr("%1 - %2").arg(shownName).arg(tr("glogg"))
551bb02e0acSNicolas Bonnefon #ifdef GLOGG_COMMIT
552bb02e0acSNicolas Bonnefon             + " (dev build " GLOGG_VERSION ")"
553bb02e0acSNicolas Bonnefon #endif
554bb02e0acSNicolas Bonnefon             );
555bb02e0acSNicolas Bonnefon }
556bb02e0acSNicolas Bonnefon 
557bb02e0acSNicolas Bonnefon // Updates the actions for the recent files.
558bb02e0acSNicolas Bonnefon // Must be called after having added a new name to the list.
559bb02e0acSNicolas Bonnefon void MainWindow::updateRecentFileActions()
560bb02e0acSNicolas Bonnefon {
561bb02e0acSNicolas Bonnefon     QStringList recent_files = recentFiles.recentFiles();
562bb02e0acSNicolas Bonnefon 
563bb02e0acSNicolas Bonnefon     for ( int j = 0; j < MaxRecentFiles; ++j ) {
564bb02e0acSNicolas Bonnefon         if ( j < recent_files.count() ) {
565bb02e0acSNicolas Bonnefon             QString text = tr("&%1 %2").arg(j + 1).arg(strippedName(recent_files[j]));
566bb02e0acSNicolas Bonnefon             recentFileActions[j]->setText( text );
567bb02e0acSNicolas Bonnefon             recentFileActions[j]->setToolTip( recent_files[j] );
568bb02e0acSNicolas Bonnefon             recentFileActions[j]->setData( recent_files[j] );
569bb02e0acSNicolas Bonnefon             recentFileActions[j]->setVisible( true );
570bb02e0acSNicolas Bonnefon         }
571bb02e0acSNicolas Bonnefon         else {
572bb02e0acSNicolas Bonnefon             recentFileActions[j]->setVisible( false );
573bb02e0acSNicolas Bonnefon         }
574bb02e0acSNicolas Bonnefon     }
575bb02e0acSNicolas Bonnefon 
576bb02e0acSNicolas Bonnefon     // separatorAction->setVisible(!recentFiles.isEmpty());
577bb02e0acSNicolas Bonnefon }
578bb02e0acSNicolas Bonnefon 
579bb02e0acSNicolas Bonnefon // Write settings to permanent storage
580bb02e0acSNicolas Bonnefon void MainWindow::writeSettings()
581bb02e0acSNicolas Bonnefon {
582bb02e0acSNicolas Bonnefon     // Save the session
583bb02e0acSNicolas Bonnefon     SessionInfo& session = Persistent<SessionInfo>( "session" );
584bb02e0acSNicolas Bonnefon     session.setGeometry( saveGeometry() );
585bb02e0acSNicolas Bonnefon     session.setCrawlerState( crawlerWidget->saveState() );
586bb02e0acSNicolas Bonnefon     session.setCurrentFile( currentFile );
587bb02e0acSNicolas Bonnefon     GetPersistentInfo().save( QString( "session" ) );
588bb02e0acSNicolas Bonnefon 
589bb02e0acSNicolas Bonnefon     // User settings
590bb02e0acSNicolas Bonnefon     GetPersistentInfo().save( QString( "settings" ) );
591bb02e0acSNicolas Bonnefon }
592bb02e0acSNicolas Bonnefon 
593bb02e0acSNicolas Bonnefon // Read settings from permanent storage
594bb02e0acSNicolas Bonnefon void MainWindow::readSettings()
595bb02e0acSNicolas Bonnefon {
596bb02e0acSNicolas Bonnefon     // Get and restore the session
597bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "session" ) );
598bb02e0acSNicolas Bonnefon     SessionInfo session = Persistent<SessionInfo>( "session" );
599bb02e0acSNicolas Bonnefon     restoreGeometry( session.geometry() );
600bb02e0acSNicolas Bonnefon     previousFile = session.currentFile();
601*0a90ca6aSNicolas Bonnefon     /*
602*0a90ca6aSNicolas Bonnefon      * FIXME: should be in the session
603*0a90ca6aSNicolas Bonnefon     crawlerWidget->restoreState( session.crawlerState() );
604*0a90ca6aSNicolas Bonnefon     */
605bb02e0acSNicolas Bonnefon 
606bb02e0acSNicolas Bonnefon     // History of recent files
607bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "recentFiles" ) );
608bb02e0acSNicolas Bonnefon     updateRecentFileActions();
609bb02e0acSNicolas Bonnefon 
610bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "savedSearches" ) );
611bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "settings" ) );
612bb02e0acSNicolas Bonnefon     GetPersistentInfo().retrieve( QString( "filterSet" ) );
613bb02e0acSNicolas Bonnefon }
614bb02e0acSNicolas Bonnefon 
615bb02e0acSNicolas Bonnefon // Returns the size in human readable format
616*0a90ca6aSNicolas Bonnefon static QString readableSize( qint64 size )
617bb02e0acSNicolas Bonnefon {
618bb02e0acSNicolas Bonnefon     static const QString sizeStrs[] = {
619*0a90ca6aSNicolas Bonnefon         QObject::tr("B"), QObject::tr("KiB"), QObject::tr("MiB"),
620*0a90ca6aSNicolas Bonnefon         QObject::tr("GiB"), QObject::tr("TiB") };
621bb02e0acSNicolas Bonnefon 
622bb02e0acSNicolas Bonnefon     QLocale defaultLocale;
623bb02e0acSNicolas Bonnefon     unsigned int i;
624bb02e0acSNicolas Bonnefon     double humanSize = size;
625bb02e0acSNicolas Bonnefon 
626bb02e0acSNicolas Bonnefon     for ( i=0; i+1 < (sizeof(sizeStrs)/sizeof(QString)) && (humanSize/1024.0) >= 1024.0; i++ )
627bb02e0acSNicolas Bonnefon         humanSize /= 1024.0;
628bb02e0acSNicolas Bonnefon 
629bb02e0acSNicolas Bonnefon     if ( humanSize >= 1024.0 ) {
630bb02e0acSNicolas Bonnefon         humanSize /= 1024.0;
631bb02e0acSNicolas Bonnefon         i++;
632bb02e0acSNicolas Bonnefon     }
633bb02e0acSNicolas Bonnefon 
634bb02e0acSNicolas Bonnefon     QString output;
635bb02e0acSNicolas Bonnefon     if ( i == 0 )
636bb02e0acSNicolas Bonnefon         // No decimal part if we display straight bytes.
637bb02e0acSNicolas Bonnefon         output = defaultLocale.toString( (int) humanSize );
638bb02e0acSNicolas Bonnefon     else
639bb02e0acSNicolas Bonnefon         output = defaultLocale.toString( humanSize, 'f', 1 );
640bb02e0acSNicolas Bonnefon 
641bb02e0acSNicolas Bonnefon     output += QString(" ") + sizeStrs[i];
642bb02e0acSNicolas Bonnefon 
643bb02e0acSNicolas Bonnefon     return output;
644bb02e0acSNicolas Bonnefon }
645