sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Started by DS, October 1996
|
sl@0
|
15 |
// Clipboard
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__BACLIPB_H__)
|
sl@0
|
20 |
#define __BACLIPB_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#if !defined(__e32std_h__)
|
sl@0
|
23 |
#include <e32std.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#if !defined(__e32base_h__)
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
#if !defined(__s32file_h__)
|
sl@0
|
31 |
#include <s32file.h>
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
class CClipboard : public CBase
|
sl@0
|
35 |
/** Clipboard. A repository of copied data which is available for pasting. The
|
sl@0
|
36 |
clipboard storage drive is defined in the HAL layer, in HAL::EClipboardDrive.
|
sl@0
|
37 |
@publishedAll
|
sl@0
|
38 |
@released
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
IMPORT_C static CClipboard* NewForReadingLC(RFs& aFs);
|
sl@0
|
43 |
IMPORT_C static CClipboard* NewForReadingL(RFs& aFs);
|
sl@0
|
44 |
IMPORT_C static CClipboard* NewForWritingLC(RFs& aFs);
|
sl@0
|
45 |
IMPORT_C static TInt Clear(RFs& aFs);
|
sl@0
|
46 |
IMPORT_C ~CClipboard();
|
sl@0
|
47 |
//
|
sl@0
|
48 |
// Necessary only when writing
|
sl@0
|
49 |
IMPORT_C void CommitL();
|
sl@0
|
50 |
//
|
sl@0
|
51 |
inline CStreamStore& Store() const;
|
sl@0
|
52 |
inline CStreamDictionary& StreamDictionary() const;
|
sl@0
|
53 |
|
sl@0
|
54 |
// Provide functionality to read and write floating point numbers
|
sl@0
|
55 |
// in a native format.
|
sl@0
|
56 |
// (see note below)
|
sl@0
|
57 |
|
sl@0
|
58 |
IMPORT_C void CopyToL ( TReal aReal ) __SOFTFP;
|
sl@0
|
59 |
IMPORT_C TBool PasteFromL ( TReal& aReal );
|
sl@0
|
60 |
// Get a number from the clipboard, return false if it is not present
|
sl@0
|
61 |
// in which case the parameter is unmodified.
|
sl@0
|
62 |
|
sl@0
|
63 |
// Gets the drive where the clipboard file is stored
|
sl@0
|
64 |
IMPORT_C static TDriveName ClipboardFileDrive();
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
private:
|
sl@0
|
68 |
inline CClipboard(RFs& aFs);
|
sl@0
|
69 |
static CClipboard* NewLC(RFs& aFs);
|
sl@0
|
70 |
void ConstructReadL();
|
sl@0
|
71 |
private:
|
sl@0
|
72 |
CFileStore* iStore;
|
sl@0
|
73 |
CStreamDictionary* iStreamDictionary;
|
sl@0
|
74 |
RFs& iFs;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
inline CStreamStore& CClipboard::Store() const
|
sl@0
|
79 |
/** Returns a reference to the clipboard's file store.
|
sl@0
|
80 |
|
sl@0
|
81 |
@return A reference to the clipboard's store. */
|
sl@0
|
82 |
{ return *iStore; }
|
sl@0
|
83 |
|
sl@0
|
84 |
|
sl@0
|
85 |
inline CStreamDictionary& CClipboard::StreamDictionary() const
|
sl@0
|
86 |
/** Returns a reference to the clipboard's stream dictionary.
|
sl@0
|
87 |
|
sl@0
|
88 |
@return A reference to the clipboard's stream dictionary. */
|
sl@0
|
89 |
{ return *iStreamDictionary; }
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
// NB the floating point copy and paste member functions are currently the only
|
sl@0
|
93 |
// ones of this type defined in the class. Most clipboard data consists of
|
sl@0
|
94 |
// more complex objects known only at a higher level than BAFL. This raises the
|
sl@0
|
95 |
// question of whether the clipboard should provide equivalent functionality
|
sl@0
|
96 |
// for other basic data types or whether there should be a utility class
|
sl@0
|
97 |
// elsewhere to do all such operations in a standard format and handle the
|
sl@0
|
98 |
// multiple representations too. - PNJ, January 1997.
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
|
sl@0
|
105 |
#endif
|