/usr/include/k3sqlpropertymap.h is in kdelibs5-dev 4:4.13.3-0ubuntu0.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 72 73 74 75 76 77 78 | /* This file is part of the KDE project
Copyright (C) 2002 David Faure <dfaure@kde.org>
This program 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.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef K3SQLPROPERTYMAP_H
#define K3SQLPROPERTYMAP_H
#ifndef QT_NO_SQL
#include <Qt3Support/Q3SqlPropertyMap>
#endif
#include <kde3support_export.h>
/**
* Install a Qt SQL property map with entries for all KDE widgets
* Call this in any application using KDE widgets in Q3SqlForm or Q3DataView.
*
* @deprecated use User in the meta object to determine which Q_PROPERTY to use for any widget.
*
* <code>
* const QMetaObject *metaObject = widget->metaObject();
* for (int i = 0; i < metaObject->propertyCount(); ++i) {
* const QMetaProperty metaProperty = metaObject->property(i);
* if (metaProperty.isUser()) {
* QString propertyToUse = metaProperty.name();
* break;
* }
* }
* </code>
*/
static inline KDE_DEPRECATED void kInstallKDEPropertyMap()
{
#ifndef QT_NO_SQL
static bool installed = false;
if (installed) return;
installed = true;
// QSqlPropertyMap takes ownership of the new default map.
Q3SqlPropertyMap *kdeMap = new Q3SqlPropertyMap;
kdeMap->insert( QLatin1String("KColorButton"), QLatin1String("color") );
kdeMap->insert( QLatin1String("KComboBox"), QLatin1String("currentIndex") );
kdeMap->insert( QLatin1String("KDatePicker"), QLatin1String("date") );
kdeMap->insert( QLatin1String("KDateWidget"), QLatin1String("date") );
kdeMap->insert( QLatin1String("KDateTimeWidget"), QLatin1String("dateTime") );
kdeMap->insert( QLatin1String("KEditListBox"), QLatin1String("items") );
kdeMap->insert( QLatin1String("KFontCombo"), QLatin1String("family") );
kdeMap->insert( QLatin1String("KFontRequester"), QLatin1String("font") );
kdeMap->insert( QLatin1String("KFontChooser"), QLatin1String("font") );
kdeMap->insert( QLatin1String("KHistoryCombo"), QLatin1String("currentItem") );
kdeMap->insert( QLatin1String("KListWidget"), QLatin1String("currentItem") );
kdeMap->insert( QLatin1String("KLineEdit"), QLatin1String("text") );
kdeMap->insert( QLatin1String("KRestrictedLine"), QLatin1String("text") );
kdeMap->insert( QLatin1String("KTextBrowser"), QLatin1String("source") );
kdeMap->insert( QLatin1String("KTextEdit"), QLatin1String("text") );
kdeMap->insert( QLatin1String("KUrlRequester"), QLatin1String("url") );
kdeMap->insert( QLatin1String("KPasswordEdit"), QLatin1String("password") );
kdeMap->insert( QLatin1String("KIntNumInput"), QLatin1String("value") );
kdeMap->insert( QLatin1String("KIntSpinBox"), QLatin1String("value") );
kdeMap->insert( QLatin1String("KDoubleNumInput"), QLatin1String("value") );
Q3SqlPropertyMap::installDefaultMap( kdeMap );
#endif
}
#endif // K3SQLPROPERTYMAP_H
|