RedPanda-CPP/RedPandaIDE/customfileiconprovider.h

44 lines
1.3 KiB
C
Raw Permalink Normal View History

/*
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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, see <https://www.gnu.org/licenses/>.
*/
#ifndef CUSTOMFILEICONPROVIDER_H
#define CUSTOMFILEICONPROVIDER_H
#include <QFileIconProvider>
class GitRepository;
class CustomFileIconProvider : public QFileIconProvider
{
public:
CustomFileIconProvider();
~CustomFileIconProvider();
void setRootFolder(const QString& folder);
void update();
private:
#ifdef ENABLE_VCS
GitRepository* mVCSRepository;
#endif
// QFileIconProvider interface
public:
QIcon icon(IconType type) const override;
QIcon icon(const QFileInfo &info) const override;
#ifdef ENABLE_VCS
2022-02-15 21:39:17 +08:00
GitRepository *VCSRepository() const;
#endif
};
#endif // CUSTOMFILEICONPROVIDER_H