~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/include/projectsfilemasksdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
 
3
 * http://www.gnu.org/licenses/lgpl-3.0.html
 
4
 */
 
5
 
 
6
#ifndef PROJECTSFILEMASKSDLG_H
 
7
#define PROJECTSFILEMASKSDLG_H
 
8
 
 
9
#include <wx/dialog.h>
 
10
#include "filegroupsandmasks.h"
 
11
 
 
12
class ProjectsFileMasksDlg : public wxDialog
 
13
{
 
14
    public:
 
15
        ProjectsFileMasksDlg(wxWindow* parent, FilesGroupsAndMasks* fgam);
 
16
        virtual ~ProjectsFileMasksDlg();
 
17
 
 
18
        void OnUpdateUI(wxUpdateUIEvent& event);
 
19
        void OnAdd(wxCommandEvent& event);
 
20
        void OnEdit(wxCommandEvent& event);
 
21
        void OnDelete(wxCommandEvent& event);
 
22
        void OnSetDefault(wxCommandEvent& event);
 
23
        void OnListChanged(wxCommandEvent& event);
 
24
    protected:
 
25
    private:
 
26
        void RebuildList();
 
27
        void ListChange();
 
28
 
 
29
        virtual void EndModal(int retCode);
 
30
        FilesGroupsAndMasks m_FileGroups;
 
31
        FilesGroupsAndMasks* m_pOrigFileGroups;
 
32
        int m_LastListSelection;
 
33
 
 
34
        DECLARE_EVENT_TABLE();
 
35
};
 
36
 
 
37
#endif // PROJECTSFILEMASKSDLG_H