konq_historycomm.h

00001 /* This file is part of the KDE project
00002    Copyright (C) 2000 Carsten Pfeiffer <pfeiffer@kde.org>
00003 
00004    This program is free software; you can redistribute it and/or
00005    modify it under the terms of the GNU General Public
00006    License as published by the Free Software Foundation; either
00007    version 2 of the License, or (at your option) any later version.
00008 
00009    This program is distributed in the hope that it will be useful,
00010    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012     General Public License for more details.
00013 
00014    You should have received a copy of the GNU General Public License
00015    along with this program; see the file COPYING.  If not, write to
00016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017    Boston, MA 02110-1301, USA.
00018 */
00019 
00020 #ifndef KONQ_HISTORYCOMM_H
00021 #define KONQ_HISTORYCOMM_H
00022 
00023 #include <qdatetime.h>
00024 #include <qstringlist.h>
00025 
00026 #include <dcopobject.h>
00027 #include <kurl.h>
00028 
00029 class KonqHistoryEntry
00030 {
00031 public:
00032     //Should URLs be marshaled as strings (for DCOP, V2 history format)?
00033     static bool marshalURLAsStrings;
00034     KonqHistoryEntry()
00035     : numberOfTimesVisited(1) {}
00036 
00037     KURL url;
00038     QString typedURL;
00039     QString title;
00040     Q_UINT32 numberOfTimesVisited;
00041     QDateTime firstVisited;
00042     QDateTime lastVisited;
00043 };
00044 
00045 
00046 // QDataStream operators (read and write a KonqHistoryEntry
00047 // from/into a QDataStream
00048 QDataStream& operator<< (QDataStream& s, const KonqHistoryEntry& e);
00049 QDataStream& operator>> (QDataStream& s, KonqHistoryEntry& e);
00050 
00052 
00053 
00059 class KonqHistoryComm : public DCOPObject
00060 {
00061     K_DCOP
00062 
00063 protected:
00064     KonqHistoryComm( QCString objId ) : DCOPObject( objId ) {}
00065 
00066 k_dcop:
00067     virtual ASYNC notifyHistoryEntry( KonqHistoryEntry e, QCString saveId) = 0;
00068     virtual ASYNC notifyMaxCount( Q_UINT32 count, QCString saveId ) = 0;
00069     virtual ASYNC notifyMaxAge( Q_UINT32 days, QCString saveId ) = 0;
00070     virtual ASYNC notifyClear( QCString saveId ) = 0;
00071     virtual ASYNC notifyRemove( KURL url, QCString saveId ) = 0;
00072     virtual ASYNC notifyRemove( KURL::List url, QCString saveId ) = 0;
00073     virtual QStringList allURLs() const = 0;
00074 
00075 };
00076 
00077 #endif // KONQ_HISTORYCOMM_H
KDE Home | KDE Accessibility Home | Description of Access Keys