~ubuntu-branches/debian/wheezy/codelite/wheezy

« back to all changes in this revision

Viewing changes to LiteEditor/debuggersettingsdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-04-30 02:46:27 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090430024627-7xp71gerfvw00xtt
Tags: 1.0.2822+dfsg-0ubuntu1
* New upstream release (LP: #369466)
* debian/copyright:
  + Added Files section for sdk/wxpropgrid
  + Made license text RFC compliant (add . for empty lines)
* debian/control:
  + Bump Standards-Version to 3.8.1
* debian/patches/02_fix-desktop.patch,
  + Refreshed to patch cleanly
* debian/*.install,
  debian/codelite.dirs,
  debian/codelite.links,
  debian/patches/03_fix-sh.patch,
  debian/patches/04_change-installpath.patch,
  + Updated for new upstream directory structure
  + Patches dropped, no longer needed.
* debian/patches/03_cstdio-include.patch,
  + Include cstdio for C++ and stdio.h for C, since it seems to be missing
* debian/codelite.menu,
  debian/*.1,
  debian/codelite.manpages:
  + Updated to reflect change in command names
    - CodeLite    => codelite
    - le_exec     => codelite_exec
    - le_dos2unix => codelite_fix_files
    - le_killproc => codelite_kill_children
* debian/README.source,
  debian/rules,
  debian/copyright:
  + Remove sdk/curl from the list of excluded files, since it doesn't exist
    any more

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//////////////////////////////////////////////////////////////////////////////
2
2
//////////////////////////////////////////////////////////////////////////////
3
3
//
4
 
// copyright            : (C) 2008 by Eran Ifrah                            
5
 
// file name            : debuggersettingsdlg.h              
6
 
//                                                                          
 
4
// copyright            : (C) 2008 by Eran Ifrah
 
5
// file name            : debuggersettingsdlg.h
 
6
//
7
7
// -------------------------------------------------------------------------
8
 
// A                                                                        
9
 
//              _____           _      _     _ _                            
10
 
//             /  __ \         | |    | |   (_) |                           
11
 
//             | /  \/ ___   __| | ___| |    _| |_ ___                      
12
 
//             | |    / _ \ / _  |/ _ \ |   | | __/ _ )                     
13
 
//             | \__/\ (_) | (_| |  __/ |___| | ||  __/                     
14
 
//              \____/\___/ \__,_|\___\_____/_|\__\___|                     
15
 
//                                                                          
16
 
//                                                  F i l e                 
17
 
//                                                                          
18
 
//    This program is free software; you can redistribute it and/or modify  
19
 
//    it under the terms of the GNU General Public License as published by  
20
 
//    the Free Software Foundation; either version 2 of the License, or     
21
 
//    (at your option) any later version.                                   
22
 
//                                                                          
 
8
// A
 
9
//              _____           _      _     _ _
 
10
//             /  __ \         | |    | |   (_) |
 
11
//             | /  \/ ___   __| | ___| |    _| |_ ___
 
12
//             | |    / _ \ / _  |/ _ \ |   | | __/ _ )
 
13
//             | \__/\ (_) | (_| |  __/ |___| | ||  __/
 
14
//              \____/\___/ \__,_|\___\_____/_|\__\___|
 
15
//
 
16
//                                                  F i l e
 
17
//
 
18
//    This program is free software; you can redistribute it and/or modify
 
19
//    it under the terms of the GNU General Public License as published by
 
20
//    the Free Software Foundation; either version 2 of the License, or
 
21
//    (at your option) any later version.
 
22
//
23
23
//////////////////////////////////////////////////////////////////////////////
24
24
//////////////////////////////////////////////////////////////////////////////
25
25
 #ifndef __debuggersettingsdlg__
42
42
{
43
43
        friend class DebuggerSettingsDlg;
44
44
        FilePicker *m_filePicker;
45
 
        wxString m_title;
 
45
        wxString   m_title;
46
46
        wxCheckBox *m_checkBoxEnablePendingBreakpoints;
47
47
        wxCheckBox *m_checkBoxEnableLog;
48
48
        wxCheckBox *m_checkBreakAtWinMain;
49
49
        wxCheckBox *m_checkResolveStarThis;
50
50
        wxCheckBox *m_checkShowTerminal;
51
 
        
 
51
        wxCheckBox *m_checkUseRelativePaths;
 
52
 
52
53
public:
53
54
        DebuggerPage(wxWindow *parent, wxString title);
54
55
        virtual ~DebuggerPage();
60
61
{
61
62
        long m_selectedItem;
62
63
        DebuggerSettingsData m_data;
63
 
        
 
64
 
64
65
protected:
65
66
        void Initialize();
66
67
        void OnOk(wxCommandEvent &e);
71
72
        void OnItemDeselected(wxListEvent &e);
72
73
        void OnItemActivated(wxListEvent &e);
73
74
        void OnButtonCancel(wxCommandEvent &e);
74
 
        
 
75
 
75
76
private:
76
77
        void DoEditItem();
77
78
        void DoDeleteItem();
79
80
public:
80
81
        /** Constructor */
81
82
        DebuggerSettingsDlg( wxWindow* parent );
82
 
        
 
83
 
83
84
};
84
85
 
85
86
#endif // __debuggersettingsdlg__