LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/svtools - ivctrl.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 41 0.0 %
Date: 2012-12-27 Functions: 0 30 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #ifndef _ICNVW_HXX
      21             : #define _ICNVW_HXX
      22             : 
      23             : #include "svtools/svtdllapi.h"
      24             : #include <tools/string.hxx>
      25             : #include <vcl/ctrl.hxx>
      26             : #include <tools/link.hxx>
      27             : #include <tools/contnr.hxx>
      28             : #include <vcl/image.hxx>
      29             : #include <vcl/seleng.hxx>
      30             : 
      31             : class ResId;
      32             : class Point;
      33             : class SvxIconChoiceCtrl_Impl;
      34             : class Image;
      35             : 
      36             : #define ICNVIEW_FLAG_POS_LOCKED     0x0001
      37             : #define ICNVIEW_FLAG_SELECTED       0x0002
      38             : #define ICNVIEW_FLAG_FOCUSED        0x0004
      39             : #define ICNVIEW_FLAG_IN_USE         0x0008
      40             : #define ICNVIEW_FLAG_CURSORED       0x0010 // Rahmen um Image
      41             : #define ICNVIEW_FLAG_POS_MOVED      0x0020 // per D&D verschoben aber nicht gelockt
      42             : #define ICNVIEW_FLAG_DROP_TARGET    0x0040 // im QueryDrop gesetzt
      43             : #define ICNVIEW_FLAG_BLOCK_EMPHASIS 0x0080 // Emphasis nicht painten
      44             : #define ICNVIEW_FLAG_USER1          0x0100
      45             : #define ICNVIEW_FLAG_USER2          0x0200
      46             : #define ICNVIEW_FLAG_PRED_SET       0x0400 // Predecessor wurde umgesetzt
      47             : 
      48             : enum SvxIconChoiceCtrlTextMode
      49             : {
      50             :     IcnShowTextFull = 1,        // BoundRect nach unten aufplustern
      51             :     IcnShowTextShort,           // Abkuerzung mit "..."
      52             :     IcnShowTextSmart,           // Text komplett anzeigen, wenn moeglich (n.i.)
      53             :     IcnShowTextDontKnow         // Einstellung der View
      54             : };
      55             : 
      56             : enum SvxIconChoiceCtrlPositionMode
      57             : {
      58             :     IcnViewPositionModeFree = 0,                // freies pixelgenaues Positionieren
      59             :     IcnViewPositionModeAutoArrange = 1,         // automatisches Ausrichten
      60             :     IcnViewPositionModeAutoAdjust = 2,          // automatisches Anordnen
      61             :     IcnViewPositionModeLast = IcnViewPositionModeAutoAdjust
      62             : };
      63             : 
      64             : class SvxIconChoiceCtrlEntry
      65             : {
      66             :     Image aImage;
      67             : 
      68             :     String aText;
      69             :     String aQuickHelpText;
      70             :     void*  pUserData;
      71             : 
      72             :     friend class SvxIconChoiceCtrl_Impl;
      73             :     friend class IcnCursor_Impl;
      74             :     friend class EntryList_Impl;
      75             :     friend class IcnGridMap_Impl;
      76             : 
      77             :     Rectangle               aRect;              // Bounding-Rect des Entries
      78             :     Rectangle               aGridRect;          // nur gesetzt im Grid-Modus
      79             :     sal_uLong                   nPos;
      80             : 
      81             :     // die Eintragsposition in der Eintragsliste entspricht der beim Insert vorgegebenen
      82             :     // [Sortier-]Reihenfolge (->Reihenfolge der Anker in der Ankerliste!). Im AutoArrange-Modus
      83             :     // kann die sichtbare Reihenfolge aber anders sein. Die Eintraege werden deshalb dann
      84             :     // verkettet
      85             :     SvxIconChoiceCtrlEntry*         pblink;     // backward (linker Nachbar)
      86             :     SvxIconChoiceCtrlEntry*         pflink;     // forward  (rechter Nachbar)
      87             : 
      88             :     SvxIconChoiceCtrlTextMode       eTextMode;
      89             :     sal_uInt16                  nX,nY;      // fuer Tastatursteuerung
      90             :     sal_uInt16                  nFlags;
      91             : 
      92           0 :     void                    ClearFlags( sal_uInt16 nMask ) { nFlags &= (~nMask); }
      93           0 :     void                    SetFlags( sal_uInt16 nMask ) { nFlags |= nMask; }
      94           0 :     void                    AssignFlags( sal_uInt16 _nFlags ) { nFlags = _nFlags; }
      95             : 
      96             :     // setzt den linken Nachbarn (A <-> B  ==>  A <-> this <-> B)
      97           0 :     void                    SetBacklink( SvxIconChoiceCtrlEntry* pA )
      98             :                             {
      99           0 :                                 pA->pflink->pblink = this;      // X <- B
     100           0 :                                 this->pflink = pA->pflink;      // X -> B
     101           0 :                                 this->pblink = pA;              // A <- X
     102           0 :                                 pA->pflink = this;              // A -> X
     103           0 :                             }
     104             :     // loest eine Verbindung (A <-> this <-> B  ==>  A <-> B)
     105           0 :     void                    Unlink()
     106             :                             {
     107           0 :                                 this->pblink->pflink = this->pflink;
     108           0 :                                 this->pflink->pblink = this->pblink;
     109           0 :                                 this->pflink = 0;
     110           0 :                                 this->pblink = 0;
     111           0 :                             }
     112             : 
     113             : public:
     114             :                             SvxIconChoiceCtrlEntry( const String& rText, const Image& rImage, sal_uInt16 nFlags = 0 );
     115           0 :                             ~SvxIconChoiceCtrlEntry () {}
     116             : 
     117           0 :     void                    SetImage ( const Image& rImage ) { aImage = rImage; }
     118           0 :     Image                   GetImage () const { return aImage; }
     119           0 :     void                    SetText ( const String& rText ) { aText = rText; }
     120           0 :     String                  GetText () const { return aText; }
     121             :     String SVT_DLLPUBLIC    GetDisplayText() const;
     122           0 :     void                    SetQuickHelpText( const String& rText ) { aQuickHelpText = rText; }
     123           0 :     String                  GetQuickHelpText() const { return aQuickHelpText; }
     124           0 :     void                    SetUserData ( void* _pUserData ) { pUserData = _pUserData; }
     125           0 :     void*                   GetUserData () { return pUserData; }
     126             : 
     127           0 :     const Rectangle &       GetBoundRect() const { return aRect; }
     128             : 
     129             :     void                    SetFocus ( sal_Bool bSet )
     130             :                                      { nFlags = ( bSet ? nFlags | ICNVIEW_FLAG_FOCUSED : nFlags & ~ICNVIEW_FLAG_FOCUSED ); }
     131             : 
     132           0 :     SvxIconChoiceCtrlTextMode       GetTextMode() const { return eTextMode; }
     133           0 :     sal_uInt16                  GetFlags() const { return nFlags; }
     134           0 :     sal_Bool                    IsSelected() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_SELECTED) !=0); }
     135           0 :     sal_Bool                    IsFocused() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_FOCUSED) !=0); }
     136             :     sal_Bool                    IsInUse() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_IN_USE) !=0); }
     137           0 :     sal_Bool                    IsCursored() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_CURSORED) !=0); }
     138           0 :     sal_Bool                    IsDropTarget() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_DROP_TARGET) !=0); }
     139           0 :     sal_Bool                    IsBlockingEmphasis() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_BLOCK_EMPHASIS) !=0); }
     140           0 :     sal_Bool                    IsPosLocked() const { return (sal_Bool)((nFlags & ICNVIEW_FLAG_POS_LOCKED) !=0); }
     141             : 
     142             :     // Nur bei AutoArrange gesetzt. Den Kopf der Liste gibts per SvxIconChoiceCtrl::GetPredecessorHead
     143             :     SvxIconChoiceCtrlEntry*         GetSuccessor() const { return pflink; }
     144             :     SvxIconChoiceCtrlEntry*         GetPredecessor() const { return pblink; }
     145             : 
     146             : //  sal_Unicode             GetMnemonicChar() const;
     147             : };
     148             : 
     149             : enum SvxIconChoiceCtrlColumnAlign
     150             : {
     151             :     IcnViewAlignLeft = 1,
     152             :     IcnViewAlignRight,
     153             :     IcnViewAlignCenter
     154             : };
     155             : 
     156           0 : class SvxIconChoiceCtrlColumnInfo
     157             : {
     158             :     String                  aColText;
     159             :     Image                   aColImage;
     160             :     long                    nWidth;
     161             :     SvxIconChoiceCtrlColumnAlign    eAlignment;
     162             :     sal_uInt16                  nSubItem;
     163             : 
     164             : public:
     165           0 :                             SvxIconChoiceCtrlColumnInfo( sal_uInt16 nSub, long nWd,
     166             :                                 SvxIconChoiceCtrlColumnAlign eAlign ) :
     167           0 :                                 nWidth( nWd ), eAlignment( eAlign ), nSubItem( nSub ) {}
     168             :                             SvxIconChoiceCtrlColumnInfo( const SvxIconChoiceCtrlColumnInfo& );
     169             : 
     170             :     void                    SetText( const String& rText ) { aColText = rText; }
     171             :     void                    SetImage( const Image& rImg ) { aColImage = rImg; }
     172           0 :     void                    SetWidth( long nWd ) { nWidth = nWd; }
     173             :     void                    SetAlignment( SvxIconChoiceCtrlColumnAlign eAlign ) { eAlignment = eAlign; }
     174             :     void                    SetSubItem( sal_uInt16 nSub) { nSubItem = nSub; }
     175             : 
     176             :     const String&           GetText() const { return aColText; }
     177             :     const Image&            GetImage() const { return aColImage; }
     178           0 :     long                    GetWidth() const { return nWidth; }
     179             :     SvxIconChoiceCtrlColumnAlign    GetAlignment() const { return eAlignment; }
     180             :     sal_uInt16                  GetSubItem() const { return nSubItem; }
     181             : };
     182             : 
     183             : //###################################################################################################################################
     184             : /*
     185             :     Window-Bits:
     186             :         WB_ICON             // Text unter dem Icon
     187             :         WB_SMALL_ICON       // Text rechts neben Icon, beliebige Positionierung
     188             :         WB_DETAILS          // Text rechts neben Icon, eingeschraenkte Posit.
     189             :         WB_BORDER
     190             :         WB_NOHIDESELECTION  // Selektion inaktiv zeichnen, wenn kein Fokus
     191             :         WB_NOHSCROLL
     192             :         WB_NOVSCROLL
     193             :         WB_NOSELECTION
     194             :         WB_SMART_ARRANGE    // im Arrange die Vis-Area beibehalten
     195             :         WB_ALIGN_TOP        // Anordnung zeilenweise von links nach rechts
     196             :         WB_ALIGN_LEFT       // Anordnung spaltenweise von oben nach unten
     197             :         WB_NODRAGSELECTION  // Keine Selektion per Tracking-Rect
     198             :         WB_NOCOLUMNHEADER   // keine Headerbar in Detailsview (Headerbar not implemented)
     199             :         WB_NOPOINTERFOCUS   // Kein GrabFocus im MouseButtonDown
     200             :         WB_HIGHLIGHTFRAME   // der unter der Maus befindliche Eintrag wird hervorgehoben
     201             :         WB_NOASYNCSELECTHDL // Selektionshandler synchron aufrufen, d.h. Events nicht sammeln
     202             : */
     203             : 
     204             : #define WB_ICON                 WB_RECTSTYLE
     205             : #define WB_SMALLICON            WB_SMALLSTYLE
     206             : #define WB_DETAILS              WB_VCENTER
     207             : #define WB_NOHSCROLL            WB_SPIN
     208             : #define WB_NOVSCROLL            WB_DRAG
     209             : #define WB_NOSELECTION          WB_REPEAT
     210             : #define WB_NODRAGSELECTION      WB_PATHELLIPSIS
     211             : #define WB_SMART_ARRANGE        WB_PASSWORD
     212             : #define WB_ALIGN_TOP            WB_TOP
     213             : #define WB_ALIGN_LEFT           WB_LEFT
     214             : #define WB_NOCOLUMNHEADER       WB_CENTER
     215             : #define WB_HIGHLIGHTFRAME       WB_INFO
     216             : #define WB_NOASYNCSELECTHDL     WB_NOLABEL
     217             : 
     218             : class MnemonicGenerator;
     219             : 
     220             : class SVT_DLLPUBLIC SvtIconChoiceCtrl : public Control
     221             : {
     222             :     friend class SvxIconChoiceCtrl_Impl;
     223             : 
     224             :     Link                    _aClickIconHdl;
     225             :     Link                    _aDocRectChangedHdl;
     226             :     Link                    _aVisRectChangedHdl;
     227             :     KeyEvent*               _pCurKeyEvent;
     228             :     SvxIconChoiceCtrl_Impl* _pImp;
     229             :     sal_Bool                    _bAutoFontColor;
     230             : 
     231             : protected:
     232             : 
     233             :     virtual void        KeyInput( const KeyEvent& rKEvt );
     234             :     virtual sal_Bool    EditedEntry( SvxIconChoiceCtrlEntry*, const rtl::OUString& rNewText, sal_Bool bCancelled );
     235             :     virtual void        DocumentRectChanged();
     236             :     virtual void        VisibleRectChanged();
     237             :     virtual sal_Bool        EditingEntry( SvxIconChoiceCtrlEntry* pEntry );
     238             :     virtual void        Command( const CommandEvent& rCEvt );
     239             :     virtual void        Paint( const Rectangle& rRect );
     240             :     virtual void        MouseButtonDown( const MouseEvent& rMEvt );
     241             :     virtual void        MouseButtonUp( const MouseEvent& rMEvt );
     242             :     virtual void        MouseMove( const MouseEvent& rMEvt );
     243             :     virtual void        Resize();
     244             :     virtual void        GetFocus();
     245             :     virtual void        LoseFocus();
     246             :     virtual void        ClickIcon();
     247             :     virtual void        StateChanged( StateChangedType nType );
     248             :     virtual void        DataChanged( const DataChangedEvent& rDCEvt );
     249             :     virtual void        RequestHelp( const HelpEvent& rHEvt );
     250             :     virtual void        DrawEntryImage(
     251             :                             SvxIconChoiceCtrlEntry* pEntry,
     252             :                             const Point& rPos,
     253             :                             OutputDevice& rDev );
     254             : 
     255             :     virtual String      GetEntryText(
     256             :                             SvxIconChoiceCtrlEntry* pEntry,
     257             :                             sal_Bool bInplaceEdit );
     258             : 
     259             :     virtual void        FillLayoutData() const;
     260             : 
     261             :     void                CallImplEventListeners(sal_uLong nEvent, void* pData);
     262             : 
     263             : public:
     264             : 
     265             :                         SvtIconChoiceCtrl( Window* pParent, WinBits nWinStyle = WB_ICON | WB_BORDER );
     266             :     virtual             ~SvtIconChoiceCtrl();
     267             : 
     268             :     void                SetStyle( WinBits nWinStyle );
     269             :     WinBits             GetStyle() const;
     270             : 
     271             :     sal_Bool                SetChoiceWithCursor ( sal_Bool bDo = sal_True );
     272             : 
     273             :     void                SetFont( const Font& rFont );
     274             :     void                SetPointFont( const Font& rFont );
     275             : 
     276           0 :     void                SetClickHdl( const Link& rLink ) { _aClickIconHdl = rLink; }
     277           0 :     const Link&         GetClickHdl() const { return _aClickIconHdl; }
     278             : 
     279             :     using OutputDevice::SetBackground;
     280             :     void                SetBackground( const Wallpaper& rWallpaper );
     281             : 
     282             :     void                ArrangeIcons();
     283             : 
     284             : 
     285             :     SvxIconChoiceCtrlEntry* InsertEntry( const String& rText,
     286             :                                          const Image& rImage,
     287             :                                          sal_uLong nPos = LIST_APPEND,
     288             :                                          const Point* pPos = 0,
     289             :                                          sal_uInt16 nFlags = 0
     290             :                                        );
     291             : 
     292             :     /** creates automatic mnemonics for all icon texts in the control
     293             :     */
     294             :     void                CreateAutoMnemonics( void );
     295             : 
     296             :     /** creates automatic mnemonics for all icon texts in the control
     297             : 
     298             :     @param _rUsedMnemonics
     299             :         a <type>MnemonicGenerator</type> at which some other mnemonics are already registered.
     300             :         This can be used if the control needs to share the "mnemonic space" with other elements,
     301             :         such as a menu bar.
     302             :     */
     303             :     void                CreateAutoMnemonics( MnemonicGenerator& _rUsedMnemonics );
     304             : 
     305             :     sal_Bool                DoKeyInput( const KeyEvent& rKEvt );
     306             : 
     307             :     sal_Bool                IsEntryEditing() const;
     308             : 
     309             :     sal_uLong                   GetEntryCount() const;
     310             :     SvxIconChoiceCtrlEntry* GetEntry( sal_uLong nPos ) const;
     311             :     sal_uLong                   GetEntryListPos( SvxIconChoiceCtrlEntry* pEntry ) const;
     312             :     using Window::SetCursor;
     313             :     void                    SetCursor( SvxIconChoiceCtrlEntry* pEntry );
     314             :     SvxIconChoiceCtrlEntry* GetCursor() const;
     315             : 
     316             :     // Neu-Berechnung gecachter View-Daten und Invalidierung im Fenster
     317             :     void                    InvalidateEntry( SvxIconChoiceCtrlEntry* pEntry );
     318             : 
     319             :     // bHit==sal_False: Eintrag gilt als getroffen, wenn Position im BoundRect liegt
     320             :     //     ==sal_True : Bitmap oder Text muss getroffen sein
     321             :     SvxIconChoiceCtrlEntry* GetEntry( const Point& rPosPixel, sal_Bool bHit = sal_False ) const;
     322             : 
     323             :     // in dem sal_uLong wird die Position in der Liste des gefunden Eintrags zurueckgegeben
     324             :     SvxIconChoiceCtrlEntry* GetSelectedEntry( sal_uLong& rPos ) const;
     325             : 
     326             :     void                        SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode, SvxIconChoiceCtrlEntry* pEntry = 0 );
     327             : 
     328             :     virtual sal_Bool        HasBackground() const;
     329             :     virtual sal_Bool        HasFont() const;
     330             :     virtual sal_Bool        HasFontTextColor() const;
     331             :     virtual sal_Bool        HasFontFillColor() const;
     332             : 
     333             :     void                SetFontColorToBackground ( sal_Bool bDo = sal_True ) { _bAutoFontColor = bDo; }
     334           0 :     sal_Bool                AutoFontColor () { return _bAutoFontColor; }
     335             : 
     336             :     Point               GetPixelPos( const Point& rPosLogic ) const;
     337             :     void                SetSelectionMode( SelectionMode eMode );
     338             : 
     339             :     Rectangle           GetBoundingBox( SvxIconChoiceCtrlEntry* pEntry ) const;
     340             :     Rectangle           GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const;
     341             : 
     342             :     void                SetNoSelection();
     343             : 
     344             :     // ACCESSIBILITY ==========================================================
     345             : 
     346             :     /** Creates and returns the accessible object of the Box. */
     347             :     virtual ::com::sun::star::uno::Reference<
     348             :         ::com::sun::star::accessibility::XAccessible > CreateAccessible();
     349             : };
     350             : 
     351             : #endif // _ICNVW_HXX
     352             : 
     353             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10