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

📄 eventview.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 "eventview.h"#include <qtopia/stringutil.h>#include <qtopia/timestring.h>#include <qtopia/pim/event.h>#ifdef QTOPIA_DATA_LINKING#include <qtopia/qdl.h>#endif#include <qglobal.h>EventView::EventView( QWidget *parent, const char *name )    : QTextBrowser( parent, name ),    previousView( 0 ){#ifdef QTOPIA_PHONE    setFrameStyle(NoFrame);#endif#ifdef QTOPIA_DATA_LINKING    mNotesQC = new QDLClient( this, "editNote" );#endif}void EventView::setSource( const QString &ahref ){#ifdef QTOPIA_DATA_LINKING    QDL::activateLink( ahref, QDL::clients( this ) );#else    (void)ahref;#endif}void EventView::init( const PimEvent &ev ){    QString text = createPreviewText( ev );    if ( text != previousText )	setText( text );    previousText = text;}void EventView::keyPressEvent( QKeyEvent *e ){    switch ( e->key() ) {	case Key_Space:	case Key_Return:	    // PHONE back is handled in DateBook::closeEvent()	    emit done();	    break;	default:	    QTextBrowser::keyPressEvent( e );	    break;    }}QString EventView::createPreviewText( const PimEvent &ev ){    QString text;#ifdef QTOPIA_DATA_LINKING    mNotesQC->clear();    QDL::loadLinks( ev.customField( QDL::DATA_KEY ), QDL::clients( this ) );#endif    text = "<center><b>" + Qtopia::escapeString(ev.description()) + "</b></center><br>";    if ( !ev.location().isEmpty() )	text += "<b>" + tr("Location: ") + "</b>" + ev.location() + "<br>";    if ( !ev.isAllDay() ) {	text += "<b>" + tr("Start: ") + "</b>" +		TimeString::localYMD( ev.startInCurrentTZ().date() ) + " " +	        TimeString::localHM( ev.startInCurrentTZ().time() ) + "<br>";	text += "<b>" + tr("End: ") + "</b>" +		TimeString::localYMD( ev.endInCurrentTZ().date() ) + " " +	        TimeString::localHM( ev.endInCurrentTZ().time() ) + "<br>";    }    if ( ev.hasAlarm() )	text += "<b>" + tr("Alarm: ") + "</b>" +	    QString("%1").arg( ev.alarmDelay() ) + " " + tr("minutes") + " (" +	    tr(ev.alarmSound() == PimEvent::Silent ? "Silent" : "Audible") +	    ")" + "<br>";    if ( ev.hasRepeat() ) {	QString word;	if ( ev.repeatType() == PimEvent::Daily )	    if ( ev.frequency() > 1 )		word = tr("every %1 days", "eg. every 2 days");	    else		word = tr("every day");	else if ( ev.repeatType() == PimEvent::Weekly )	    if ( ev.frequency() > 1 )		word = tr("every %1 weeks", "eg. every 2 weeks");	    else		word = tr("every week");	else if ( ev.repeatType() == PimEvent::MonthlyDate ||		  ev.repeatType() == PimEvent::MonthlyDay ||		  ev.repeatType() == PimEvent::MonthlyEndDay )	    if ( ev.frequency() > 1 )		word = tr("every %1 months", "eg. every 2 months");	    else		word = tr("every month");	else if ( ev.repeatType() == PimEvent::Yearly )	    if ( ev.frequency() > 1 )		word = tr("every %1 years", "eg. every 2 years");	    else		word = tr("every year");	text += "<b>" + tr("Repeat: ") + "</b>";	if ( ev.frequency() > 1 )	    text += word.arg( ev.frequency() );	else 	    text += word;	if ( !ev.repeatForever() )	    text += tr(" ending on %1", "eg. repeat every week ending on 21 june").arg( TimeString::localYMD(ev.repeatTill()) );	text += "<br>";    }    if ( !ev.notes().isEmpty() )    {	QString txt = Qtopia::escapeMultiLineString( ev.notes() );#ifdef QTOPIA_DATA_LINKING	txt = QDL::lidsToAnchors( txt, mNotesQC );#endif	text += "<b>" + tr("Notes: ") + "</b>" +	     txt + "<br>";    }    return text;}

⌨️ 快捷键说明

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