diff options
Diffstat (limited to 'kuiviewer/kuiviewer_part.h')
-rw-r--r-- | kuiviewer/kuiviewer_part.h | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/kuiviewer/kuiviewer_part.h b/kuiviewer/kuiviewer_part.h new file mode 100644 index 00000000..e34f1f35 --- /dev/null +++ b/kuiviewer/kuiviewer_part.h @@ -0,0 +1,80 @@ +/** + * + * This file is part of the kuiviewer package + * Copyright (c) 2003 Richard Moore <rich@kde.org> + * Copyright (c) 2003 Ian Reinhart Geiser <geiseri@kde.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License version 2 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + **/ + +#ifndef KUIVIEWERPART_H +#define KUIVIEWERPART_H + +#include <qguardedptr.h> +#include <kparts/part.h> + +class QWidget; +class KURL; +class QVBox; +class KAboutData; +class KListAction; +class KListView; + +/** + * This is a "Part". It that does all the real work in a KPart + * application. + * + * @short Main Part + * @author Richard Moore <rich@kde.org> + * @version 0.1 + */ +class KUIViewerPart : public KParts::ReadOnlyPart +{ + Q_OBJECT +public: + /** + * Default constructor + */ + KUIViewerPart(QWidget *parentWidget, const char *widgetName, + QObject *parent, const char *name, const QStringList &args); + + /** + * Destructor + */ + virtual ~KUIViewerPart(); + + static KAboutData *createAboutData(); + +public slots: + bool openURL( const KURL& ); + void slotStyle(int); + void slotGrab(); + void updateActions(); + +protected: + /** + * This must be implemented by each part + */ + virtual bool openFile(); + +private: + QVBox *m_widget; + QGuardedPtr<QWidget> m_view; + KListAction *m_style; + KAction *m_copy; +}; + +#endif // KUIVIEWERPART_H + |