Source: kparted/kpartedview.h
|
|
|
|
// -*- c++ -*-
/***************************************************************************
kpartedview.h - description
-------------------
begin : Fri Jul 13 17:32:54 BST 2001
copyright : (C) 2001 by Richard Moore
email : rich@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 KPARTEDVIEW_H
#define KPARTEDVIEW_H
// include files for QT
#include <qwidget.h>
// application specific includes
#include "kparteddoc.h"
class NavView;
class DeviceView;
/**
* This class provides an incomplete base for your application view.
*/
class KPartEdView : public QWidget
{
Q_OBJECT
public:
KPartEdView(QWidget *parent=0, KPartEdDoc* doc=0);
~KPartEdView();
protected slots:
void slotDocumentChanged();
private:
NavView *nav;
DeviceView *dev;
};
#endif
Generated by: rich@pegasus on Mon Jul 16 00:25:18 2001, using kdoc 2.0a45. |