Source: scribus/bookpalette.h
|
|
|
|
/***************************************************************************
bookpalette.h - description
-------------------
begin : Son Jan 19 2003
copyright : (C) 2003 by Franz Schmid
email : Franz.Schmid@altmuehlnet.de
***************************************************************************/
/***************************************************************************
* *
* 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 BOOKPALETTE_H
#define BOOKPALETTE_H
#include
#include
#include
/**
*@author Franz Schmid
*/
class BookPalette : public QDialog
{
Q_OBJECT
public:
BookPalette(QWidget* parent);
~BookPalette() {};
void closeEvent(QCloseEvent *ce);
BookMView *BView;
signals:
void Schliessen();
protected:
QVBoxLayout* PaletteLayout;
};
#endif
Generated by: paul on T6.linux on Tue Mar 18 23:32:13 2003, using kdoc 2.0a54. |