folderIface.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef FOLDERIFACE_H
00032 #define FOLDERIFACE_H
00033
00034 #include <qobject.h>
00035 #include <dcopobject.h>
00036
00037 class KMFolder;
00038
00039 namespace KMail {
00040
00041 class FolderIface : public QObject,
00042 public DCOPObject
00043 {
00044 Q_OBJECT
00045 K_DCOP
00046
00047 public:
00048 FolderIface( const QString& vpath );
00049
00050 k_dcop:
00051 virtual QString path() const;
00052 virtual bool usesCustomIcons() const;
00053 virtual QString normalIconPath() const;
00054 virtual QString unreadIconPath() const;
00055 virtual int messages();
00056 virtual int unreadMessages();
00057 virtual int unreadRecursiveMessages();
00058
00059
00060
00061
00062 protected:
00063 KMFolder* mFolder;
00064 QString mPath;
00065 };
00066
00067 }
00068
00069 #endif
This file is part of the documentation for kmail Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Mon Apr 26 23:23:19 2004 by
doxygen 1.3.6-20040222 written by
Dimitri van Heesch, © 1997-2003