blob: dd3df4d62243f8ef91937575b606a438c93454c6 (
plain)
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
|
/*
* Copyright (c) 2005 Cyrille Berger <[email protected]>
* Copyright (c) 2006 Isaac Clerencia <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef KSPREAD_KROSS_KRS_DOC_H_
#define KSPREAD_KROSS_KRS_DOC_H_
#include <kspread_doc.h>
#include <api/class.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqdom.h>
namespace Kross { namespace KSpreadCore {
class Sheet;
/**
* The KSpread document.
*
* Example (in Ruby) :
* @code
* doc = krosskspreadcore::get("KSpreadDocument")
* @endcode
*/
class Doc : public Kross::Api::Class<Doc>
{
public:
explicit Doc(KSpread::Doc* doc);
virtual ~Doc();
virtual const TQString getClassName() const;
private:
/**
* This function returns the Sheet currently active in this
* document.
*
* Example (in Ruby) :
* @code
* doc = krosskspreadcore::get("KSpreadDocument")
* sheet = doc.currentSheet()
* @endcode
*/
Sheet* currentSheet();
/**
* This function returns a Sheet by name.
*
* Example (in Ruby) :
* @code
* doc = krosskspreadcore::get("KSpreadDocument")
* sheet = doc.sheetByName("foosheet")
* @endcode
*/
Sheet* sheetByName(const TQString& name);
/**
* This function returns an array with the sheet names
*
* Example (in Ruby) :
* @code
* doc = krosskspreadcore::get("KSpreadDocument")
* sheetnames = doc.sheetNames()
* sheet = doc.sheetByName( sheetnames[0] )
* @endcode
*/
TQStringList sheetNames();
/**
* Add a new sheet named @p sheetname to the document.
*/
bool addSheet(const TQString& sheetname);
/**
* Remove the sheet named @p sheetname from the document.
*/
bool removeSheet(const TQString& sheetname);
/**
* Loads the native XML document.
*/
bool loadNativeXML(const TQString& xml);
/**
* Save and return the to a native document saved XML.
*/
TQString saveNativeXML();
#if 0
bool loadOpenDocXML(const TQString& xml);
TQString saveOpenDocXML();
#endif
bool openUrl(const TQString& url);
bool saveUrl(const TQString& url);
bool import(const TQString& url);
bool exp0rt(const TQString& url);
private:
KSpread::Doc* m_doc;
};
}
}
#endif
|