1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/inc/TSTCLIPB.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,64 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef __TSTCLIPB_H__
1.23 +#define __TSTCLIPB_H__
1.24 +
1.25 +#include <e32std.h>
1.26 +#include <e32base.h>
1.27 +
1.28 +class RFs;
1.29 +class CFileStore;
1.30 +class CStreamDictionary;
1.31 +
1.32 +
1.33 +class CClipboard : public CBase
1.34 +/**
1.35 +Provdes a clipboard class, capable of storing multiple data *types*
1.36 +All data *types* stored must be registered prior to closing this clipboard.
1.37 +@internalComponent
1.38 +*/
1.39 + {
1.40 +public:
1.41 + IMPORT_C static CClipboard* NewForReadingLC(RFs& aFsSession);
1.42 + IMPORT_C static CClipboard* NewForWritingLC(RFs& aFsSession);
1.43 + IMPORT_C ~CClipboard();
1.44 + //
1.45 + // Necessary only when writing
1.46 + IMPORT_C void CommitL();
1.47 + //
1.48 + inline CFileStore& Store() const;
1.49 + inline CStreamDictionary& StreamDictionary() const;
1.50 +private:
1.51 + CClipboard(RFs& aFsSession);
1.52 + void ConstructForWritingL(const TDesC& aFileName);
1.53 + void ConstructForReadingL(const TDesC& aFileName);
1.54 + void CreateDirectoryL(const TDesC& aFileName);
1.55 +private:
1.56 + CFileStore* iStore;
1.57 + CStreamDictionary* iStreamDictionary;
1.58 + RFs& iFsSession;
1.59 + };
1.60 +
1.61 +inline CFileStore& CClipboard::Store() const
1.62 + { return *iStore; }
1.63 +
1.64 +inline CStreamDictionary& CClipboard::StreamDictionary() const
1.65 + { return *iStreamDictionary; }
1.66 +
1.67 +#endif