merge the formfield patch from ooo-build
[ooovba.git] / basctl / source / inc / sbxitem.hxx
blob0fc3327f0a04b906c48300bb761ccb75c39c4685
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: sbxitem.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _SBXITEM_HXX
31 #define _SBXITEM_HXX
33 #include "scriptdocument.hxx"
34 #include <svtools/poolitem.hxx>
36 const USHORT BASICIDE_TYPE_UNKNOWN = 0;
37 const USHORT BASICIDE_TYPE_SHELL = 1;
38 const USHORT BASICIDE_TYPE_LIBRARY = 2;
39 const USHORT BASICIDE_TYPE_MODULE = 3;
40 const USHORT BASICIDE_TYPE_DIALOG = 4;
41 const USHORT BASICIDE_TYPE_METHOD = 5;
44 class SbxItem : public SfxPoolItem
46 ScriptDocument m_aDocument;
47 String m_aLibName;
48 String m_aName;
49 String m_aMethodName;
50 USHORT m_nType;
52 public:
53 TYPEINFO();
54 SbxItem( USHORT nWhich, const ScriptDocument& rDocument, const String& aLibName, const String& aName, USHORT nType );
55 SbxItem( USHORT nWhich, const ScriptDocument& rDocument, const String& aLibName, const String& aName, const String& aMethodName, USHORT nType );
56 SbxItem( const SbxItem& );
58 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
59 virtual int operator==( const SfxPoolItem& ) const;
61 const ScriptDocument&
62 GetDocument() const { return m_aDocument; }
63 void SetDocument( const ScriptDocument& rDocument ) { m_aDocument = rDocument; }
65 const String& GetLibName() const { return m_aLibName; }
66 void SetLibName( const String& aLibName ) { m_aLibName = aLibName; }
68 const String& GetName() const { return m_aName; }
69 void SetName( const String& aName ) { m_aName = aName; }
71 const String& GetMethodName() const { return m_aMethodName; }
72 void SetMethodName( const String& aMethodName ) { m_aMethodName = aMethodName; }
74 USHORT GetType() const { return m_nType; }
75 void SetType( USHORT nType ) { m_nType = nType; }
79 #endif