00001 /* 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 * This program is distributed in the hope that it will be useful, * 00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00011 * GNU General Public License for more details. * 00012 * * 00013 * You should have received a copy of the GNU General Public License * 00014 * along with this program; if not, write to the * 00015 * Free Software Foundation, Inc., * 00016 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00017 */ 00018 00028 #ifndef LAYOUTDISKMANAGER_HPP_ 00029 #define LAYOUTDISKMANAGER_HPP_ 00030 00031 #define LINE_SPACE 2 00032 #define CELL_SPACE 3 00033 00034 #include "FlexLexer.h" 00035 #include "layoutManager.hpp" 00036 #include "wx/textfile.h" 00037 00038 class LayoutManager; 00039 class LayoutConfig; 00040 00041 class LayoutDiskManager 00042 { 00043 public: 00044 LayoutDiskManager(LayoutManager *controller); 00045 virtual ~LayoutDiskManager(); 00046 bool saveLayout(LayoutConfig *layoutConfig, wxString fileName); 00047 bool openLayout(wxString fileName); 00048 00049 private: 00051 LayoutManager *controller; 00053 wxTextFile file; 00054 LayoutConfig* readLayout(int width, int height, FlexLexer *lexer); 00055 bool saveLayout(LayoutConfig *layoutConfig); 00056 bool saveGrid(Grid grid); 00057 void returnLayout(LayoutConfig *layoutConfig); 00058 }; 00059 00060 #endif /*LAYOUTDISKMANAGER_HPP_*/