Lines Matching refs:sal_Int32

38 const sal_Int32 PROPTYPE_INT16          = 2;
39 const sal_Int32 PROPTYPE_INT32 = 3;
40 const sal_Int32 PROPTYPE_FLOAT = 4;
41 const sal_Int32 PROPTYPE_DOUBLE = 5;
42 const sal_Int32 PROPTYPE_DATE = 7;
43 const sal_Int32 PROPTYPE_STRING = 8;
44 const sal_Int32 PROPTYPE_STATUS = 10;
45 const sal_Int32 PROPTYPE_BOOL = 11;
46 const sal_Int32 PROPTYPE_VARIANT = 12;
47 const sal_Int32 PROPTYPE_INT8 = 16;
48 const sal_Int32 PROPTYPE_UINT8 = 17;
49 const sal_Int32 PROPTYPE_UINT16 = 18;
50 const sal_Int32 PROPTYPE_UINT32 = 19;
51 const sal_Int32 PROPTYPE_INT64 = 20;
52 const sal_Int32 PROPTYPE_UINT64 = 21;
53 const sal_Int32 PROPTYPE_STRING8 = 30;
54 const sal_Int32 PROPTYPE_STRING16 = 31;
55 const sal_Int32 PROPTYPE_FILETIME = 64;
56 const sal_Int32 PROPTYPE_BLOB = 65;
57 const sal_Int32 PROPTYPE_CLIPFMT = 71;
60 const sal_Int32 PROPID_DICTIONARY = 0;
61 const sal_Int32 PROPID_CODEPAGE = 1;
62 const sal_Int32 PROPID_FIRSTCUSTOM = 2;
65 const sal_Int32 PROPID_TITLE = 2;
66 const sal_Int32 PROPID_SUBJECT = 3;
67 const sal_Int32 PROPID_AUTHOR = 4;
68 const sal_Int32 PROPID_KEYWORDS = 5;
69 const sal_Int32 PROPID_COMMENTS = 6;
70 const sal_Int32 PROPID_TEMPLATE = 7;
71 const sal_Int32 PROPID_LASTAUTHOR = 8;
72 const sal_Int32 PROPID_REVNUMBER = 9;
73 const sal_Int32 PROPID_EDITTIME = 10;
74 const sal_Int32 PROPID_LASTPRINTED = 11;
75 const sal_Int32 PROPID_CREATED = 12;
76 const sal_Int32 PROPID_LASTSAVED = 13;
77 const sal_Int32 PROPID_THUMBNAIL = 17;
85 const sal_Int32 CLIPFMT_WIN = -1;
88 const sal_Int32 CLIPDATAFMT_DIB = 8;
213 inline explicit SfxOlePropertyBase( sal_Int32 nPropId, sal_Int32 nPropType ) : in SfxOlePropertyBase()
216 inline sal_Int32 GetPropId() const { return mnPropId; } in GetPropId()
217 inline sal_Int32 GetPropType() const { return mnPropType; } in GetPropType()
220 inline void SetPropId( sal_Int32 nPropId ) { mnPropId = nPropId; } in SetPropId()
221 inline void SetPropType( sal_Int32 nPropType ) { mnPropType = nPropType; } in SetPropType()
224 sal_Int32 mnPropId;
225 sal_Int32 mnPropType;
254 inline void SetNameCount( sal_Int32 nNameCount ) { SetPropType( nNameCount ); } in SetNameCount()
257 const String& GetPropertyName( sal_Int32 nPropId ) const;
259 void SetPropertyName( sal_Int32 nPropId, const String& rPropName );
266 typedef ::std::map< sal_Int32, String > SfxOlePropNameMap;
277 typedef ::std::map< sal_Int32, SfxOlePropertyRef > SfxOlePropMap;
283 SfxOlePropertyRef GetProperty( sal_Int32 nPropId ) const;
286 bool GetInt32Value( sal_Int32& rnValue, sal_Int32 nPropId ) const;
289 bool GetDoubleValue( double& rfValue, sal_Int32 nPropId ) const;
292 bool GetBoolValue( bool& rbValue, sal_Int32 nPropId ) const;
295 bool GetStringValue( String& rValue, sal_Int32 nPropId ) const;
298 …bool GetFileTimeValue( ::com::sun::star::util::DateTime& rValue, sal_Int32 nPropId …
303 void SetInt32Value( sal_Int32 nPropId, sal_Int32 nValue );
305 void SetDoubleValue( sal_Int32 nPropId, double fValue );
307 void SetBoolValue( sal_Int32 nPropId, bool bValue );
310 …bool SetStringValue( sal_Int32 nPropId, const String& rValue, bool bSkipEmpty = tru…
312 …void SetFileTimeValue( sal_Int32 nPropId, const ::com::sun::star::util::DateTime& r…
314 void SetThumbnailValue( sal_Int32 nPropId,
317 void SetBlobValue( sal_Int32 nPropId,
321 com::sun::star::uno::Any GetAnyValue( sal_Int32 nPropId ) const;
324 bool SetAnyValue( sal_Int32 nPropId, const com::sun::star::uno::Any& rValue );
327 const String& GetPropertyName( sal_Int32 nPropId ) const;
329 void SetPropertyName( sal_Int32 nPropId, const String& rPropName );
332 void GetPropertyIds( ::std::vector< sal_Int32 >& rPropIds ) const;
334 sal_Int32 GetFreePropertyId() const;
341 void LoadProperty( SvStream& rStrm, sal_Int32 nPropId );