/** 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 PROJECTLAYOUTLOADER_H#define PROJECTLAYOUTLOADER_H#ifndef CB_PRECOMP#include <wx/string.h>#include "cbauibook.h"#endif#define PROJECT_LAYOUT_FILE_VERSION_MAJOR 1#define PROJECT_LAYOUT_FILE_VERSION_MINOR 0class cbProject;class DLLIMPORT ProjectLayoutLoader{public:ProjectLayoutLoader(cbProject* project);virtual ~ProjectLayoutLoader();bool Open(const wxString& filename);bool Save(const wxString& filename);bool LoadNotebookLayout(){return Manager::Get()->GetEditorManager()->GetNotebook()->LoadPerspective( m_NotebookLayout,!Manager::Get()->GetProjectManager()->IsLoadingWorkspace());}ProjectFile* GetTopProjectFile() { return m_TopProjectFile; }protected:private:cbProject* m_pProject;ProjectFile* m_TopProjectFile;wxString m_NotebookLayout;};#endif // PROJECTLAYOUTLOADER_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。