summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/qpro.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-01-27 14:50:03 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-01-27 14:50:03 +0000
commitd52c337e9a5ebe5ba8ec8aab7caaebec00b84125 (patch)
treea39a0ba55aa08bc212926eb1072acd87341620b2 /sc/source/filter/inc/qpro.hxx
parentd973f9ecbc6f962f49ed924f8870a2f146bdc4fd (diff)
INTEGRATION: CWS qpro03 (1.1.4); FILE ADDED
2005/10/14 15:11:08 mmeeks 1.1.4.5: Issue i#41688# Fix some silly bugs, init the QProStyle members, import font heights. 2005/09/21 13:23:41 er 1.1.4.4: change license header: remove SISSL 2005/06/13 11:13:12 mmeeks 1.1.4.3: Issue: #i41688 Submitted by: sshilpa Approveed by: mmeeks Fix a number of formula problems, remove some more cruft. 2005/05/13 16:47:47 mmeeks 1.1.4.2: Issue number: i#41688# Submitted by: shilpa Reviewed by: mmeeks More qpro cleanup. 2005/04/14 08:09:15 mnicel 1.1.4.1: Issue Number: 41688 QPro Filter implementation
Diffstat (limited to 'sc/source/filter/inc/qpro.hxx')
-rw-r--r--sc/source/filter/inc/qpro.hxx72
1 files changed, 72 insertions, 0 deletions
diff --git a/sc/source/filter/inc/qpro.hxx b/sc/source/filter/inc/qpro.hxx
new file mode 100644
index 000000000000..2d5d7505cc30
--- /dev/null
+++ b/sc/source/filter/inc/qpro.hxx
@@ -0,0 +1,72 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: qpro.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: hr $ $Date: 2006-01-27 15:50:03 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+
+
+#ifndef SC_QPRO_HXX
+#define SC_QPRO_HXX
+
+#include <sal/config.h>
+#include "filter.hxx"
+#include "document.hxx"
+#include "cell.hxx"
+
+#ifndef _STRING_HXX
+#include <tools/string.hxx>
+#endif
+
+#include <tools/color.hxx>
+#include "flttypes.hxx"
+#include "ftools.hxx"
+#include "qprostyle.hxx"
+#include "biff.hxx"
+
+// Stream wrapper class
+class ScQProReader : public ScBiffReader
+{
+ public:
+ bool recordsLeft();
+ bool IsEndOfFile();
+ void SetEof( bool bValue ){ mbEndOfFile = bValue; }
+ bool nextRecord();
+ sal_uInt16 getId() { return mnId; }
+ sal_uInt16 getLength() { return mnLength; }
+ void readString( String &rString, sal_uInt16 nLength );
+ ScQProReader( SfxMedium &rMedium, ScDocument* pDoc);
+ ~ScQProReader(){ };
+ FltError import( ScDocument *pDoc );
+ FltError readSheet( sal_uInt16 ntab, ScDocument* pDoc, ScQProStyle *pStyle );
+};
+#endif
+