kmail
foldertreebase.h
00001 /* 00002 Copyright (c) 2007 Volker Krause <vkrause@kde.org> 00003 00004 This program is free software; you can redistribute it and/or modify 00005 it under the terms of the GNU General Public License as published by 00006 the Free Software Foundation; either version 2 of the License, or 00007 (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 00012 GNU 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; if not, write to the Free Software 00016 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00017 */ 00018 00019 #ifndef KMAIL_FOLDERTREEBASE_H 00020 #define KMAIL_FOLDERTREEBASE_H 00021 00022 #include <libkdepim/kfoldertree.h> 00023 00024 class KMFolder; 00025 class KMMainWidget; 00026 00027 namespace KMail { 00028 00029 class FolderTreeBase : public KFolderTree 00030 { 00031 Q_OBJECT 00032 public: 00033 FolderTreeBase( KMMainWidget *mainWidget, QWidget *parent = 0, const char *name = 0 ); 00034 00036 KMMainWidget* mainWidget() const { return mMainWidget; } 00037 00038 signals: 00040 void folderDrop(KMFolder*); 00041 00043 void folderDropCopy(KMFolder*); 00044 00045 protected: 00046 enum { 00047 DRAG_COPY = 0, 00048 DRAG_MOVE = 1, 00049 DRAG_CANCEL = 2 00050 }; 00051 int dndMode( bool alwaysAsk = false ); 00052 void contentsDropEvent( QDropEvent *e ); 00053 00055 virtual bool event(QEvent *e); 00056 00058 virtual void readColorConfig(); 00059 00061 bool hideLocalInbox() const; 00062 00063 protected: 00064 KMMainWidget *mMainWidget; 00065 }; 00066 00067 } 00068 00069 #endif