mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2006 by Tobias Koenig <tokoe@kde.org> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
#ifndef OOO_DOCUMENT_H
|
|
#define OOO_DOCUMENT_H
|
|
|
|
#include <QtCore/QByteArray>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QString>
|
|
|
|
#include "manifest.h"
|
|
|
|
namespace OOO {
|
|
|
|
class Document
|
|
{
|
|
public:
|
|
Document( const QString &fileName );
|
|
~Document();
|
|
|
|
bool open( const QString &password );
|
|
|
|
QString lastErrorString() const;
|
|
|
|
QByteArray content() const;
|
|
QByteArray meta() const;
|
|
QByteArray styles() const;
|
|
QMap<QString, QByteArray> images() const;
|
|
bool anyFileEncrypted() const;
|
|
|
|
private:
|
|
void setError( const QString& );
|
|
|
|
QString mFileName;
|
|
QByteArray mContent;
|
|
QByteArray mMeta;
|
|
QByteArray mStyles;
|
|
QMap<QString, QByteArray> mImages;
|
|
Manifest *mManifest;
|
|
QString mErrorString;
|
|
bool mAnyEncrypted;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|