1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : cppchecksettingsdlg.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CPPCHECH_SETTINGS_DLG_H_INCLUDED
#define CPPCHECH_SETTINGS_DLG_H_INCLUDED
#include "cppchecksettingsdlgbase.h"
#include "cppcheck_settings.h"
class IConfigTool;
class CppCheckSettings;
class CppCheckSettingsDialog : public CppCheckSettingsDialogBase
{
CppCheckSettings* m_settings;
IConfigTool* m_conf;
wxString m_defaultpath;
wxArrayString m_SuppressionsKeys;
public:
CppCheckSettingsDialog(wxWindow* parent, CppCheckSettings* settings, IConfigTool *conf, const wxString& defaultpath, bool showDefsTab);
virtual ~CppCheckSettingsDialog();
protected:
// Warnings page
virtual void OnChecksTickAll(wxCommandEvent& e);
virtual void OnChecksUntickAll(wxCommandEvent& e);
virtual void OnChecksTickAllUI(wxUpdateUIEvent& e);
virtual void OnChecksUntickAllUI(wxUpdateUIEvent& e);
virtual void OnJobsUpdateUI(wxUpdateUIEvent& event);
// Exclude-files page
virtual void OnAddFile (wxCommandEvent& e);
virtual void OnRemoveFile (wxCommandEvent& e);
virtual void OnClearList (wxCommandEvent& e);
virtual void OnRemoveFileUI(wxUpdateUIEvent& e);
virtual void OnClearListUI (wxUpdateUIEvent& e);
// Suppressions page
virtual void OnAddSuppression(wxCommandEvent& e);
virtual void OnRemoveSuppression(wxCommandEvent& e);
virtual void OnSuppressTickAll(wxCommandEvent& e);
virtual void OnSuppressUntickAll(wxCommandEvent& e);
virtual void OnRemoveSuppressionUI(wxUpdateUIEvent& e);
virtual void OnSuppressTickAllUI(wxUpdateUIEvent& e);
virtual void OnSuppressUntickAllUI(wxUpdateUIEvent& e);
// Extra include dirs page
virtual void OnIncludeDirsUpdateUI(wxUpdateUIEvent& event);
virtual void OnAddIncludeDir(wxCommandEvent& event);
virtual void OnRemoveIncludeDir(wxCommandEvent& event);
virtual void OnRemoveIncludeDirUI(wxUpdateUIEvent& event);
// Definitions page
virtual void OnAddDefinition(wxCommandEvent& e);
virtual void OnRemoveDefinition(wxCommandEvent& e);
virtual void OnClearDefinitions(wxCommandEvent& e);
virtual void OnRemoveDefinitionUI(wxUpdateUIEvent& e);
virtual void OnClearDefinitionsUI(wxUpdateUIEvent& e);
virtual void OnAddUndefine(wxCommandEvent& e);
virtual void OnRemoveUndefine(wxCommandEvent& e);
virtual void OnClearUndefines(wxCommandEvent& e);
virtual void OnRemoveUndefineUI(wxUpdateUIEvent& e);
virtual void OnClearUndefinesUI(wxUpdateUIEvent& e);
virtual void OnBtnOK(wxCommandEvent& e);
};
class CppCheckAddSuppressionDialog : public CppCheckAddSuppressionDialogBase
{
public:
CppCheckAddSuppressionDialog(wxWindow* parent) : CppCheckAddSuppressionDialogBase(parent)
{ m_txtDescription->SetFocus(); }
virtual ~CppCheckAddSuppressionDialog(){}
wxTextCtrl* GetDescription() const { return m_txtDescription; }
wxTextCtrl* GetKey() const { return m_txtKey; }
protected:
virtual void OnOKButtonUpdateUI(wxUpdateUIEvent& e);
};
#endif // CPPCHECH_SETTINGS_DLG_H_INCLUDED
|