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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/* -*- 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/.
*
* 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 .
*/
#ifndef INCLUDED_FORMS_SOURCE_COMPONENT_GRID_HXX
#define INCLUDED_FORMS_SOURCE_COMPONENT_GRID_HXX
#include "errorbroadcaster.hxx"
#include <FormComponent.hxx>
#include <formcontrolfont.hxx>
#include <InterfaceContainer.hxx>
#include <com/sun/star/form/XGridColumnFactory.hpp>
#include <com/sun/star/sdb/XRowSetSupplier.hpp>
#include <com/sun/star/sdb/XRowSetChangeBroadcaster.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp>
#include <cppuhelper/implbase7.hxx>
namespace frm
{
class OGridColumn;
// OGridControlModel
typedef ::cppu::ImplHelper7 < css::awt::XControlModel
, css::form::XGridColumnFactory
, css::form::XReset
, css::view::XSelectionSupplier
, css::sdb::XSQLErrorListener
, css::sdb::XRowSetSupplier
, css::sdb::XRowSetChangeBroadcaster
> OGridControlModel_BASE;
class OGridControlModel final :public OControlModel
,public OInterfaceContainer
,public OErrorBroadcaster
,public FontControlModel
,public OGridControlModel_BASE
{
::comphelper::OInterfaceContainerHelper2 m_aSelectListeners,
m_aResetListeners,
m_aRowSetChangeListeners;
// [properties]
css::uno::Any m_aRowHeight; // Row height
css::uno::Any m_aTabStop;
css::uno::Any m_aBackgroundColor;
css::uno::Any m_aCursorColor; // transient
css::uno::Any m_aBorderColor;
OUString m_aDefaultControl;
OUString m_sHelpText;
// [properties]
css::uno::Reference< css::beans::XPropertySet > m_xSelection;
// [properties]
OUString m_sHelpURL; // URL
sal_Int16 m_nBorder;
sal_Int16 m_nWritingMode;
sal_Int16 m_nContextWritingMode;
bool m_bEnableVisible : 1;
bool m_bEnable : 1;
bool m_bNavigation : 1;
bool m_bRecordMarker : 1;
bool m_bPrintable : 1;
bool m_bAlwaysShowCursor : 1; // transient
bool m_bDisplaySynchron : 1; // transient
// [properties]
void _reset();
public:
DECLARE_DEFAULT_LEAF_XTOR( OGridControlModel );
// UNO Binding
DECLARE_UNO3_AGG_DEFAULTS(OGridControlModel, OControlModel)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
// XChild
virtual void SAL_CALL setParent(const css::uno::Reference<css::uno::XInterface>& Parent) override;
// XServiceInfo
OUString SAL_CALL getImplementationName() override
{ return "com.sun.star.form.OGridControlModel"; }
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
// XTypeProvider
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
// XEventListener
virtual void SAL_CALL disposing(const css::lang::EventObject& _rSource) override;
// XReset
virtual void SAL_CALL reset() override;
virtual void SAL_CALL addResetListener(const css::uno::Reference< css::form::XResetListener>& _rxListener) override;
virtual void SAL_CALL removeResetListener(const css::uno::Reference< css::form::XResetListener>& _rxListener) override;
// XSelectionSupplier
virtual sal_Bool SAL_CALL select(const css::uno::Any& aElement) override;
virtual css::uno::Any SAL_CALL getSelection() override;
virtual void SAL_CALL addSelectionChangeListener(const css::uno::Reference< css::view::XSelectionChangeListener >& xListener) override;
virtual void SAL_CALL removeSelectionChangeListener(const css::uno::Reference< css::view::XSelectionChangeListener >& xListener) override;
// XGridColumnFactory
virtual css::uno::Reference< css::beans::XPropertySet> SAL_CALL createColumn(const OUString& ColumnType) override;
virtual css::uno::Sequence<OUString> SAL_CALL getColumnTypes() override;
// XPersistObject
virtual OUString SAL_CALL getServiceName() override;
virtual void SAL_CALL write(const css::uno::Reference< css::io::XObjectOutputStream>& _rxOutStream) override;
virtual void SAL_CALL read(const css::uno::Reference< css::io::XObjectInputStream>& _rxInStream) override;
// XPropertySet
virtual void SAL_CALL getFastPropertyValue(css::uno::Any& rValue, sal_Int32 nHandle ) const override;
virtual sal_Bool SAL_CALL convertFastPropertyValue(css::uno::Any& rConvertedValue, css::uno::Any& rOldValue,
sal_Int32 nHandle, const css::uno::Any& rValue ) override;
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any& rValue) override;
// XPropertyState
virtual css::uno::Any getPropertyDefaultByHandle( sal_Int32 nHandle ) const override;
// XSQLErrorListener
virtual void SAL_CALL errorOccured( const css::sdb::SQLErrorEvent& _rEvent ) override;
// XRowSetSupplier
virtual css::uno::Reference< css::sdbc::XRowSet > SAL_CALL getRowSet( ) override;
virtual void SAL_CALL setRowSet( const css::uno::Reference< css::sdbc::XRowSet >& xDataSource ) override;
// XRowSetChangeBroadcaster
virtual void SAL_CALL addRowSetChangeListener( const css::uno::Reference< css::sdb::XRowSetChangeListener >& i_Listener ) override;
virtual void SAL_CALL removeRowSetChangeListener( const css::uno::Reference< css::sdb::XRowSetChangeListener >& i_Listener ) override;
// OControlModel's property handling
virtual void describeFixedProperties(
css::uno::Sequence< css::beans::Property >& /* [out] */ _rProps
) const override;
// prevent method hiding
using OControlModel::disposing;
using OControlModel::getFastPropertyValue;
private:
virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) override;
virtual void approveNewElement(
const css::uno::Reference< css::beans::XPropertySet >& _rxObject,
ElementDescription* _pElement
) override;
css::uno::Reference< css::beans::XPropertySet> createColumnById(sal_Int32 nTypeId) const;
virtual ElementDescription* createElementMetaData( ) override;
virtual void implRemoved(const css::uno::Reference<css::uno::XInterface>& _rxObject) override;
virtual void implInserted( const ElementDescription* _pElement ) override;
virtual void impl_replacedElement(
const css::container::ContainerEvent& _rEvent,
::osl::ClearableMutexGuard& _rInstanceLock
) override;
void gotColumn(const css::uno::Reference< css::uno::XInterface >& _rxColumn);
void lostColumn(const css::uno::Reference< css::uno::XInterface >& _rxColumn);
void cloneColumns( const OGridControlModel* _pOriginalContainer );
};
} // namespace frm
#endif // INCLUDED_FORMS_SOURCE_COMPONENT_GRID_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|