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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
|
/* -*- 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_SVX_SOURCE_INC_GRIDCELL_HXX
#define INCLUDED_SVX_SOURCE_INC_GRIDCELL_HXX
#include <memory>
#include <svx/gridctrl.hxx>
#include "sqlparserclient.hxx"
#include <com/sun/star/sdb/XColumn.hpp>
#include <com/sun/star/form/XBoundControl.hpp>
#include <com/sun/star/awt/XTextComponent.hpp>
#include <com/sun/star/awt/XListBox.hpp>
#include <com/sun/star/awt/XComboBox.hpp>
#include <com/sun/star/awt/TextAlign.hpp>
#include <com/sun/star/awt/XControlModel.hpp>
#include <com/sun/star/awt/XControl.hpp>
#include <com/sun/star/awt/XCheckBox.hpp>
#include <com/sun/star/awt/XButton.hpp>
#include <com/sun/star/beans/XFastPropertySet.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <com/sun/star/form/XChangeBroadcaster.hpp>
#include <com/sun/star/awt/XWindow.hpp>
#include <comphelper/propmultiplex.hxx>
#include <comphelper/interfacecontainer2.hxx>
#include <cppuhelper/component.hxx>
#include <cppuhelper/implbase2.hxx>
#include <tools/diagnose_ex.h>
class DbCellControl;
class Edit;
class FmXGridCell;
namespace dbtools {
class FormattedColumnValue;
}
class FmMutexHelper
{
protected:
::osl::Mutex m_aMutex;
};
// DbGridColumn, column description
class DbGridColumn
{
friend class DbGridControl;
css::uno::Reference< css::beans::XPropertySet > m_xModel;
css::uno::Reference< css::beans::XPropertySet > m_xField; // connection to the database field
::svt::CellControllerRef m_xController; // structure for managing the controls for a column
// this is positioned by the DbBrowseBox on the respective
// cells of a column
rtl::Reference<FmXGridCell> m_pCell;
protected:
DbGridControl& m_rParent;
private:
sal_Int32 m_nLastVisibleWidth; // only valid if m_bHidden == sal_True
sal_Int32 m_nFormatKey;
sal_Int16 m_nFieldType;
sal_Int16 m_nTypeId;
sal_uInt16 m_nId;
sal_Int16 m_nFieldPos;
sal_Int16 m_nAlign; // specified with TXT_ALIGN_LEFT ....
bool m_bReadOnly : 1;
bool m_bAutoValue : 1;
bool m_bInSave : 1;
bool m_bNumeric : 1;
bool m_bObject : 1; // does the column reference an object datatype?
bool m_bHidden : 1;
bool m_bLocked : 1;
static ::svt::CellControllerRef s_xEmptyController;
// used by locked columns
public:
DbGridColumn(sal_uInt16 _nId, DbGridControl& rParent)
:m_pCell(nullptr)
,m_rParent(rParent)
,m_nLastVisibleWidth(-1)
,m_nFormatKey(0)
,m_nFieldType(0)
,m_nTypeId(0)
,m_nId(_nId)
,m_nFieldPos(-1)
,m_nAlign(css::awt::TextAlign::LEFT)
,m_bReadOnly(false)
,m_bAutoValue(false)
,m_bInSave(false)
,m_bNumeric(false)
,m_bObject(false)
,m_bHidden(false)
,m_bLocked(false)
{
}
~DbGridColumn();
const css::uno::Reference< css::beans::XPropertySet >& getModel() const { return m_xModel; }
void setModel(const css::uno::Reference< css::beans::XPropertySet >& _xModel);
sal_uInt16 GetId() const {return m_nId;}
bool IsReadOnly() const {return m_bReadOnly;}
bool IsAutoValue() const {return m_bAutoValue;}
sal_Int16 GetAlignment() const {return m_nAlign;}
sal_Int16 GetFieldPos() const {return m_nFieldPos; }
bool IsNumeric() const {return m_bNumeric;}
bool IsHidden() const {return m_bHidden;}
sal_Int32 GetKey() const {return m_nFormatKey;}
const ::svt::CellControllerRef& GetController() const {return m_bLocked ? s_xEmptyController : m_xController;}
const css::uno::Reference< css::beans::XPropertySet >& GetField() const {return m_xField;}
DbGridControl& GetParent() const {return m_rParent;}
FmXGridCell* GetCell() const {return m_pCell.get();}
css::uno::Reference< css::sdb::XColumn > GetCurrentFieldValue() const;
// Drawing a field at a position. If a view is set, it takes over the drawing,
// e.g., for checkboxes.
void Paint(OutputDevice& rDev,
const tools::Rectangle& rRect,
const DbGridRow* pRow,
const css::uno::Reference< css::util::XNumberFormatter >& xFormatter);
// Initializing in the alive mode.
// If no ColumnController is set, a default initialization is performed.
void CreateControl(sal_Int32 _nFieldPos, const css::uno::Reference< css::beans::XPropertySet >& xField, sal_Int32 nTypeId);
void UpdateControl()
{
css::uno::Reference< css::beans::XPropertySet > xField(m_xField);
CreateControl(m_nFieldPos, xField, m_nTypeId);
}
// Editing a Zelle
void UpdateFromField(const DbGridRow* pRow, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter);
bool Commit();
// releasing all the data required for the AliveMode
void Clear();
OUString GetCellText(const DbGridRow* pRow, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) const;
OUString GetCellText(const css::uno::Reference< css::sdb::XColumn >& xField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) const;
void SetReadOnly(bool bRead){m_bReadOnly = bRead;}
void SetObject(sal_Int16 nPos) {m_bObject = m_bReadOnly = true; m_nFieldPos = nPos;}
void ImplInitWindow( vcl::Window const & rParent, const InitWindowFacet _eInitWhat );
// properties that can bleed through onto the css::frame::Controller
sal_Int16 SetAlignment(sal_Int16 _nAlign);
// if _nAlign is -1, the alignment is calculated from the type of the field we are bound to
// the value really set is returned
sal_Int16 SetAlignmentFromModel(sal_Int16 nStandardAlign);
// set the alignment according to the "Align"-property of m_xModel, use the given standard
// alignment if the property if void, return the really set alignment
// column locking
bool isLocked() const { return m_bLocked; }
void setLock(bool _bLock);
private:
/** attaches or detaches our cell object to the SctriptEventAttacherManager implemented
by our model's parent
*/
void impl_toggleScriptManager_nothrow( bool _bAttach );
};
// DbCellControl, provides the data for a CellController.
// Is usually only required for complex controls such as combo boxes.
class DbCellControl
:public FmMutexHelper // _before_ the listener, so the listener is to be destroyed first!
,public ::comphelper::OPropertyChangeListener
{
private:
rtl::Reference<::comphelper::OPropertyChangeMultiplexer> m_pModelChangeBroadcaster;
rtl::Reference<::comphelper::OPropertyChangeMultiplexer> m_pFieldChangeBroadcaster;
private:
bool m_bTransparent : 1;
bool m_bAlignedController : 1;
bool m_bAccessingValueProperty : 1;
css::uno::Reference< css::sdbc::XRowSet >
m_xCursor;
protected:
DbGridColumn& m_rColumn;
VclPtr<vcl::Window> m_pPainter;
VclPtr<vcl::Window> m_pWindow;
protected:
// attribute access
const css::uno::Reference< css::sdbc::XRowSet >& getCursor() const { return m_xCursor; }
// control transparency
bool isTransparent( ) const { return m_bTransparent; }
void setTransparent( bool _bSet ) { m_bTransparent = _bSet; }
// control alignment
void setAlignedController( bool _bAlign ) { m_bAlignedController = _bAlign; }
/** determined whether or not the value property is locked
@see lockValueProperty
*/
inline bool isValuePropertyLocked() const;
/** locks the listening at the value property.
<p>This means that every subsequent change now done on the value property of the model ("Text", or "Value",
or whatever) is then ignored.<br/>
This base class uses this setting in <method>Commit</method>.</p>
@precond
Value locking can't be nested
@see unlockValueProperty
*/
inline void lockValueProperty();
/** unlocks the listening at the value property
@see lockValueProperty
*/
inline void unlockValueProperty();
protected:
// adds the given property to the list of properties which we listen for
void doPropertyListening( const OUString& _rPropertyName );
// called whenever a property which affects field settings in general is called
// you should overwrite this method for every property you add yourself as listener to
// with doPropertyListening
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel );
// called by _propertyChanged if a property which denotes the column value has changed
void implValuePropertyChanged( );
public:
DbCellControl(DbGridColumn& _rColumn);
virtual ~DbCellControl() override;
vcl::Window& GetWindow() const
{
ENSURE_OR_THROW( m_pWindow, "no window" );
return *m_pWindow;
}
// control alignment
bool isAlignedController() const { return m_bAlignedController; }
void AlignControl(sal_Int16 nAlignment);
void SetTextLineColor();
void SetTextLineColor(const Color& _rColor);
// initializing before a control is displayed
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor );
virtual ::svt::CellControllerRef CreateController() const = 0;
// writing the value into the model
bool Commit();
// Formatting the field data to output text
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) = 0;
virtual void Update(){}
// Refresh the control by the field data
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) = 0;
// painting a cell content in the specified rectangle
virtual void PaintFieldToCell( OutputDevice& rDev, const tools::Rectangle& rRect, const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter);
virtual void PaintCell( OutputDevice& _rDev, const tools::Rectangle& _rRect );
void ImplInitWindow( vcl::Window const & rParent, const InitWindowFacet _eInitWhat );
double GetValue(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) const;
protected:
void invalidatedController();
/** commits the content of the control (e.g. the text of an edit field) into the column model
(e.g. the "Text" property of the model).
<p>To be overwritten in derived classes.</p>
@see updateFromModel
*/
virtual bool commitControl( ) = 0;
/** updates the current content of the control (e.g. the text of an edit field) from the column model
(e.g. the "Text" property of the model).
<p>To be overwritten in derived classes.</p>
@precond
NULL != _rxModel
@precond
NULL != m_pWindow
@see commitControl
*/
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) = 0;
protected:
// OPropertyChangeListener
virtual void _propertyChanged(const css::beans::PropertyChangeEvent& evt) override;
private:
void implDoPropertyListening( const OUString& _rPropertyName, bool _bWarnIfNotExistent );
/// updates the "readonly" setting on m_pWindow, according to the respective property value in the given model
void implAdjustReadOnly( const css::uno::Reference< css::beans::XPropertySet >& _rxModel,bool i_bReadOnly );
/// updates the "enabled" setting on m_pWindow, according to the respective property value in the given model
void implAdjustEnabled( const css::uno::Reference< css::beans::XPropertySet >& _rxModel );
};
inline bool DbCellControl::isValuePropertyLocked() const
{
return m_bAccessingValueProperty;
}
inline void DbCellControl::lockValueProperty()
{
OSL_ENSURE( !isValuePropertyLocked(), "DbCellControl::lockValueProperty: not to be nested!" );
m_bAccessingValueProperty = true;
}
inline void DbCellControl::unlockValueProperty()
{
OSL_ENSURE( isValuePropertyLocked(), "DbCellControl::lockValueProperty: not locked so far!" );
m_bAccessingValueProperty = false;
}
/** a field which is bound to a column which supports the MaxTextLen property
*/
class DbLimitedLengthField : public DbCellControl
{
public:
protected:
DbLimitedLengthField( DbGridColumn& _rColumn );
protected:
// DbCellControl
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
protected:
void implSetMaxTextLen( sal_Int16 _nMaxLen )
{
implSetEffectiveMaxTextLen( _nMaxLen ? _nMaxLen : EDIT_NOLIMIT );
}
virtual void implSetEffectiveMaxTextLen( sal_Int32 _nMaxLen );
};
class DbTextField : public DbLimitedLengthField
{
::svt::IEditImplementation* m_pEdit;
::svt::IEditImplementation* m_pPainterImplementation;
bool m_bIsSimpleEdit;
protected:
virtual ~DbTextField( ) override;
public:
DbTextField(DbGridColumn& _rColumn);
::svt::IEditImplementation* GetEditImplementation() { return m_pEdit; }
bool IsSimpleEdit() const { return m_bIsSimpleEdit; }
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual ::svt::CellControllerRef CreateController() const override;
virtual void PaintFieldToCell( OutputDevice& _rDev, const tools::Rectangle& _rRect,
const css::uno::Reference< css::sdb::XColumn >& _rxField,
const css::uno::Reference< css::util::XNumberFormatter >& _rxFormatter ) override;
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
// DbLimitedLengthField
virtual void implSetEffectiveMaxTextLen( sal_Int32 _nMaxLen ) override;
};
class DbFormattedField final : public DbLimitedLengthField
{
public:
DbFormattedField(DbGridColumn& _rColumn);
virtual ~DbFormattedField() override;
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual ::svt::CellControllerRef CreateController() const override;
private:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
// OPropertyChangeListener
virtual void _propertyChanged(const css::beans::PropertyChangeEvent& evt) override;
css::uno::Reference< css::util::XNumberFormatsSupplier > m_xSupplier;
};
class DbCheckBox : public DbCellControl
{
public:
DbCheckBox(DbGridColumn& _rColumn);
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual ::svt::CellControllerRef CreateController() const override;
virtual void PaintFieldToCell(OutputDevice& rDev, const tools::Rectangle& rRect,
const css::uno::Reference< css::sdb::XColumn >& _rxField,
const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
};
class DbComboBox : public DbCellControl
{
public:
DbComboBox(DbGridColumn& _rColumn);
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual ::svt::CellControllerRef CreateController() const override;
void SetList(const css::uno::Any& rItems);
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
// OPropertyChangeListener
virtual void _propertyChanged(const css::beans::PropertyChangeEvent& evt) override;
};
class DbListBox :public DbCellControl
{
bool m_bBound : 1;
css::uno::Sequence< OUString > m_aValueList;
public:
DbListBox(DbGridColumn& _rColumn);
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual ::svt::CellControllerRef CreateController() const override;
void SetList(const css::uno::Any& rItems);
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
// OPropertyChangeListener
virtual void _propertyChanged(const css::beans::PropertyChangeEvent& evt) override;
};
class DbPatternField : public DbCellControl
{
public:
DbPatternField( DbGridColumn& _rColumn, const css::uno::Reference<css::uno::XComponentContext>& _rContext );
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
virtual ::svt::CellControllerRef CreateController() const override;
protected:
/// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
private:
OUString impl_formatText(const OUString& _rText);
private:
::std::unique_ptr< ::dbtools::FormattedColumnValue > m_pValueFormatter;
::std::unique_ptr< ::dbtools::FormattedColumnValue > m_pPaintFormatter;
css::uno::Reference<css::uno::XComponentContext> m_xContext;
};
class DbSpinField : public DbCellControl
{
private:
sal_Int16 m_nStandardAlign;
public:
protected:
DbSpinField( DbGridColumn& _rColumn, sal_Int16 _nStandardAlign = css::awt::TextAlign::RIGHT );
public:
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& _rxCursor ) override;
virtual ::svt::CellControllerRef CreateController() const override;
protected:
virtual VclPtr<SpinField> createField(
vcl::Window* _pParent,
WinBits _nFieldStyle,
const css::uno::Reference< css::beans::XPropertySet >& _rxModel
) = 0;
};
class DbDateField : public DbSpinField
{
public:
DbDateField(DbGridColumn& _rColumn);
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
// DbSpinField
virtual VclPtr<SpinField> createField(
vcl::Window* _pParent,
WinBits _nFieldStyle,
const css::uno::Reference< css::beans::XPropertySet >& _rxModel
) override;
/// initializes everything which relates to the properties describing the numeric behaviour
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
};
class DbTimeField : public DbSpinField
{
public:
DbTimeField(DbGridColumn& _rColumn);
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
// DbSpinField
virtual VclPtr<SpinField> createField(
vcl::Window* _pParent,
WinBits _nFieldStyle,
const css::uno::Reference< css::beans::XPropertySet >& _rxModel
) override;
/// initializes everything which relates to the properties describing the numeric behaviour
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
};
class DbCurrencyField : public DbSpinField
{
sal_Int16 m_nScale;
public:
DbCurrencyField(DbGridColumn& _rColumn);
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
double GetCurrency(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) const;
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
// DbSpinField
virtual VclPtr<SpinField> createField(
vcl::Window* _pParent,
WinBits _nFieldStyle,
const css::uno::Reference< css::beans::XPropertySet >& _rxModel
) override;
/// initializes everything which relates to the properties describing the numeric behaviour
virtual void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
};
class DbNumericField : public DbSpinField
{
public:
DbNumericField(DbGridColumn& _rColumn);
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
protected:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
// DbSpinField
virtual VclPtr<SpinField> createField(
vcl::Window* _pParent,
WinBits _nFieldStyle,
const css::uno::Reference< css::beans::XPropertySet >& _rxModel
) override;
/// initializes everything which relates to the properties describing the numeric behaviour
void implAdjustGenericFieldSetting( const css::uno::Reference< css::beans::XPropertySet >& _rxModel ) override;
};
class DbFilterField final
:public DbCellControl
,public ::svxform::OSQLParserClient
{
public:
DbFilterField(const css::uno::Reference< css::uno::XComponentContext >& rxContext, DbGridColumn& _rColumn);
virtual ~DbFilterField() override;
virtual void Init( vcl::Window& rParent, const css::uno::Reference< css::sdbc::XRowSet >& xCursor ) override;
virtual ::svt::CellControllerRef CreateController() const override;
virtual void PaintCell(OutputDevice& rDev, const tools::Rectangle& rRect) override;
virtual void Update() override;
virtual OUString GetFormatText(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter, Color** ppColor = nullptr) override;
virtual void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& _rxField, const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
const OUString& GetText() const {return m_aText;}
void SetText(const OUString& rText);
void SetCommitHdl( const Link<DbFilterField&,void>& rLink ) { m_aCommitLink = rLink; }
private:
// DbCellControl
virtual bool commitControl( ) override;
virtual void updateFromModel( css::uno::Reference< css::beans::XPropertySet > _rxModel ) override;
void SetList(const css::uno::Any& rItems, bool bComboBox);
void CreateControl(vcl::Window* pParent, const css::uno::Reference< css::beans::XPropertySet >& xModel);
DECL_LINK( OnClick, VclPtr<CheckBox>, void );
css::uno::Sequence< OUString > m_aValueList;
OUString m_aText;
Link<DbFilterField&,void> m_aCommitLink;
sal_Int16 m_nControlClass;
bool m_bFilterList : 1;
bool m_bFilterListFilled : 1;
};
// Base class providing the access to a grid cell
typedef ::cppu::ImplHelper2 < css::awt::XControl
, css::form::XBoundControl
> FmXGridCell_Base;
typedef ::cppu::ImplHelper1 < css::awt::XWindow
> FmXGridCell_WindowBase;
class FmXGridCell :public ::cppu::OComponentHelper
,public FmXGridCell_Base
,public FmXGridCell_WindowBase
{
protected:
::osl::Mutex m_aMutex;
DbGridColumn* m_pColumn;
DbCellControl* m_pCellControl;
private:
::comphelper::OInterfaceContainerHelper2 m_aWindowListeners;
::comphelper::OInterfaceContainerHelper2 m_aFocusListeners;
::comphelper::OInterfaceContainerHelper2 m_aKeyListeners;
::comphelper::OInterfaceContainerHelper2 m_aMouseListeners;
::comphelper::OInterfaceContainerHelper2 m_aMouseMotionListeners;
protected:
virtual ~FmXGridCell() override;
public:
FmXGridCell( DbGridColumn* pColumn, DbCellControl* pControl );
void init();
DECLARE_UNO3_AGG_DEFAULTS(FmXGridCell, OComponentHelper)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
void SetTextLineColor();
void SetTextLineColor(const Color& _rColor);
// XTypeProvider
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
// css::lang::XComponent
virtual void SAL_CALL dispose() override {OComponentHelper::dispose();}
virtual void SAL_CALL addEventListener(const css::uno::Reference< css::lang::XEventListener >& aListener) override { OComponentHelper::addEventListener(aListener);}
virtual void SAL_CALL removeEventListener(const css::uno::Reference< css::lang::XEventListener >& aListener) override { OComponentHelper::removeEventListener(aListener);}
// css::awt::XControl
virtual void SAL_CALL setContext(const css::uno::Reference< css::uno::XInterface >& /*Context*/) override {}
virtual css::uno::Reference< css::uno::XInterface > SAL_CALL getContext() override;
virtual void SAL_CALL createPeer(const css::uno::Reference< css::awt::XToolkit >& /*Toolkit*/, const css::uno::Reference< css::awt::XWindowPeer >& /*Parent*/) override {}
virtual css::uno::Reference< css::awt::XWindowPeer > SAL_CALL getPeer() override {return css::uno::Reference< css::awt::XWindowPeer > ();}
virtual sal_Bool SAL_CALL setModel(const css::uno::Reference< css::awt::XControlModel >& /*Model*/) override {return false;}
virtual css::uno::Reference< css::awt::XControlModel > SAL_CALL getModel() override;
virtual css::uno::Reference< css::awt::XView > SAL_CALL getView() override {return css::uno::Reference< css::awt::XView > ();}
virtual void SAL_CALL setDesignMode(sal_Bool /*bOn*/) override {}
virtual sal_Bool SAL_CALL isDesignMode() override {return false;}
virtual sal_Bool SAL_CALL isTransparent() override {return false;}
// css::form::XBoundControl
virtual sal_Bool SAL_CALL getLock() override;
virtual void SAL_CALL setLock(sal_Bool _bLock) override;
// XWindow
virtual void SAL_CALL setPosSize( ::sal_Int32 X, ::sal_Int32 Y, ::sal_Int32 Width, ::sal_Int32 Height, ::sal_Int16 Flags ) override;
virtual css::awt::Rectangle SAL_CALL getPosSize( ) override;
virtual void SAL_CALL setVisible( sal_Bool Visible ) override;
virtual void SAL_CALL setEnable( sal_Bool Enable ) override;
virtual void SAL_CALL setFocus( ) override;
virtual void SAL_CALL addWindowListener( const css::uno::Reference< css::awt::XWindowListener >& xListener ) override;
virtual void SAL_CALL removeWindowListener( const css::uno::Reference< css::awt::XWindowListener >& xListener ) override;
virtual void SAL_CALL addFocusListener( const css::uno::Reference< css::awt::XFocusListener >& xListener ) override;
virtual void SAL_CALL removeFocusListener( const css::uno::Reference< css::awt::XFocusListener >& xListener ) override;
virtual void SAL_CALL addKeyListener( const css::uno::Reference< css::awt::XKeyListener >& xListener ) override;
virtual void SAL_CALL removeKeyListener( const css::uno::Reference< css::awt::XKeyListener >& xListener ) override;
virtual void SAL_CALL addMouseListener( const css::uno::Reference< css::awt::XMouseListener >& xListener ) override;
virtual void SAL_CALL removeMouseListener( const css::uno::Reference< css::awt::XMouseListener >& xListener ) override;
virtual void SAL_CALL addMouseMotionListener( const css::uno::Reference< css::awt::XMouseMotionListener >& xListener ) override;
virtual void SAL_CALL removeMouseMotionListener( const css::uno::Reference< css::awt::XMouseMotionListener >& xListener ) override;
virtual void SAL_CALL addPaintListener( const css::uno::Reference< css::awt::XPaintListener >& xListener ) override;
virtual void SAL_CALL removePaintListener( const css::uno::Reference< css::awt::XPaintListener >& xListener ) override;
bool Commit() {return m_pCellControl->Commit();}
void ImplInitWindow( vcl::Window const & rParent, const InitWindowFacet _eInitWhat )
{ m_pCellControl->ImplInitWindow( rParent, _eInitWhat ); }
bool isAlignedController() const { return m_pCellControl->isAlignedController(); }
void AlignControl(sal_Int16 nAlignment)
{ m_pCellControl->AlignControl(nAlignment);}
protected:
virtual vcl::Window* getEventWindow() const;
virtual void onWindowEvent( const VclEventId _nEventId, const vcl::Window& _rWindow, const void* _pEventData );
// default implementations call our focus listeners, don't forget to call them if you override this
virtual void onFocusGained( const css::awt::FocusEvent& _rEvent );
virtual void onFocusLost( const css::awt::FocusEvent& _rEvent );
private:
DECL_LINK( OnWindowEvent, VclWindowEvent&, void );
};
class FmXDataCell : public FmXGridCell
{
public:
FmXDataCell( DbGridColumn* pColumn, DbCellControl& _rControl )
:FmXGridCell( pColumn, &_rControl )
{
}
virtual void PaintFieldToCell(OutputDevice& rDev,
const tools::Rectangle& rRect,
const css::uno::Reference< css::sdb::XColumn >& xField,
const css::uno::Reference< css::util::XNumberFormatter >& xFormatter);
void UpdateFromField(const css::uno::Reference< css::sdb::XColumn >& xField,
const css::uno::Reference< css::util::XNumberFormatter >& xFormatter)
{ m_pCellControl->UpdateFromField(xField, xFormatter); }
protected:
void UpdateFromColumn();
};
class FmXTextCell : public FmXDataCell
{
protected:
/** determines whether the text of this cell can be painted directly, without
using the painter control
If this is <TRUE/>, the <member>PaintCell</member> method will simply use the text as returned
by <member>GetText</member>, and draw it onto the device passed to <member>PaintFieldToCell</member>,
while respecting the current alignment settings.
If this is <FALSE/>, the <member>PaintFieldToCell</member> request will be forwarded to the painter
control (<member>m_pPainter</member>). This is more expensive, but the only option
if your painting involves more that a simple DrawText.
This member is <TRUE/> by default, and can be modified by derived classes.
*/
bool m_bFastPaint;
public:
FmXTextCell( DbGridColumn* pColumn, DbCellControl& _rControl );
virtual void PaintFieldToCell(OutputDevice& rDev,
const tools::Rectangle& rRect,
const css::uno::Reference< css::sdb::XColumn >& xField,
const css::uno::Reference< css::util::XNumberFormatter >& xFormatter) override;
OUString GetText(const css::uno::Reference< css::sdb::XColumn >& _rxField,
const css::uno::Reference< css::util::XNumberFormatter >& xFormatter,
Color** ppColor = nullptr)
{return m_pCellControl->GetFormatText(_rxField, xFormatter, ppColor);}
};
typedef ::cppu::ImplHelper2 < css::awt::XTextComponent
, css::form::XChangeBroadcaster
> FmXEditCell_Base;
class FmXEditCell final : public FmXTextCell,
public FmXEditCell_Base
{
public:
FmXEditCell( DbGridColumn* pColumn, DbCellControl& _rControl );
DECLARE_UNO3_AGG_DEFAULTS(FmXEditCell, FmXTextCell)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
// XTypeProvider
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
// css::awt::XTextComponent
virtual void SAL_CALL addTextListener(const css::uno::Reference< css::awt::XTextListener >& l) override;
virtual void SAL_CALL removeTextListener(const css::uno::Reference< css::awt::XTextListener >& l) override;
virtual void SAL_CALL setText(const OUString& aText) override;
virtual void SAL_CALL insertText(const css::awt::Selection& Sel, const OUString& Text) override;
virtual OUString SAL_CALL getText() override;
virtual OUString SAL_CALL getSelectedText() override;
virtual void SAL_CALL setSelection(const css::awt::Selection& aSelection) override;
virtual css::awt::Selection SAL_CALL getSelection() override;
virtual sal_Bool SAL_CALL isEditable() override;
virtual void SAL_CALL setEditable(sal_Bool bEditable) override;
virtual void SAL_CALL setMaxTextLen(sal_Int16 nLen) override;
virtual sal_Int16 SAL_CALL getMaxTextLen() override;
// XChangeBroadcaster
virtual void SAL_CALL addChangeListener( const css::uno::Reference< css::form::XChangeListener >& aListener ) override;
virtual void SAL_CALL removeChangeListener( const css::uno::Reference< css::form::XChangeListener >& aListener ) override;
private:
virtual ~FmXEditCell() override;
virtual void onWindowEvent( const VclEventId _nEventId, const vcl::Window& _rWindow, const void* _pEventData ) override;
virtual void onFocusGained( const css::awt::FocusEvent& _rEvent ) override;
virtual void onFocusLost( const css::awt::FocusEvent& _rEvent ) override;
void onTextChanged();
OUString m_sValueOnEnter;
::comphelper::OInterfaceContainerHelper2 m_aTextListeners;
::comphelper::OInterfaceContainerHelper2 m_aChangeListeners;
::svt::IEditImplementation* m_pEditImplementation;
bool m_bOwnEditImplementation;
};
typedef ::cppu::ImplHelper2 < css::awt::XCheckBox
, css::awt::XButton
> FmXCheckBoxCell_Base;
class FmXCheckBoxCell : public FmXDataCell,
public FmXCheckBoxCell_Base
{
::comphelper::OInterfaceContainerHelper2 m_aItemListeners;
::comphelper::OInterfaceContainerHelper2 m_aActionListeners;
OUString m_aActionCommand;
VclPtr<CheckBox> m_pBox;
protected:
virtual ~FmXCheckBoxCell() override;
public:
FmXCheckBoxCell( DbGridColumn* pColumn, DbCellControl& _rControl );
// UNO
DECLARE_UNO3_AGG_DEFAULTS(FmXCheckBoxCell, FmXDataCell)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
// css::awt::XCheckBox
virtual void SAL_CALL addItemListener(const css::uno::Reference< css::awt::XItemListener >& l) override;
virtual void SAL_CALL removeItemListener(const css::uno::Reference< css::awt::XItemListener >& l) override;
virtual sal_Int16 SAL_CALL getState() override;
virtual void SAL_CALL setState(sal_Int16 n) override;
virtual void SAL_CALL setLabel(const OUString& Label) override;
virtual void SAL_CALL enableTriState(sal_Bool b) override;
// XButton
virtual void SAL_CALL addActionListener( const css::uno::Reference< css::awt::XActionListener >& l ) override;
virtual void SAL_CALL removeActionListener( const css::uno::Reference< css::awt::XActionListener >& l ) override;
//virtual void SAL_CALL setLabel( const OUString& Label ) throw (css::uno::RuntimeException);
virtual void SAL_CALL setActionCommand( const OUString& Command ) override;
protected:
virtual vcl::Window* getEventWindow() const override;
virtual void onWindowEvent( const VclEventId _nEventId, const vcl::Window& _rWindow, const void* _pEventData ) override;
};
typedef ::cppu::ImplHelper1 < css::awt::XListBox
> FmXListBoxCell_Base;
class FmXListBoxCell final :public FmXTextCell
,public FmXListBoxCell_Base
{
public:
FmXListBoxCell( DbGridColumn* pColumn, DbCellControl& _rControl );
DECLARE_UNO3_AGG_DEFAULTS(FmXListBoxCell, FmXTextCell)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
// css::awt::XListBox
virtual void SAL_CALL addItemListener(const css::uno::Reference< css::awt::XItemListener >& l) override;
virtual void SAL_CALL removeItemListener(const css::uno::Reference< css::awt::XItemListener >& l) override;
virtual void SAL_CALL addActionListener(const css::uno::Reference< css::awt::XActionListener >& l) override;
virtual void SAL_CALL removeActionListener(const css::uno::Reference< css::awt::XActionListener >& l) override;
virtual void SAL_CALL addItem(const OUString& aItem, sal_Int16 nPos) override;
virtual void SAL_CALL addItems(const css::uno::Sequence< OUString >& aItems, sal_Int16 nPos) override;
virtual void SAL_CALL removeItems(sal_Int16 nPos, sal_Int16 nCount) override;
virtual sal_Int16 SAL_CALL getItemCount() override;
virtual OUString SAL_CALL getItem(sal_Int16 nPos) override;
virtual css::uno::Sequence< OUString > SAL_CALL getItems() override;
virtual sal_Int16 SAL_CALL getSelectedItemPos() override;
virtual css::uno::Sequence< sal_Int16 > SAL_CALL getSelectedItemsPos() override;
virtual OUString SAL_CALL getSelectedItem() override;
virtual css::uno::Sequence< OUString > SAL_CALL getSelectedItems() override;
virtual void SAL_CALL selectItemPos(sal_Int16 nPos, sal_Bool bSelect) override;
virtual void SAL_CALL selectItemsPos(const css::uno::Sequence< sal_Int16 >& aPositions, sal_Bool bSelect) override;
virtual void SAL_CALL selectItem(const OUString& aItem, sal_Bool bSelect) override;
virtual sal_Bool SAL_CALL isMutipleMode() override;
virtual void SAL_CALL setMultipleMode(sal_Bool bMulti) override;
virtual sal_Int16 SAL_CALL getDropDownLineCount() override;
virtual void SAL_CALL setDropDownLineCount(sal_Int16 nLines) override;
virtual void SAL_CALL makeVisible(sal_Int16 nEntry) override;
private:
virtual void onWindowEvent( const VclEventId _nEventId, const vcl::Window& _rWindow, const void* _pEventData ) override;
virtual ~FmXListBoxCell() override;
DECL_LINK( OnDoubleClick, ListBox&, void );
::comphelper::OInterfaceContainerHelper2 m_aItemListeners,
m_aActionListeners;
VclPtr<ListBox> m_pBox;
};
typedef ::cppu::ImplHelper1 < css::awt::XComboBox
> FmXComboBoxCell_Base;
class FmXComboBoxCell :public FmXTextCell
,public FmXComboBoxCell_Base
{
private:
::comphelper::OInterfaceContainerHelper2 m_aItemListeners,
m_aActionListeners;
VclPtr<ComboBox> m_pComboBox;
protected:
virtual ~FmXComboBoxCell() override;
public:
FmXComboBoxCell( DbGridColumn* pColumn, DbCellControl& _rControl );
DECLARE_UNO3_AGG_DEFAULTS(FmXListBoxCell, FmXTextCell)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// OComponentHelper
virtual void SAL_CALL disposing() override;
// XComboBox
virtual void SAL_CALL addItemListener( const css::uno::Reference< css::awt::XItemListener >& Listener ) override;
virtual void SAL_CALL removeItemListener( const css::uno::Reference< css::awt::XItemListener >& Listener ) override;
virtual void SAL_CALL addActionListener( const css::uno::Reference< css::awt::XActionListener >& Listener ) override;
virtual void SAL_CALL removeActionListener( const css::uno::Reference< css::awt::XActionListener >& Listener ) override;
virtual void SAL_CALL addItem( const OUString& Item, ::sal_Int16 Pos ) override;
virtual void SAL_CALL addItems( const css::uno::Sequence< OUString >& Items, ::sal_Int16 Pos ) override;
virtual void SAL_CALL removeItems( ::sal_Int16 nPos, ::sal_Int16 nCount ) override;
virtual ::sal_Int16 SAL_CALL getItemCount( ) override;
virtual OUString SAL_CALL getItem( ::sal_Int16 Pos ) override;
virtual css::uno::Sequence< OUString > SAL_CALL getItems( ) override;
virtual ::sal_Int16 SAL_CALL getDropDownLineCount( ) override;
virtual void SAL_CALL setDropDownLineCount( ::sal_Int16 Lines ) override;
protected:
virtual void onWindowEvent( const VclEventId _nEventId, const vcl::Window& _rWindow, const void* _pEventData ) override;
};
typedef ::cppu::ImplHelper2 < css::awt::XTextComponent
, css::lang::XUnoTunnel
> FmXFilterCell_Base;
class FmXFilterCell final : public FmXGridCell
,public FmXFilterCell_Base
{
public:
FmXFilterCell(DbGridColumn* pColumn, DbFilterField* pControl);
DECLARE_UNO3_AGG_DEFAULTS(FmXFilterCell, FmXGridCell)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) override;
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
// XUnoTunnel
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
// helpers for XUnoTunnel
static const css::uno::Sequence<sal_Int8>& getUnoTunnelId();
// painting the filter text
void PaintCell(OutputDevice& rDev, const tools::Rectangle& rRect);
void Update(){m_pCellControl->Update();}
// OComponentHelper
virtual void SAL_CALL disposing() override;
// css::awt::XTextComponent
virtual void SAL_CALL addTextListener(const css::uno::Reference< css::awt::XTextListener >& l) override;
virtual void SAL_CALL removeTextListener(const css::uno::Reference< css::awt::XTextListener >& l) override;
virtual void SAL_CALL setText(const OUString& aText) override;
virtual void SAL_CALL insertText(const css::awt::Selection& Sel, const OUString& Text) override;
virtual OUString SAL_CALL getText() override;
virtual OUString SAL_CALL getSelectedText() override;
virtual void SAL_CALL setSelection(const css::awt::Selection& aSelection) override;
virtual css::awt::Selection SAL_CALL getSelection() override;
virtual sal_Bool SAL_CALL isEditable() override;
virtual void SAL_CALL setEditable(sal_Bool bEditable) override;
virtual void SAL_CALL setMaxTextLen(sal_Int16 nLen) override;
virtual sal_Int16 SAL_CALL getMaxTextLen() override;
private:
DECL_LINK( OnCommit, DbFilterField&, void );
virtual ~FmXFilterCell() override;
::comphelper::OInterfaceContainerHelper2 m_aTextListeners;
};
#endif // INCLUDED_SVX_SOURCE_INC_GRIDCELL_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|