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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : mainbook.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef MAINBOOK_H
#define MAINBOOK_H
#include "Notebook.h"
#include "clEditorBar.h"
#include "cl_command_event.h"
#include "cl_editor.h"
#include "editorframe.h"
#include "filehistory.h"
#include "navigationmanager.h"
#include "quickfindbar.h"
#include "sessionmanager.h"
#include "wxStringHash.h"
#include <deque>
#include <functional>
#include <set>
#include <vector>
#include <wx/panel.h>
class FilesModifiedDlg;
class IEditor;
class MessagePane;
class clEditorBar;
class WelcomePage;
class MainBook : public wxPanel
{
typedef std::vector<std::function<void(IEditor*)>> CallbackVec_t;
private:
FileHistory m_recentFiles;
clEditorBar* m_navBar;
Notebook* m_book;
bool m_useBuffereLimit;
EditorFrame::List_t m_detachedEditors;
bool m_isWorkspaceReloading;
bool m_reloadingDoRaise; // Prevents multiple Raises() during RestoreSession()
FilesModifiedDlg* m_filesModifiedDlg;
std::unordered_map<wxString, TagEntryPtr> m_currentNavBarTags;
WelcomePage* m_welcomePage = nullptr;
QuickFindBar* m_findBar;
std::unordered_map<wxString, CallbackVec_t> m_callbacksTable;
bool m_initDone = false;
public:
enum {
kGetAll_Default = 0x00000000, // booked editors only
kGetAll_RetainOrder = 0x00000001, // Order must keep
kGetAll_IncludeDetached = 0x00000002, // return both booked editors and detached
kGetAll_DetachedOnly = 0x00000004, // return detached editors only
};
private:
FilesModifiedDlg* GetFilesModifiedDlg();
void DoShowTabLabelContextMenu();
void CreateGuiControls();
void ConnectEvents();
void DoUpdateNotebookTheme();
void DoOpenImageViewer(const wxFileName& filename);
void DoUpdateEditorsThemes();
void OnMouseDClick(wxBookCtrlEvent& e);
void OnTabDClicked(wxBookCtrlEvent& e);
void OnTabLabelContextMenu(wxBookCtrlEvent& e);
void OnPageClosing(wxBookCtrlEvent& e);
void OnPageClosed(wxBookCtrlEvent& e);
void OnPageChanged(wxBookCtrlEvent& e);
void OnClosePage(wxBookCtrlEvent& e);
void OnPageChanging(wxBookCtrlEvent& e);
void OnEditorModified(clCommandEvent& event);
void OnEditorSaved(clCommandEvent& event);
void OnProjectFileAdded(clCommandEvent& e);
void OnProjectFileRemoved(clCommandEvent& e);
void OnWorkspaceLoaded(clWorkspaceEvent& e);
void OnWorkspaceClosed(clWorkspaceEvent& e);
void OnDebugEnded(clDebugEvent& e);
void OnInitDone(wxCommandEvent& e);
void OnDetachedEditorClosed(clCommandEvent& e);
void OnThemeChanged(clCommandEvent& e);
void OnColoursAndFontsChanged(clCommandEvent& e);
bool DoSelectPage(wxWindow* win);
void DoHandleFrameMenu(clEditor* editor);
void DoEraseDetachedEditor(IEditor* editor);
void OnWorkspaceReloadStarted(clWorkspaceEvent& e);
void OnWorkspaceReloadEnded(clWorkspaceEvent& e);
void OnEditorSettingsChanged(wxCommandEvent& e);
void OnSettingsChanged(wxCommandEvent& e);
void OnIdle(wxIdleEvent& event);
WelcomePage* GetOrCreateWelcomePage();
/**
* @brief return proper tab label for a given filename
*/
wxString CreateLabel(const wxFileName& fn, bool modified) const;
/**
* @brief open file and set an alternate content
*/
void DoOpenFile(const wxString& filename, const wxString& content = "");
/**
* @brief display the welcome page
*/
void ShowWelcomePage(bool show);
void DoShowWindow(wxWindow* win, bool show);
void OnEditorChanged(wxCommandEvent& event);
void OnAllEditorClosed(wxCommandEvent& event);
void push_callback(std::function<void(IEditor*)>&& callback, const wxString& fullpath);
void execute_callbacks_for_file(const wxString& fullpath);
bool has_callbacks(const wxString& fullpath) const;
int FindEditorIndexByFullPath(const wxString& fullpath);
public:
MainBook(wxWindow* parent);
virtual ~MainBook();
void SetFindBar(QuickFindBar* findBar);
QuickFindBar* GetFindBar() const { return m_findBar; }
/**
* @brief create the welcome page
*/
void InitWelcomePage();
static bool AskUserToSave(clEditor* editor);
/**
* @brief show the navigation dialog
*/
void ShowNavigationDialog();
/**
* @brief move the active page right or left
*/
void MovePage(bool movePageRight);
const EditorFrame::List_t& GetDetachedEditors() const { return m_detachedEditors; }
void DetachActiveEditor();
void ClearFileHistory();
void GetRecentlyOpenedFiles(wxArrayString& files);
FileHistory& GetRecentlyOpenedFilesClass() { return m_recentFiles; }
void ShowQuickBarForPlugins();
void ShowQuickBar(bool s);
void ShowQuickBarToolBar(bool s);
void ShowQuickBar(const wxString& findWhat, bool showReplace);
void ShowTabBar(bool b);
void ShowNavBar(bool s = true);
/**
* @brief is navigation bar enabled by user?
*/
bool IsNavBarEnabled() const { return m_navBar && m_navBar->ShouldShow(); }
/**
* @brief is navigation bar shown (either by user or automatically)?
*/
bool IsNavBarShown() const { return m_navBar && m_navBar->IsShown(); }
clEditorBar* GetEditorBar() { return m_navBar; }
void SetEditorBar(clEditorBar* bar) { m_navBar = bar; }
void SaveSession(SessionEntry& session, wxArrayInt* excludeArr = NULL);
void RestoreSession(SessionEntry& session);
/**
* @brief create session from current IDE state
*/
void CreateSession(SessionEntry& session, wxArrayInt* excludeArr = NULL);
clEditor* GetActiveEditor(bool includeDetachedEditors = false);
/**
* @brief return vector of all editors in the notebook. This function only returns instances of type clEditor
* @param editors [output]
* @param flags kGetAll_*
*/
void GetAllEditors(clEditor::Vec_t& editors, size_t flags);
/**
* @brief return vector of all tabs in the notebook
* @param tabs [output]
*/
void GetAllTabs(clTab::Vec_t& tabs);
/**
* @brief return a list of the detached tabs
*/
void GetDetachedTabs(clTab::Vec_t& tabs);
clEditor* FindEditor(const wxString& fileName);
bool CloseEditor(const wxString& fileName) { return ClosePage(FindEditor(fileName)); }
wxWindow* GetCurrentPage();
int GetCurrentPageIndex();
wxWindow* GetPage(size_t page);
size_t GetPageCount() const;
wxWindow* FindPage(const wxString& text);
/**
* @brief return the bitmap index or add it if it is missing and then return its index
*/
int GetBitmapIndexOrAdd(const wxString& name);
clEditor* NewEditor();
/**
* @brief open or select ((if the file is already loaded in CodeLite) editor with a given `file_name` to the
* notebook control and make it active Once the page is **visible**, execute the callback provided by the user
* @param callback user callback to be executed once the editor is visible on screen
* On some platforms (e.g. `GTK`) various operations (e.g. `CenterLine()`) will not work as intended unless the
* editor is actually visible on screen. This way you
* can delay the call the `CenterLine()` after the editor is visible
*/
clEditor* OpenFileAsync(const wxString& file_name, std::function<void(IEditor*)>&& callback);
clEditor* OpenFile(const wxString& file_name, const wxString& projectName = wxEmptyString, int lineno = wxNOT_FOUND,
long position = wxNOT_FOUND, OF_extra extra = OF_AddJump, bool preserveSelection = true,
int bmp = wxNOT_FOUND, const wxString& tooltip = wxEmptyString);
/**
* @brief open file based on a browsing record
*/
clEditor* OpenFile(const BrowseRecord& rec);
/**
* @brief a simpler version: open a file with a given tooltip and bitmap
*/
clEditor* OpenFile(const wxString& file_name, int bmp, const wxString& tooltip = wxEmptyString)
{
return OpenFile(file_name, "", wxNOT_FOUND, wxNOT_FOUND, OF_AddJump, false, bmp, tooltip);
}
/**
* @brief add page to the main book
*/
bool AddBookPage(wxWindow* win, const wxString& text, const wxString& tooltip, int bmp, bool selected,
int insert_at_index);
bool SelectPage(wxWindow* win);
bool UserSelectFiles(std::vector<std::pair<wxFileName, bool>>& files, const wxString& title,
const wxString& caption, bool cancellable = true);
bool SaveAll(bool askUser, bool includeUntitled);
void ReloadExternallyModified(bool prompt);
bool ClosePage(const wxString& text);
bool ClosePage(wxWindow* win);
bool ClosePage(IEditor* editor, bool prompt);
bool CloseAllButThis(wxWindow* win);
bool CloseAll(bool cancellable);
// These 3 functions are meant to be used with CallAfter
void ClosePageVoid(wxWindow* win);
void CloseAllButThisVoid(wxWindow* win);
void CloseTabsToTheRight(wxWindow* win);
void CloseAllVoid(bool cancellable);
wxString GetPageTitle(wxWindow* win) const;
void SetPageTitle(wxWindow* page, const wxString& name);
void SetPageTitle(wxWindow* page, const wxFileName& filename, bool modified);
long GetBookStyle();
void ApplySettingsChanges();
void ApplyTabLabelChanges();
void UnHighlightAll();
void DelAllBreakpointMarkers();
void SetViewEOL(bool visible);
void SetViewWordWrap(bool b);
void HighlightWord(bool hl);
void ShowWhitespace(int ws);
void UpdateColours();
void UpdateBreakpoints();
void MarkEditorReadOnly(clEditor* editor);
void SetUseBuffereLimit(bool useBuffereLimit) { this->m_useBuffereLimit = useBuffereLimit; }
bool GetUseBuffereLimit() const { return m_useBuffereLimit; }
Notebook* GetNotebook() { return m_book; }
};
#endif // MAINBOOK_H
|