mirror of
https://github.com/Mudlet/Mudlet
synced 2026-08-13 18:26:27 -04:00
#### Brief overview of PR changes/additions A number of fixes to remove errors reported during Clazy analysis of the Mudlet files - such errors prevent getting warnings from such files for things that are addressed by #9195 and #9196. Generally this required the movement of method definitions from a header file to the corresponding class file so that forward declared types/classes were not used/returned by definitions in the header files. #### Motivation for adding to Mudlet Preparing the code-base to allow further investigation of warnings that Clang-Tidy reports when it can review ALL the files in the Mudlet sources. #### Other info (issues closed, discussion etc) I suspect this will reveal some more warnings of the types in those other mentioned PRs - in the files that could not be analysed before because of the errors fixed here. --------- Signed-off-by: Stephen Lyons <slysven@virginmedia.com>
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
#ifndef MUDLET_GIFUNIT_H
|
|
#define MUDLET_GIFUNIT_H
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2023 by Adam Robinson - seldon1951@hotmail.com *
|
|
* Copyright (C) 2026 by Stephen Lyons - slysven@virginmedia.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 2 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, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
|
|
|
|
#include <QMovie>
|
|
#include <QPointer>
|
|
#include <QString>
|
|
|
|
#include <list>
|
|
|
|
class Host;
|
|
class TLabel;
|
|
|
|
|
|
class GifTracker
|
|
{
|
|
|
|
public:
|
|
GifTracker() = default;
|
|
explicit GifTracker(Host* pHost);
|
|
|
|
bool registerGif(QMovie* pT);
|
|
void unregisterGif(QMovie* pT);
|
|
std::tuple<QString, int, int> assembleReport();
|
|
|
|
|
|
private:
|
|
QPointer<Host> mpHost;
|
|
std::list<QMovie*> mMovieList;
|
|
};
|
|
|
|
#endif // MUDLET_GIFUNIT_H
|