KProperty

pixmapedit.h
1/* This file is part of the KDE project
2 Copyright (C) 2004 Cedric Pasteur <cedric.pasteur@free.fr>
3 Copyright (C) 2004 Alexander Dymo <cloudtemple@mskat.net>
4 Copyright (C) 2005-2015 Jarosław Staniek <staniek@kde.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
15
16 You should have received a copy of the GNU Library General Public License
17 along with this library; see the file COPYING.LIB. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA.
20*/
21
22#ifndef KPROPERTY_PIXMAPEDIT_H
23#define KPROPERTY_PIXMAPEDIT_H
24
25#include "KPropertyWidgetsFactory.h"
26
27#include <QPixmap>
28#include <QVariant>
29
30class QLabel;
31class QPushButton;
32
33class KPROPERTYWIDGETS_EXPORT KPropertyPixmapEditor : public QWidget
34{
35 Q_OBJECT
36 Q_PROPERTY(QVariant value READ value WRITE setValue USER true)
37
38public:
39 explicit KPropertyPixmapEditor(KProperty *prop, QWidget *parent = nullptr);
40 ~KPropertyPixmapEditor() override;
41
42 QVariant value() const;
43
44public Q_SLOTS:
45 void setValue(const QVariant &value);
46
48 void commitData( QWidget * editor );
49
50protected:
51 bool eventFilter(QObject *o, QEvent *ev) override;
52
53protected Q_SLOTS:
54 /*! Helper used by selectPixmap(). Can be also used by subclassess.
55 Selected path will be stored in "lastVisitedImagePath" config entry within "Recent Dirs"
56 config group of application's settings. This entry can be later reused when file dialogs
57 are opened for selecting image files. */
58 QString selectPixmapFileName();
59
60 /*! Selects a new pixmap using "open" file dialog. Can be reimplemented. */
61 virtual void selectPixmap();
62
63private:
64 Q_DISABLE_COPY(KPropertyPixmapEditor)
65 class Private;
66 Private * const d;
67};
68
69class KPROPERTYWIDGETS_EXPORT KPropertyPixmapDelegate : public KPropertyEditorCreatorInterface,
70 public KPropertyValuePainterInterface,
72{
73public:
74 KPropertyPixmapDelegate();
75
76 QWidget *createEditor(int type, QWidget *parent, const QStyleOptionViewItem &option,
77 const QModelIndex &index) const override;
78
79 void paint(QPainter *painter, const QStyleOptionViewItem &option,
80 const QModelIndex &index) const override;
81
82 QString valueToString(const QVariant &value, const QLocale &locale) const override;
83};
84
85#endif
An interface for editor widget creators.
Provides a specialized conversion of value to string depending on type.
The base class representing a single property.
Definition KProperty.h:96
Q_PROPERTY(...)
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
virtual bool eventFilter(QObject *watched, QEvent *event)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:40 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.