/usr/include/KF5/mailcommon/foldertreeview.h is in libkf5mailcommon-dev 4:17.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | /*
Copyright (c) 2009-2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef MAILCOMMON_FOLDERTREEVIEW_H
#define MAILCOMMON_FOLDERTREEVIEW_H
#include "mailcommon_export.h"
#include "foldertreewidget.h"
#include "mailcommon/mailutil.h"
#include <EntityTreeView>
#include <Collection>
class QMouseEvent;
namespace Akonadi {
class CollectionStatisticsDelegate;
}
namespace MailCommon {
/**
* This is an enhanced EntityTreeView specially suited for the folders in KMail's
* main folder widget.
*/
class MAILCOMMON_EXPORT FolderTreeView : public Akonadi::EntityTreeView
{
Q_OBJECT
public:
explicit FolderTreeView(QWidget *parent = nullptr, bool showUnreadCount = true);
explicit FolderTreeView(KXMLGUIClient *xmlGuiClient, QWidget *parent = nullptr, bool showUnreadCount = true);
virtual ~FolderTreeView();
void selectNextUnreadFolder(bool confirm = false);
void selectPrevUnreadFolder(bool confirm = false);
void showStatisticAnimation(bool anim);
void disableContextMenuAndExtraColumn();
void setTooltipsPolicy(FolderTreeWidget::ToolTipDisplayPolicy);
void restoreHeaderState(const QByteArray &data);
Akonadi::Collection currentFolder() const;
void disableSaveConfig();
void readConfig();
void updatePalette();
void keyboardSearch(const QString &) override;
protected:
enum Move {
Next = 0,
Previous = 1
};
void init(bool showUnreadCount);
void selectModelIndex(const QModelIndex &);
void setCurrentModelIndex(const QModelIndex &);
QModelIndex selectNextFolder(const QModelIndex ¤t);
bool isUnreadFolder(const QModelIndex ¤t, QModelIndex &nextIndex, FolderTreeView::Move move, bool confirm);
void writeConfig();
void setSortingPolicy(FolderTreeWidget::SortingPolicy policy, bool writeInConfig = false);
void mousePressEvent(QMouseEvent *e) override;
public Q_SLOTS:
void slotFocusNextFolder();
void slotFocusPrevFolder();
void slotSelectFocusFolder();
void slotFocusFirstFolder();
void slotFocusLastFolder();
protected Q_SLOTS:
void slotHeaderContextMenuRequested(const QPoint &);
void slotHeaderContextMenuChangeIconSize(bool);
void slotHeaderContextMenuChangeHeader(bool);
void slotHeaderContextMenuChangeToolTipDisplayPolicy(bool);
void slotHeaderContextMenuChangeSortingPolicy(bool);
Q_SIGNALS:
void changeTooltipsPolicy(FolderTreeWidget::ToolTipDisplayPolicy);
void manualSortingChanged(bool actif);
void newTabRequested(bool);
private:
enum SearchDirection {
ForwardSearch,
BackwardSearch
};
QModelIndex indexAbove(const QModelIndex ¤t) const;
QModelIndex indexBelow(const QModelIndex ¤t) const;
QModelIndex lastChild(const QModelIndex ¤t) const;
QModelIndex nextUnreadCollection(const QModelIndex ¤t, SearchDirection direction) const;
bool ignoreUnreadFolder(const Akonadi::Collection &, bool) const;
bool allowedToEnterFolder(const Akonadi::Collection &, bool) const;
bool trySelectNextUnreadFolder(const QModelIndex &, SearchDirection, bool);
FolderTreeWidget::ToolTipDisplayPolicy mToolTipDisplayPolicy;
FolderTreeWidget::SortingPolicy mSortingPolicy;
Akonadi::CollectionStatisticsDelegate *mCollectionStatisticsDelegate = nullptr;
bool mbDisableContextMenuAndExtraColumn = false;
bool mbDisableSaveConfig = false;
};
}
#endif
|