2014-11-11 12:42:37 +01:00
|
|
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
*
|
2015-05-07 15:30:58 +02:00
|
|
|
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
|
2014-11-11 12:42:37 +01:00
|
|
|
*
|
|
|
|
* Calamares 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.
|
|
|
|
*
|
|
|
|
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CALAMARESUTILS_RETRANSLATOR_H
|
|
|
|
#define CALAMARESUTILS_RETRANSLATOR_H
|
|
|
|
|
2014-11-11 15:12:17 +01:00
|
|
|
#include <QList>
|
2014-11-11 12:42:37 +01:00
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
class QEvent;
|
|
|
|
|
|
|
|
namespace CalamaresUtils
|
|
|
|
{
|
|
|
|
|
|
|
|
class Retranslator : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-11-11 15:12:17 +01:00
|
|
|
static void attachRetranslator( QObject* parent,
|
|
|
|
std::function< void( void ) > retranslateFunc );
|
|
|
|
|
|
|
|
void addRetranslateFunc( std::function< void( void ) > retranslateFunc );
|
2014-11-11 12:42:37 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool eventFilter( QObject* obj, QEvent* e ) override;
|
|
|
|
|
|
|
|
private:
|
2014-11-11 15:12:17 +01:00
|
|
|
explicit Retranslator( QObject* parent );
|
|
|
|
|
|
|
|
QList< std::function< void( void ) > > m_retranslateFuncList;
|
2014-11-11 12:42:37 +01:00
|
|
|
};
|
|
|
|
|
2014-11-11 15:11:06 +01:00
|
|
|
|
2014-11-11 12:42:37 +01:00
|
|
|
} // namespace CalamaresUtils
|
|
|
|
|
2015-05-07 15:30:58 +02:00
|
|
|
#define CALAMARES_RETRANSLATE(body) \
|
|
|
|
CalamaresUtils::Retranslator::attachRetranslator( this, [=] { body } );
|
|
|
|
#define CALAMARES_RETRANSLATE_WIDGET(widget,body) \
|
|
|
|
CalamaresUtils::Retranslator::attachRetranslator( widget, [=] { body } );
|
2014-11-11 15:11:06 +01:00
|
|
|
|
2014-11-11 12:42:37 +01:00
|
|
|
#endif // CALAMARESUTILS_RETRANSLATOR_H
|