kde-playground/khelpcenter/toc.h

79 lines
1.9 KiB
C
Raw Permalink Normal View History

/*
* toc.h - part of the KDE Help Center
*
* Copyright (C) 2002 Frerich Raabe (raabe@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.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU 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 KHC_TOC_H
#define KHC_TOC_H
#include "navigatoritem.h"
#include <QtXml/QtXml>
#include <QTreeWidget>
#include <QTreeWidgetItem>
#include <QObject>
#include <KProcess>
namespace KHC {
class TOC : public QObject
{
Q_OBJECT
public:
TOC( NavigatorItem *parentItem );
QString application() const { return m_application; }
void setApplication( const QString &application ) { m_application = application; }
public Q_SLOTS:
void build( const QString &file );
Q_SIGNALS:
void itemSelected( const QString &url );
private Q_SLOTS:
void slotItemSelected( QTreeWidgetItem *item );
void meinprocExited( int exitCode, QProcess::ExitStatus exitStatus);
private:
enum CacheStatus { NeedRebuild, CacheOk };
CacheStatus cacheStatus() const;
int sourceFileCTime() const;
int cachedCTime() const;
QDomElement childElement( const QDomElement &e, const QString &name );
void buildCache();
void fillTree();
QString m_application;
QString m_cacheFile;
QString m_sourceFile;
NavigatorItem *m_parentItem;
static bool m_alreadyWarned;
};
}
#endif // KHC_TOC_H
// vim:ts=2:sw=2:et