mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
74 lines
2.6 KiB
C++
74 lines
2.6 KiB
C++
/*
|
|
Copyright (c) 2013, 2014 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 HEADERSRULERWIDGETHANDLER_H
|
|
#define HEADERSRULERWIDGETHANDLER_H
|
|
|
|
#include "interfaces/rulewidgethandler.h"
|
|
|
|
namespace MailCommon {
|
|
class HeadersRuleWidgetHandler : public MailCommon::RuleWidgetHandler
|
|
{
|
|
public:
|
|
HeadersRuleWidgetHandler() : MailCommon::RuleWidgetHandler()
|
|
{
|
|
}
|
|
|
|
~HeadersRuleWidgetHandler()
|
|
{
|
|
}
|
|
|
|
QWidget *createFunctionWidget(int number,
|
|
QStackedWidget *functionStack,
|
|
const QObject *receiver , bool isBalooSearch) const;
|
|
|
|
QWidget *createValueWidget( int number,
|
|
QStackedWidget *valueStack,
|
|
const QObject *receiver ) const;
|
|
|
|
SearchRule::Function function( const QByteArray &field,
|
|
const QStackedWidget *functionStack ) const;
|
|
|
|
QString value( const QByteArray &field,
|
|
const QStackedWidget *functionStack,
|
|
const QStackedWidget *valueStack ) const;
|
|
|
|
QString prettyValue( const QByteArray &field,
|
|
const QStackedWidget *functionStack,
|
|
const QStackedWidget *valueStack ) const;
|
|
|
|
bool handlesField( const QByteArray &field ) const;
|
|
|
|
void reset( QStackedWidget *functionStack,
|
|
QStackedWidget *valueStack ) const;
|
|
|
|
bool setRule(QStackedWidget *functionStack,
|
|
QStackedWidget *valueStack,
|
|
const SearchRule::Ptr rule , bool isBalooSearch) const;
|
|
|
|
bool update( const QByteArray & field,
|
|
QStackedWidget *functionStack,
|
|
QStackedWidget *valueStack ) const;
|
|
|
|
private:
|
|
SearchRule::Function currentFunction( const QStackedWidget *functionStack ) const;
|
|
QString currentValue( const QStackedWidget *valueStack,
|
|
SearchRule::Function func ) const;
|
|
};
|
|
|
|
}
|
|
#endif // HEADERSRULERWIDGETHANDLER_H
|