~ubuntu-branches/ubuntu/lucid/codelite/lucid

« back to all changes in this revision

Viewing changes to LiteEditor/editor_options_general_guides_panel.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-01-12 15:46:55 UTC
  • Revision ID: james.westby@ubuntu.com-20090112154655-sdynrljcb6u167yw
Tags: upstream-1.0.2674+dfsg
ImportĀ upstreamĀ versionĀ 1.0.2674+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//////////////////////////////////////////////////////////////////////////////
 
2
//////////////////////////////////////////////////////////////////////////////
 
3
//
 
4
// copyright            : (C) 2008 by Eran Ifrah                            
 
5
// file name            : editor_options_general_guides_panel.h              
 
6
//                                                                          
 
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
//                                                                          
 
23
//////////////////////////////////////////////////////////////////////////////
 
24
//////////////////////////////////////////////////////////////////////////////
 
25
 
 
26
#ifndef __editor_options_general_guides_panel__
 
27
#define __editor_options_general_guides_panel__
 
28
 
 
29
/**
 
30
@file
 
31
Subclass of EditorOptionsGeneralGuidesPanelBase, which is generated by wxFormBuilder.
 
32
*/
 
33
 
 
34
#include "editoroptionsgeneralguidespanelbase.h"
 
35
#include "treebooknodebase.h"
 
36
 
 
37
/** Implementing EditorOptionsGeneralGuidesPanelBase */
 
38
class EditorOptionsGeneralGuidesPanel
 
39
        : public EditorOptionsGeneralGuidesPanelBase
 
40
        , public TreeBookNode<EditorOptionsGeneralGuidesPanel>
 
41
{
 
42
        void EnableDisableCaretLineColourPicker();
 
43
        void OnHighlightCaretLine(wxCommandEvent& e);
 
44
public:
 
45
        /** Constructor */
 
46
        EditorOptionsGeneralGuidesPanel( wxWindow* parent );
 
47
 
 
48
        void Save(OptionsConfigPtr options);
 
49
};
 
50
 
 
51
#endif // __editor_options_general_guides_panel__