From d88c486ae403bee8f4b16e4bdf9daf19f8915eed Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 26 Sep 2009 02:09:03 +0200 Subject: Client: Added unfinished XLS import command --- src/Client/XLSSheet.h | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 src/Client/XLSSheet.h (limited to 'src/Client/XLSSheet.h') diff --git a/src/Client/XLSSheet.h b/src/Client/XLSSheet.h new file mode 100644 index 0000000..3038fdc --- /dev/null +++ b/src/Client/XLSSheet.h @@ -0,0 +1,91 @@ +/* + * XLSSheet.h + * + * Copyright (C) 2009 Matthias Schiffer + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + +#ifndef MAD_CLIENT_XLSSHEET_H_ +#define MAD_CLIENT_XLSSHEET_H_ + +#include "export.h" + +#include +#include + +#include +#include +#include +#include + +namespace Mad { +namespace Client { + +class XLSReader; + +class MAD_CLIENT_EXPORT XLSSheet : private boost::noncopyable { + public: + typedef boost::shared_ptr > RowType; + + private: + friend class XLSReader; + + boost::shared_ptr doc; + xmlNodePtr node; + + std::string title; + size_t colCount; + + std::vector rows; + std::vector colNames; + + bool firstRowColNames; + + XLSSheet(boost::shared_ptr doc0, xmlNodePtr node0); + + std::string getSheetLevelField(const std::string &name) const; + + void readRows(); + + public: + void useFirstRowAsColumnNames(bool useFirstRowColNames) { + if(firstRowColNames == useFirstRowColNames) + return; + + firstRowColNames = useFirstRowColNames; + readRows(); + } + + const std::string& getTitle() const { + return title; + } + + size_t getColumnCount() const { + return colCount; + } + + const std::string& getColumnName(unsigned col) const { + return colNames[col]; + } + + const std::vector& getRows() const { + return rows; + } +}; + +} +} + +#endif /* MAD_CLIENT_XLSSHEET_H_ */ -- cgit v1.2.3