KParts
fileinfoextension.h
Go to the documentation of this file.
00001 /* This file is part of the KDE project 00002 Copyright (C) 2010 Dawit Alemayehu <adawit@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library 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 library 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 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. 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 KPARTS_FILEINFOEXTENSION_H 00021 #define KPARTS_FILEINFOEXTENSION_H 00022 00023 #include <QtCore/QObject> 00024 00025 #include <kfileitem.h> 00026 #include <kparts/kparts_export.h> 00027 00028 class KFileItemList; 00029 class FileInfoExtensionPrivate; 00030 00031 namespace KParts 00032 { 00033 00034 class ReadOnlyPart; 00035 00048 class KPARTS_EXPORT FileInfoExtension : public QObject 00049 { 00050 Q_OBJECT 00051 00052 public: 00053 00057 enum QueryMode { 00058 None = 0x00, 00059 AllItems = 0x01, 00060 SelectedItems = 0x02 00061 }; 00062 00063 Q_DECLARE_FLAGS(QueryModes, QueryMode) 00064 00065 00066 FileInfoExtension(KParts::ReadOnlyPart* parent); 00067 00069 virtual ~FileInfoExtension(); 00070 00074 static FileInfoExtension *childObject( QObject *obj ); 00075 00082 virtual bool hasSelection() const; 00083 00090 virtual QueryModes supportedQueryModes() const; 00091 00098 virtual KFileItemList queryFor(QueryMode mode) const = 0; 00099 00100 private: 00101 FileInfoExtensionPrivate* const d; 00102 }; 00103 00104 } 00105 00106 Q_DECLARE_OPERATORS_FOR_FLAGS(KParts::FileInfoExtension::QueryModes) 00107 00108 #endif /* KPARTS_FILEINFOEXTENSION_H */
KDE 4.6 API Reference