diff options
Diffstat (limited to 'src/libs/widgets/imageplugins/imagepaniconwidget.h')
-rw-r--r-- | src/libs/widgets/imageplugins/imagepaniconwidget.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/libs/widgets/imageplugins/imagepaniconwidget.h b/src/libs/widgets/imageplugins/imagepaniconwidget.h new file mode 100644 index 00000000..e7d6ffb7 --- /dev/null +++ b/src/libs/widgets/imageplugins/imagepaniconwidget.h @@ -0,0 +1,68 @@ +/* ============================================================ + * + * This file is a part of digiKam project + * http://www.digikam.org + * + * Date : 2004-08-22 + * Description : a widget to display a panel to choose + * a rectangular image area. + * + * Copyright (C) 2004-2008 by Gilles Caulier <caulier dot gilles at gmail dot com> + * + * 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, 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. + * + * ============================================================ */ + +#ifndef IMAGEPANICONWIDGET_H +#define IMAGEPANICONWIDGET_H + +// TQt includes. + +#include <tqpointarray.h> + +// Local includes. + +#include "paniconwidget.h" + +namespace Digikam +{ + +class ImagePanIconWidgetPriv; + +class ImagePanIconWidget : public PanIconWidget +{ +TQ_OBJECT + + +public: + + ImagePanIconWidget(int width, int height, TQWidget *parent=0, WFlags flags=TQt::WDestructiveClose); + ~ImagePanIconWidget(); + + void setHighLightPoints(const TQPointArray& pointsList); + +public slots: + + void slotSeparateViewToggled(int t); + +private: + + void updatePixmap(); + +private: + + ImagePanIconWidgetPriv *d; +}; + +} // NameSpace Digikam + +#endif /* IMAGEPANICONWIDGET_H */ |