~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to LiteEditor/workspacesettingsdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-02-10 10:13:06 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100210101306-nzt1b7es8mby1eyi
Tags: 2.2.0.3681+dfsg-0ubuntu1
* New upstream release.
* Refresh patches.
* Adjust Makefile to avoid the execution of uninstall target. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
*/
8
8
 
9
9
#include "workspacesettingsbase.h"
10
 
 
 
10
class LocalWorkspace;
11
11
/** Implementing WorkspaceSettingsBase */
12
12
class WorkspaceSettingsDlg : public WorkspaceSettingsBase
13
13
{
 
14
        LocalWorkspace *m_localWorkspace;
14
15
protected:
15
16
        // Handlers for WorkspaceSettingsBase events.
16
17
        void OnAddIncludePath( wxCommandEvent& event );
23
24
        void OnRemoveExcludePathUI( wxUpdateUIEvent& event );
24
25
        void OnClearAllExcludePaths( wxCommandEvent& event );
25
26
        void OnClearAllExcludePathsUI( wxUpdateUIEvent& event );
 
27
        void OnButtonOK( wxCommandEvent& event );
26
28
 
27
29
public:
28
30
        /** Constructor */
29
 
        WorkspaceSettingsDlg( wxWindow* parent, const wxArrayString &includePaths, const wxArrayString &excludePaths );
 
31
        WorkspaceSettingsDlg( wxWindow* parent, LocalWorkspace *localWorkspace);
30
32
        virtual ~WorkspaceSettingsDlg();
31
33
 
32
34
        wxArrayString GetIncludePaths() const;