blob: 386f1ee5bf27d260ce5907c8775868c46a13a0dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/* This file is part of the KDE project
Copyright (C) 2006-2007 Jaroslaw Staniek <js@iidea.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KDBWIDGETS_UTILS_H
#define KDBWIDGETS_UTILS_H
#include <qpopupmenu.h>
#include <kexidataiteminterface.h>
QColor lighterGrayBackgroundColor(const QPalette& palette);
//! @short Used for extending editor widgets' context menu.
/*! @internal This is performed by adding a title and disabling editing
actions when "read only" flag is true. */
class KexiDBWidgetContextMenuExtender : public QObject
{
public:
KexiDBWidgetContextMenuExtender( QObject* parent, KexiDataItemInterface* iface );
~KexiDBWidgetContextMenuExtender();
//! Creates title for context menu \a menu
void createTitle(QPopupMenu *menu);
//! Enables or disables context menu actions that can modify the value.
//! The menu has to be previously provided by createTitle().
void updatePopupMenuActions();
/*! Updates title for context menu based on data item \a iface caption or name
Used in createTitle(QPopupMenu *menu) and KexiDBImageBox.
\return true is the title has been added. */
static bool updateContextMenuTitleForDataItem(QPopupMenu *menu, KexiDataItemInterface* iface,
const QString& icon = QString::null);
protected:
KexiDataItemInterface* m_iface;
QGuardedPtr<QPopupMenu> m_contextMenu;
bool m_contextMenuHasTitle; //!< true if KPopupTitle has been added to the context menu.
};
class KexiDBAutoField;
//! An interface allowing to define custom behaviour for subwidget of the KexiDBAutoField
class KexiSubwidgetInterface
{
public:
KexiSubwidgetInterface();
virtual ~KexiSubwidgetInterface();
virtual bool appendStretchRequired(KexiDBAutoField* autoField) const
{ Q_UNUSED(autoField); return false; }
virtual bool subwidgetStretchRequired(KexiDBAutoField* autoField) const
{ Q_UNUSED(autoField); return false; }
};
#endif
|