2009-03-01 08:38:21 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki, Reijo Tomperi, Nicolas Le Cam,
|
|
|
|
* Leandro Penz, Kimmo Varis, Vesa Pikki
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QMenuBar>
|
|
|
|
|
|
|
|
MainWindow::MainWindow() :
|
2009-03-01 21:44:42 +01:00
|
|
|
mSettings(tr("CppCheck"), tr("CppCheck-GUI")),
|
|
|
|
mExit(tr("E&xit"), this),
|
|
|
|
mCheck(tr("&Check"), this),
|
2009-03-01 08:38:21 +01:00
|
|
|
mResults(mSettings)
|
|
|
|
{
|
|
|
|
QMenu *menu = menuBar()->addMenu(tr("&File"));
|
|
|
|
menu->addAction(&mCheck);
|
|
|
|
menu->addSeparator();
|
|
|
|
menu->addAction(&mExit);
|
|
|
|
|
|
|
|
setCentralWidget(&mResults);
|
|
|
|
|
|
|
|
|
|
|
|
connect(&mExit, SIGNAL(triggered()), this, SLOT(close()));
|
|
|
|
connect(&mCheck, SIGNAL(triggered()), this, SLOT(Check()));
|
|
|
|
connect(&mThread, SIGNAL(Done()), this, SLOT(CheckDone()));
|
|
|
|
LoadSettings();
|
2009-03-01 21:44:42 +01:00
|
|
|
mThread.Initialize(&mResults);
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
//dtor
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::LoadSettings()
|
|
|
|
{
|
2009-03-01 21:44:42 +01:00
|
|
|
if (mSettings.value(tr("Window maximized"), false).toBool())
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
|
|
|
showMaximized();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-01 21:44:42 +01:00
|
|
|
resize(mSettings.value(tr("Window width"), 800).toInt(),
|
|
|
|
mSettings.value(tr("Window height"), 600).toInt());
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SaveSettings()
|
|
|
|
{
|
2009-03-01 21:44:42 +01:00
|
|
|
mSettings.setValue(tr("Window width"), size().width());
|
|
|
|
mSettings.setValue(tr("Window height"), size().height());
|
|
|
|
mSettings.setValue(tr("Window maximized"), isMaximized());
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MainWindow::Check()
|
|
|
|
{
|
|
|
|
CheckDialog dialog(mSettings);
|
|
|
|
if (dialog.exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
mResults.Clear();
|
|
|
|
mThread.ClearFiles();
|
2009-03-01 21:44:42 +01:00
|
|
|
mThread.SetFiles(dialog.GetSelectedFiles());
|
|
|
|
mSettings.setValue(tr("Check path"), dialog.GetDefaultPath());
|
2009-03-01 08:38:21 +01:00
|
|
|
dialog.SaveCheckboxValues();
|
|
|
|
mCheck.setDisabled(true);
|
2009-03-01 21:44:42 +01:00
|
|
|
mThread.Check(dialog.GetSettings());
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::CheckDone()
|
|
|
|
{
|
|
|
|
mCheck.setDisabled(false);
|
|
|
|
}
|