/usr/include/codeblocks/editormanager.h is in codeblocks-dev 13.12+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | /*
* This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
* http://www.gnu.org/licenses/lgpl-3.0.html
*/
#ifndef EDITORMANAGER_H
#define EDITORMANAGER_H
#include "prep.h"
#include <wx/list.h>
#include <wx/treectrl.h>
#include <wx/hashmap.h>
#include <wx/filename.h>
#include "settings.h"
#include "manager.h"
#include "cbexception.h" // cbThrow
#include "printing_types.h"
#include "globals.h" // cbC2U, FileType
DLLIMPORT extern int ID_NBEditorManager;
DLLIMPORT extern int ID_EditorManager;
DLLIMPORT extern int idEditorManagerCheckFiles;
DLLIMPORT extern int ID_EditorManagerCloseButton;
// forward decls
class EditorBase;
class cbAuiNotebook;
class wxAuiNotebookEvent;
class EditorColourSet;
class cbProject;
class ProjectFile;
class cbEditor;
class cbStyledTextCtrl;
class ListCtrlLogger;
class LoaderBase;
struct EditorManagerInternalData;
class SearchResultsLog;
/*
* Struct for store tabs stack info
*/
struct cbNotebookStack
{
cbNotebookStack(wxWindow* a_pWindow = nullptr)
: window (a_pWindow),
next (nullptr)
{}
wxWindow* window;
cbNotebookStack* next;
};
/*
* No description
*/
class DLLIMPORT EditorManager : public Mgr<EditorManager>, public wxEvtHandler
{
friend class Mgr<EditorManager>;
static bool s_CanShutdown;
public:
EditorManager& operator=(cb_unused const EditorManager& rhs) // prevent assignment operator
{
cbThrow(_T("Can't assign an EditorManager* !!!"));
return *this;
}
friend class Manager; // give Manager access to our private members
static bool CanShutdown(){ return s_CanShutdown; }
cbAuiNotebook* GetNotebook() { return m_pNotebook; }
cbNotebookStack* GetNotebookStack();
void DeleteNotebookStack();
void RebuildNotebookStack();
void RecreateOpenEditorStyles();
int GetEditorsCount();
EditorBase* IsOpen(const wxString& filename);
cbEditor* Open(const wxString& filename, int pos = 0, ProjectFile* data = nullptr);
cbEditor* Open(LoaderBase* fileLdr, const wxString& filename, int pos = 0, ProjectFile* data = nullptr);
EditorBase* GetEditor(int index);
EditorBase* GetEditor(const wxString& filename){ return IsOpen(filename); } // synonym of IsOpen()
EditorBase* GetActiveEditor();
cbEditor* GetBuiltinEditor(EditorBase* eb);
int FindPageFromEditor(EditorBase* eb);
// "overloaded" functions for easier access
// they all return a cbEditor pointer if the editor is builtin, or NULL
cbEditor* IsBuiltinOpen(const wxString& filename){ return GetBuiltinEditor(IsOpen(filename)); }
cbEditor* GetBuiltinEditor(int index){ return GetBuiltinEditor(GetEditor(index)); }
cbEditor* GetBuiltinEditor(const wxString& filename){ return IsBuiltinOpen(filename); } // synonym of IsBuiltinOpen()
cbEditor* GetBuiltinActiveEditor(){ return GetBuiltinEditor(GetActiveEditor()); }
void ActivateNext();
void ActivatePrevious();
void SetActiveEditor(EditorBase* ed);
EditorColourSet* GetColourSet(){ return m_Theme; }
void SetColourSet(EditorColourSet* theme);
cbEditor* New(const wxString& newFileName = wxEmptyString);
// these are used *only* for custom editors
void AddCustomEditor(EditorBase* eb);
void RemoveCustomEditor(EditorBase* eb);
bool UpdateProjectFiles(cbProject* project);
bool SwapActiveHeaderSource();
bool OpenContainingFolder();
bool CloseActive(bool dontsave = false);
bool Close(const wxString& filename, bool dontsave = false);
bool Close(EditorBase* editor, bool dontsave = false);
bool Close(int index, bool dontsave = false);
// If file is modified, queries to save (yes/no/cancel).
// Returns false on "cancel".
bool QueryClose(EditorBase* editor);
bool QueryCloseAll();
bool CloseAll(bool dontsave = false);
bool CloseAllExcept(EditorBase* editor, bool dontsave = false);
bool Save(const wxString& filename);
bool Save(int index);
bool SaveActive();
bool SaveAs(int index);
bool SaveActiveAs();
bool SaveAll();
void Print(PrintScope ps, PrintColourMode pcm, bool line_numbers);
/** Hides the editor notebook for layout purposes */
void HideNotebook();
/** Shows the previously hidden editor notebook */
void ShowNotebook();
/** Check if one of the open files has been modified outside the IDE. If so, ask to reload it. */
void CheckForExternallyModifiedFiles();
void OnGenericContextMenuHandler(wxCommandEvent& event);
void OnPageChanged(wxAuiNotebookEvent& event);
void OnPageChanging(wxAuiNotebookEvent& event);
void OnPageClose(wxAuiNotebookEvent& event);
void OnPageContextMenu(wxAuiNotebookEvent& event);
void OnClose(wxCommandEvent& event);
void OnCloseAll(wxCommandEvent& event);
void OnCloseAllOthers(wxCommandEvent& event);
void OnSave(wxCommandEvent& event);
void OnSaveAll(wxCommandEvent& event);
void OnSwapHeaderSource(wxCommandEvent& event);
void OnOpenContainingFolder(wxCommandEvent& event);
void OnTabPosition(wxCommandEvent& event);
void OnProperties(wxCommandEvent& event);
void OnAddFileToProject(wxCommandEvent& event);
void OnRemoveFileFromProject(wxCommandEvent& event);
void OnShowFileInTree(wxCommandEvent& event);
void OnAppDoneStartup(wxCommandEvent& event);
void OnAppStartShutdown(wxCommandEvent& event);
void OnUpdateUI(wxUpdateUIEvent& event);
void OnTreeItemSelected(wxTreeEvent &event);
void OnTreeItemActivated(wxTreeEvent &event);
void OnTreeItemRightClick(wxTreeEvent &event);
void CollectDefines(CodeBlocksEvent& event);
void SetZoom(int zoom);
int GetZoom()const;
void OnAppActivated(CodeBlocksEvent& event);
wxString GetSelectionClipboard();
void SetSelectionClipboard(const wxString& data);
protected:
// m_EditorsList access
void AddEditorBase(EditorBase* eb);
void RemoveEditorBase(EditorBase* eb, bool deleteObject = true);
cbEditor* InternalGetBuiltinEditor(int page);
EditorBase* InternalGetEditorBase(int page);
private:
EditorManager(cb_unused const EditorManager& rhs); // prevent copy construction
EditorManager();
~EditorManager();
void OnCheckForModifiedFiles(wxCommandEvent& event);
bool IsHeaderSource(const wxFileName& candidateFile, const wxFileName& activeFile, FileType ftActive, bool& isCandidate);
wxFileName FindHeaderSource(const wxArrayString& candidateFilesArray, const wxFileName& activeFile, bool& isCandidate);
cbAuiNotebook* m_pNotebook;
cbNotebookStack* m_pNotebookStackHead;
cbNotebookStack* m_pNotebookStackTail;
size_t m_nNotebookStackSize;
EditorColourSet* m_Theme;
int m_Zoom;
bool m_isCheckingForExternallyModifiedFiles;
friend struct EditorManagerInternalData;
EditorManagerInternalData* m_pData;
DECLARE_EVENT_TABLE()
};
#endif // EDITORMANAGER_H
|