1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*/
#ifndef INCLUDED_SC_SOURCE_FILTER_EXCEL_XLTOOLBAR_HXX
#define INCLUDED_SC_SOURCE_FILTER_EXCEL_XLTOOLBAR_HXX
#include <filter/msfilter/mstoolbar.hxx>
class ScCTBWrapper;
// hmm I don't normally use these packed structures
// but.. hey always good to do something different
class TBCCmd : public TBBase
{
public:
TBCCmd() : cmdID(0), A(false), B(false), cmdType(0), C(false), reserved3(0)
{}
sal_uInt16 cmdID;
bool A:1;
bool B:1;
sal_uInt16 cmdType:5;
bool C:1;
sal_uInt16 reserved3:8;
bool Read( SvStream& rS ) override;
#ifdef DEBUG_SC_EXCEL
virtual void Print(FILE* fp) override;
#endif
};
class ScTBC : public TBBase
{
TBCHeader tbch;
std::shared_ptr<TBCCmd> tbcCmd; // optional
std::shared_ptr<TBCData> tbcd;
public:
ScTBC();
virtual ~ScTBC(){}
#ifdef DEBUG_SC_EXCEL
virtual void Print( FILE* ) override;
#endif
bool Read(SvStream &rS) override;
bool ImportToolBarControl( ScCTBWrapper&, const css::uno::Reference< css::container::XIndexContainer >& toolbarcontainer, CustomToolBarImportHelper& helper, bool bIsMenuBar );
};
class ScCTB : public TBBase
{
sal_uInt16 nViews;
TB tb;
std::vector<TBVisualData> rVisualData;
sal_uInt32 ectbid;
std::vector< ScTBC > rTBC;
public:
explicit ScCTB(sal_uInt16);
virtual ~ScCTB(){}
#ifdef DEBUG_SC_EXCEL
virtual void Print( FILE* ) override;
#endif
bool Read(SvStream &rS) override;
bool IsMenuToolbar();
bool ImportCustomToolBar( ScCTBWrapper&, CustomToolBarImportHelper& );
bool ImportMenuTB( ScCTBWrapper&, const css::uno::Reference< css::container::XIndexContainer >&, CustomToolBarImportHelper& );
OUString GetName() { return tb.getName().getString(); }
};
class CTBS : public TBBase
{
public:
sal_uInt8 bSignature;
sal_uInt8 bVersion;
sal_uInt16 reserved1;
sal_uInt16 reserved2;
sal_uInt16 reserved3;
sal_uInt16 ctb;
sal_uInt16 ctbViews;
sal_uInt16 ictbView;
CTBS(const CTBS&);
CTBS& operator = ( const CTBS&);
CTBS();
virtual ~CTBS(){}
#ifdef DEBUG_SC_EXCEL
virtual void Print( FILE* ) override;
#endif
bool Read(SvStream &rS) override;
};
class ScCTBWrapper : public TBBase
{
CTBS ctbSet;
std::vector< ScCTB > rCTB;
public:
ScCTBWrapper();
virtual ~ScCTBWrapper();
bool Read(SvStream &rS) override;
#ifdef DEBUG_SC_EXCEL
virtual void Print( FILE* ) override;
#endif
void ImportCustomToolBar( SfxObjectShell& rDocSh );
ScCTB* GetCustomizationData( const OUString& name );
};
#endif // INCLUDED_SC_SOURCE_FILTER_EXCEL_XLTOOLBAR_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|