2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-17 12:30:48 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2007-04-12 12:23:07 +00:00
|
|
|
|
|
|
|
#ifndef _SBSTDOBJ1_HXX
|
|
|
|
#define _SBSTDOBJ1_HXX
|
|
|
|
|
|
|
|
#include <basic/sbxobj.hxx>
|
|
|
|
#include <vcl/graph.hxx>
|
|
|
|
#include <basic/sbxfac.hxx>
|
2013-11-09 13:29:54 -06:00
|
|
|
#include <basic/basicdllapi.h>
|
2011-07-28 18:17:31 +02:00
|
|
|
|
2007-04-12 12:23:07 +00:00
|
|
|
//--------------------
|
|
|
|
// class SbStdFactory
|
|
|
|
//--------------------
|
2011-07-28 18:17:31 +02:00
|
|
|
class BASIC_DLLPUBLIC SbStdFactory : public SbxFactory
|
2007-04-12 12:23:07 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SbStdFactory();
|
|
|
|
|
2012-11-06 23:34:23 -06:00
|
|
|
virtual SbxObject* CreateObject( const OUString& rClassName );
|
2007-04-12 12:23:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------
|
|
|
|
// class SbStdPicture
|
|
|
|
//--------------------
|
2011-07-28 18:17:31 +02:00
|
|
|
class BASIC_DLLPUBLIC SbStdPicture : public SbxObject
|
2007-04-12 12:23:07 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
Graphic aGraphic;
|
|
|
|
|
|
|
|
~SbStdPicture();
|
|
|
|
virtual void SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
|
|
|
|
const SfxHint& rHint, const TypeId& rHintType );
|
|
|
|
|
2011-01-10 14:40:57 +01:00
|
|
|
void PropType( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropWidth( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropHeight( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
2007-04-12 12:23:07 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
SbStdPicture();
|
2012-11-06 23:34:23 -06:00
|
|
|
virtual SbxVariable* Find( const OUString&, SbxClassType );
|
2007-04-12 12:23:07 +00:00
|
|
|
|
|
|
|
Graphic GetGraphic() const { return aGraphic; }
|
|
|
|
void SetGraphic( const Graphic& rGrf ) { aGraphic = rGrf; }
|
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------
|
|
|
|
// class SbStdFont
|
|
|
|
//-----------------
|
2011-07-28 18:17:31 +02:00
|
|
|
class BASIC_DLLPUBLIC SbStdFont : public SbxObject
|
2007-04-12 12:23:07 +00:00
|
|
|
{
|
|
|
|
protected:
|
2011-01-10 14:40:57 +01:00
|
|
|
sal_Bool bBold;
|
|
|
|
sal_Bool bItalic;
|
|
|
|
sal_Bool bStrikeThrough;
|
|
|
|
sal_Bool bUnderline;
|
|
|
|
sal_uInt16 nSize;
|
2012-11-06 23:34:23 -06:00
|
|
|
OUString aName;
|
2007-04-12 12:23:07 +00:00
|
|
|
|
|
|
|
~SbStdFont();
|
|
|
|
virtual void SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
|
|
|
|
const SfxHint& rHint, const TypeId& rHintType );
|
|
|
|
|
2011-01-10 14:40:57 +01:00
|
|
|
void PropBold( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropItalic( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropStrikeThrough( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropUnderline( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropSize( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
|
|
|
void PropName( SbxVariable* pVar, SbxArray* pPar, sal_Bool bWrite );
|
2007-04-12 12:23:07 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
SbStdFont();
|
2012-11-06 23:34:23 -06:00
|
|
|
virtual SbxVariable* Find( const OUString&, SbxClassType );
|
|
|
|
|
|
|
|
void SetBold( sal_Bool bB ) { bBold = bB; }
|
|
|
|
sal_Bool IsBold() const { return bBold; }
|
|
|
|
void SetItalic( sal_Bool bI ) { bItalic = bI; }
|
|
|
|
sal_Bool IsItalic() const { return bItalic; }
|
|
|
|
void SetStrikeThrough( sal_Bool bS ) { bStrikeThrough = bS; }
|
|
|
|
sal_Bool IsStrikeThrough() const { return bStrikeThrough; }
|
|
|
|
void SetUnderline( sal_Bool bU ) { bUnderline = bU; }
|
|
|
|
sal_Bool IsUnderline() const { return bUnderline; }
|
|
|
|
void SetSize( sal_uInt16 nS ) { nSize = nS; }
|
|
|
|
sal_uInt16 GetSize() const { return nSize; }
|
|
|
|
void SetFontName( const OUString& rName ) { aName = rName; }
|
|
|
|
OUString GetFontName() const { return aName; }
|
2007-04-12 12:23:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------
|
|
|
|
// class SbStdClipboard
|
|
|
|
//----------------------
|
2011-07-28 18:17:31 +02:00
|
|
|
class BASIC_DLLPUBLIC SbStdClipboard : public SbxObject
|
2007-04-12 12:23:07 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
|
|
|
~SbStdClipboard();
|
|
|
|
virtual void SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
|
|
|
|
const SfxHint& rHint, const TypeId& rHintType );
|
|
|
|
|
2011-01-10 14:40:57 +01:00
|
|
|
void MethClear( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
|
|
|
|
void MethGetData( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
|
|
|
|
void MethGetFormat( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
|
|
|
|
void MethGetText( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
|
|
|
|
void MethSetData( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
|
|
|
|
void MethSetText( SbxVariable* pVar, SbxArray* pPar_, sal_Bool bWrite );
|
2007-04-12 12:23:07 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
SbStdClipboard();
|
2012-11-06 23:34:23 -06:00
|
|
|
virtual SbxVariable* Find( const OUString&, SbxClassType );
|
2007-04-12 12:23:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 13:11:31 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|