⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 palmtoprecord.cpp

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.10平台上编译为嵌入式图形界面操作系统。
💻 CPP
字号:
/************************************************************************ Copyright (C) 2000-2005 Trolltech AS.  All rights reserved.**** This file is part of the Qtopia Environment.** ** 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.** ** A copy of the GNU GPL license version 2 is included in this package as ** LICENSE.GPL.**** 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.**** In addition, as a special exception Trolltech gives permission to link** the code of this program with Qtopia applications copyrighted, developed** and distributed by Trolltech under the terms of the Qtopia Personal Use** License Agreement. You must comply with the GNU General Public License** in all respects for all of the code used other than the applications** licensed under the Qtopia Personal Use License Agreement. If you modify** this file, you may extend this exception to your version of the file,** but you are not obligated to do so. If you do not wish to do so, delete** this exception statement from your version.** ** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#include <qtopia/private/palmtoprecord.h>#include <qtopia/stringutil.h>#include <qstringlist.h>#if defined(Q_TEMPLATEDLL)// MOC_SKIP_BEGIN#if QT_VERSION >= 0x030000Q_TEMPLATE_EXTERN template class Q_EXPORT QValueList<int>;#endif// MOC_SKIP_END#endif/*?  \class Qtopia::PalmtopRecord palmtoprecord.h  \brief The Qtopia::PalmtopRecord class is the base class for all PIM records.  Provides unique id and category support for all PIM records.  \ingroup qtopiaemb  \ingroup qtopiadesktop*/namespace Qtopia {Record &Record::operator=( const Record &c ){    mUid = c.mUid;    mCats = c.mCats;    customMap = c.customMap;    return *this;}void Record::setCategories( int single ){    if ( single == 0 )	return;    mCats.resize(1);    mCats[0] = single;}// convenience methods provided for loading and saving to xmlQString Record::idsToString( const QArray<int> &catsUnsorted ){    QArray<int> cats = catsUnsorted;    cats.sort();    QString str;    for ( uint i = 0; i < cats.size(); i++ )	if ( i == 0 )	    str = QString::number( cats[int(i)] );	else	    str += ";" + QString::number( cats[int(i)] );    return str;}// convenience methods provided for loading and saving to xmlQArray<int> Record::idsFromString( const QString &str ){    QStringList catStrs = QStringList::split( ";", str );    QArray<int> cats( catStrs.count() );    uint i = 0;    for ( QStringList::ConstIterator it = catStrs.begin();	  it != catStrs.end(); ++it ) {	cats[int(i)] = (*it).toInt();	i++;    }    return cats;}/*?  Returns the string stored for the custom field \a key.  Returns a null string if the field does not exist. */QString Record::customField( const QString &key) const{    if (customMap.contains(key))	return customMap[key];    return QString::null;}/*?  Sets the string stored for the custom field \a key to \a value. */void Record::setCustomField( const QString &key, const QString &value){//     qWarning("setting custom " + key + " to " + value);    if (customMap.contains(key))	customMap.replace(key, value);    else	customMap.insert(key, value);//     qWarning(QString("custom size %1").arg(customMap.count()));}/*?  Removes the custom field \a key. */void Record::removeCustomField(const QString &key){    customMap.remove(key);}QString Record::customToXml() const{    //qWarning(QString("writing custom %1").arg(customMap.count()));    QString buf(" ");    for ( QMap<QString, QString>::ConstIterator cit = customMap.begin();	    cit != customMap.end(); ++cit) {// 	qWarning(".ITEM.");	buf += cit.key();	buf += "=\"";	buf += escapeString(cit.data());	buf += "\" ";    }    return buf;}void Record::dump( const QMap<int, QString> &map ){    QMap<int, QString>::ConstIterator it;    for( it = map.begin(); it != map.end(); ++it )	qDebug("%d : %s",  it.key(),  it.data().local8Bit().data() );}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -