diff -r 238255e8b033 -r 84d9eb65b26f messagingapp/msgui/msguiutils/inc/mmsconformancecheck.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingapp/msgui/msguiutils/inc/mmsconformancecheck.h Mon May 03 12:29:07 2010 +0300 @@ -0,0 +1,104 @@ +/* + * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). + * All rights reserved. + * This component and the accompanying materials are made available + * under the terms of "Eclipse Public License v1.0" + * which accompanies this distribution, and is available + * at the URL "http://www.eclipse.org/legal/epl-v10.html". + * + * Initial Contributors: + * Nokia Corporation - initial contribution. + * + * Contributors: + * + * Description: mms creation mode checks + * + */ + +#ifndef MMS_CONFORMANCE_CHECK_OPERATION_H +#define MMS_CONFORMANCE_CHECK_OPERATION_H + +#include +#include + +#ifdef BUILD_MSGUI_UTILS_DLL +#define MSGUI_UTILS_DLL_EXPORT Q_DECL_EXPORT +#else +#define MSGUI_UTILS_DLL_EXPORT Q_DECL_IMPORT +#endif + +class CMmsConformance; +class CMsgMediaResolver; +class CDRMHelper; + + +enum MmsConformanceCheckErrors +{ + EInsertSuccess = 0, EInsertQueryAbort, EInsertNotSupported +}; + +/** + * This class provides interfaces which validate the media for + * insertion into editor and also validates if the mms message + * can be forwarded. + * + */ + +class MSGUI_UTILS_DLL_EXPORT MmsConformanceCheck +{ +public: + + /** + * Constructor + */ + MmsConformanceCheck(); + + /** + * Destructor + */ + ~MmsConformanceCheck(); + + /** + * Checks if the file passes conformance checks + * @param file, filepath + * @param showNote, note is shown if enabled + * @return EInsertSuccess for successfull cases + */ + int checkModeForInsert(const QString& file,bool showNote = true); + + /** + * Validates if message can be forwarded + * The validation checks include slide count check,MMS size check and + * media conformance checks and this fucntion should be called only for mms + * @param messageId message Id of the message to be validate + * @return true if message can be forwarded + * false if message cant be forwarded + */ + bool validateMsgForForward(int messageId); + +private: + + /* + * Launch query dialog + */ + bool launchEditorQuery(); + + /* + * Launch notification dialog + */ + void showPopup(const QString& text); + +private: + + /* + * Mms creation mode + */ + TInt iCreationMode; + + /** + * Max MMS composition size + */ + int iMaxMmsSize; + +}; +#endif //MMS_CONFORMANCE_CHECK_OPERATION_H