cppcheck/gui/mainwindow.h

395 lines
7.6 KiB
C
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
*
* 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/
*/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QSettings>
#include <QAction>
#include <QFileDialog>
#include <QToolBar>
#include "resultsview.h"
#include "settingsdialog.h"
class ThreadHandler;
/**
* @brief Main window for cppcheck-gui
*
*/
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow();
virtual ~MainWindow();
public slots:
/**
* @brief Slot for check files menu item
*
*/
void CheckFiles();
2009-06-01 23:54:21 +02:00
/**
* @brief Slot to recheck files
*
*/
void ReCheck();
2009-06-01 23:54:21 +02:00
/**
* @brief Slot to clear all search results
*
*/
void ClearResults();
2009-06-01 23:54:21 +02:00
/**
* @brief Show errors with type "all"
2009-06-27 09:43:03 +02:00
* @param checked Should errors be shown (true) or hidden (false)
*/
2009-03-22 18:39:44 +01:00
void ShowAll(bool checked);
/**
* @brief Show errors with type "security"
2009-06-27 09:43:03 +02:00
* @param checked Should errors be shown (true) or hidden (false)
*/
2009-03-22 18:39:44 +01:00
void ShowSecurity(bool checked);
/**
* @brief Show errors with type "style"
2009-06-27 09:43:03 +02:00
* @param checked Should errors be shown (true) or hidden (false)
*/
2009-03-22 18:39:44 +01:00
void ShowStyle(bool checked);
/**
* @brief Show errors with type "error"
2009-06-27 09:43:03 +02:00
* @param checked Should errors be shown (true) or hidden (false)
*/
2009-03-22 18:39:44 +01:00
void ShowErrors(bool checked);
/**
* @brief Slot to check all "Show errors" menu items
*/
void CheckAll();
/**
* @brief Slot to uncheck all "Show errors" menu items
*/
void UncheckAll();
2009-03-22 18:39:44 +01:00
/**
* @brief Slot for check directory menu item
*
*/
void CheckDirectory();
2009-06-01 23:54:21 +02:00
/**
* @brief Slot to open program's settings dialog
*
*/
void ProgramSettings();
2009-06-01 23:54:21 +02:00
/**
* @brief Slot to open program's about dialog
*
*/
void About();
/**
* @brief Slot to to show license text
*
*/
void ShowLicense();
/**
* @brief Slot to to show authors list
*
*/
void ShowAuthors();
2009-06-01 23:54:21 +02:00
/**
* @brief Slot to stop processing files
*
*/
void Save();
protected slots:
/**
* @brief Slot for checkthread's done signal
*
*/
void CheckDone();
/**
* @brief Slot for enabling save and clear button
*
*/
void ResultsAdded();
/**
* @brief Slot for showing/hiding standard toolbar
*/
void ViewStandardToolbar(bool view);
/**
* @brief Slot for updating View-menu before it is shown.
*/
void AboutToShowViewMenu();
protected:
/**
* @brief Create main window menus.
*/
void CreateMenus();
/**
* @brief Create main window toolbar.
*/
void CreateToolbar();
/**
* @brief Event coming when application is about to close.
*/
virtual void closeEvent(QCloseEvent *event);
2009-06-01 23:54:21 +02:00
/**
* @brief Helper function to toggle all show error menu items
* @param checked Should all errors be shown (true) or hidden (false)
*/
void ToggleAllChecked(bool checked);
2009-06-01 23:54:21 +02:00
/**
* @brief Helper function to enable/disable all check,recheck buttons
*
*/
void EnableCheckButtons(bool enable);
2009-06-01 23:54:21 +02:00
/**
* @brief Select files/or directory to check.
* Helper function to open a dialog to ask user to select files or
* directory to check. Use native dialogs instead of QT:s own dialogs.
2009-06-01 23:54:21 +02:00
*
* @param mode Dialog open mode (files or directories)
*/
void DoCheckFiles(QFileDialog::FileMode mode);
2009-06-01 23:54:21 +02:00
/**
* @brief Get all files recursively from given path
*
* @param path Path to get files from
* @return List of file paths
*/
QStringList GetFilesRecursively(const QString &path);
2009-06-01 23:54:21 +02:00
/**
* @brief Get our default cppcheck settings and read project file.
2009-06-01 23:54:21 +02:00
*
* @return Default cppcheck settings
*/
Settings GetCppcheckSettings();
2009-06-01 23:54:21 +02:00
/**
* @brief Removes all unaccepted (by cppcheck core) files from the list
*
* @param list List to remove unaccepted files from
* @return List of files that are all accepted by cppcheck core
*/
QStringList RemoveUnacceptedFiles(const QStringList &list);
/**
* @brief Load program settings
*
*/
void LoadSettings();
/**
* @brief Save program settings
*
*/
void SaveSettings();
/**
* @brief Format main window title.
* @param text Text added to end of the title.
*/
void FormatAndSetTitle(const QString &text = QString());
/**
* @brief Program settings
*
*/
QSettings mSettings;
/**
* @brief Menu action to exit program
*
*/
QAction mActionExit;
/**
* @brief Menu action to check files
*
*/
QAction mActionCheckFiles;
/**
* @brief Menu action to clear results
*
*/
QAction mActionClearResults;
/**
* @brief Menu action to re check
*
*/
QAction mActionReCheck;
/**
* @brief Menu action to check a directory
*
*/
QAction mActionCheckDirectory;
/**
* @brief Menu action to open settings dialog
*
*/
QAction mActionSettings;
/**
* @brief Menu action to show/hide standard toolbar
*/
QAction mActionViewStandardToolbar;
2009-06-01 23:54:21 +02:00
/**
* @brief Action to show errors with type "all"
*
*/
2009-03-22 18:39:44 +01:00
QAction mActionShowAll;
/**
* @brief Action to show errors with type "security"
*
*/
2009-03-22 18:39:44 +01:00
QAction mActionShowSecurity;
/**
* @brief Action to show errors with type "style"
*
*/
2009-03-22 18:39:44 +01:00
QAction mActionShowStyle;
/**
* @brief Action to show errors with type "error"
*
*/
2009-03-22 18:39:44 +01:00
QAction mActionShowErrors;
/**
* @brief Action to check all "show error" menu items
*
*/
QAction mActionShowCheckAll;
/**
* @brief Action to uncheck all "show error" menu items
*
*/
QAction mActionShowUncheckAll;
2009-03-22 18:39:44 +01:00
/**
* @brief Action to collapse all items in the result tree.
*
*/
QAction mActionShowCollapseAll;
/**
* @brief Action to expand all items in the result tree.
*
*/
QAction mActionShowExpandAll;
/**
* @brief Action to show about dialog
*
*/
QAction mActionAbout;
/**
* @brief Action to show license text
*
*/
QAction mActionShowLicense;
/**
* @brief Action to show authors list
*
*/
QAction mActionShowAuthors;
/**
* @brief Action stop checking files
*
*/
QAction mActionStop;
/**
* @brief Action save found errors to a file
*
*/
QAction mActionSave;
2009-03-22 18:39:44 +01:00
/**
* @brief Results for checking
*
*/
ResultsView mResults;
/**
* @brief Thread to check files
*
*/
ThreadHandler *mThread;
2009-06-01 23:54:21 +02:00
/**
* @brief List of user defined applications to open errors with
*
*/
ApplicationList mApplications;
private:
/**
* @brief Current checked directory.
*/
QString mCurrentDirectory;
/**
* @brief Standard toolbar (currently only one).
*/
QToolBar *mStandardToolbar;
};
#endif // MAINWINDOW_H