Files
RedBear-OS/local/recipes/kde/kf6-kxmlgui/source/src/kxmlguiversionhandler_p.h
T
2026-04-14 10:51:06 +01:00

46 lines
1.1 KiB
C++

/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2000 Simon Hausmann <hausmann@kde.org>
SPDX-FileCopyrightText: 2000 Kurt Granroth <granroth@kde.org>
SPDX-FileCopyrightText: 2007 David Faure <faure@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KXMLGUIVERSIONHANDLER_P_H
#define KXMLGUIVERSIONHANDLER_P_H
#include <QStringList>
/**
* @internal
* Helper class for KXMLGUIClient::setXMLFile
* Finds the xml file with the largest version number and takes
* care of keeping user settings (from the most local file)
* like action shortcuts or toolbar customizations.
*
* This is about handling upgrades (a new version of the application
* has been installed, with a new xmlgui file, and the user might have
* a local modified version of an older xmlgui file).
*/
class KXmlGuiVersionHandler
{
public:
explicit KXmlGuiVersionHandler(const QStringList &files);
QString finalFile() const
{
return m_file;
}
QString finalDocument() const
{
return m_doc;
}
private:
QString m_file;
QString m_doc;
};
#endif /* KXMLGUIVERSIONHANDLER_P_H */