LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/include/vcl - cmdevt.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 98 0.0 %
Date: 2013-07-09 Functions: 0 44 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 _VCL_CMDEVT_HXX
      21             : #define _VCL_CMDEVT_HXX
      22             : 
      23             : #include <tools/gen.hxx>
      24             : #include <tools/solar.h>
      25             : #include <vcl/dllapi.h>
      26             : #include <vcl/keycod.hxx>
      27             : #include <vcl/font.hxx>
      28             : 
      29             : // ---------------------------
      30             : // - CommandExtTextInputData -
      31             : // ---------------------------
      32             : 
      33             : #define EXTTEXTINPUT_ATTR_GRAYWAVELINE          ((sal_uInt16)0x0100)
      34             : #define EXTTEXTINPUT_ATTR_UNDERLINE             ((sal_uInt16)0x0200)
      35             : #define EXTTEXTINPUT_ATTR_BOLDUNDERLINE         ((sal_uInt16)0x0400)
      36             : #define EXTTEXTINPUT_ATTR_DOTTEDUNDERLINE       ((sal_uInt16)0x0800)
      37             : #define EXTTEXTINPUT_ATTR_DASHDOTUNDERLINE      ((sal_uInt16)0x1000)
      38             : #define EXTTEXTINPUT_ATTR_HIGHLIGHT             ((sal_uInt16)0x2000)
      39             : #define EXTTEXTINPUT_ATTR_REDTEXT               ((sal_uInt16)0x4000)
      40             : #define EXTTEXTINPUT_ATTR_HALFTONETEXT          ((sal_uInt16)0x8000)
      41             : 
      42             : #define EXTTEXTINPUT_CURSOR_INVISIBLE           ((sal_uInt16)0x0001)
      43             : #define EXTTEXTINPUT_CURSOR_OVERWRITE           ((sal_uInt16)0x0002)
      44             : 
      45             : class VCL_DLLPUBLIC CommandExtTextInputData
      46             : {
      47             : private:
      48             :     XubString           maText;
      49             :     sal_uInt16*             mpTextAttr;
      50             :     xub_StrLen          mnCursorPos;
      51             :     xub_StrLen          mnDeltaStart;
      52             :     xub_StrLen          mnOldTextLen;
      53             :     sal_uInt16              mnCursorFlags;
      54             :     sal_Bool                mbOnlyCursor;
      55             : 
      56             : public:
      57             :                         CommandExtTextInputData( const XubString& rText,
      58             :                                                  const sal_uInt16* pTextAttr,
      59             :                                                  xub_StrLen nCursorPos,
      60             :                                                  sal_uInt16 nCursorFlags,
      61             :                                                  xub_StrLen nDeltaStart,
      62             :                                                  xub_StrLen nOldTextLen,
      63             :                                                  sal_Bool bOnlyCursor );
      64             :                         CommandExtTextInputData( const CommandExtTextInputData& rData );
      65             :                         ~CommandExtTextInputData();
      66             : 
      67           0 :     const XubString&    GetText() const { return maText; }
      68           0 :     const sal_uInt16*       GetTextAttr() const { return mpTextAttr; }
      69             :     sal_uInt16              GetCharTextAttr( sal_uInt16 nIndex ) const;
      70           0 :     xub_StrLen          GetCursorPos() const { return mnCursorPos; }
      71           0 :     sal_Bool                IsCursorVisible() const { return (mnCursorFlags & EXTTEXTINPUT_CURSOR_INVISIBLE) == 0; }
      72           0 :     sal_Bool                IsCursorOverwrite() const { return (mnCursorFlags & EXTTEXTINPUT_CURSOR_OVERWRITE) != 0; }
      73             :     sal_uInt16              GetCursorFlags() const { return mnCursorFlags; }
      74             :     xub_StrLen          GetDeltaStart() const { return mnDeltaStart; }
      75             :     xub_StrLen          GetOldTextLen() const { return mnOldTextLen; }
      76           0 :     sal_Bool                IsOnlyCursorChanged() const { return mbOnlyCursor; }
      77             : };
      78             : 
      79             : inline sal_uInt16 CommandExtTextInputData::GetCharTextAttr( sal_uInt16 nIndex ) const
      80             : {
      81             :     if ( mpTextAttr && (nIndex < maText.Len()) )
      82             :         return mpTextAttr[nIndex];
      83             :     else
      84             :         return 0;
      85             : }
      86             : 
      87             : // ---------------------------
      88             : // - CommandInputContextData -
      89             : // ---------------------------
      90             : 
      91             : class VCL_DLLPUBLIC CommandInputContextData
      92             : {
      93             : private:
      94             :     LanguageType    meLanguage;
      95             : 
      96             : public:
      97             :                     CommandInputContextData();
      98             :                     CommandInputContextData( LanguageType eLang );
      99             : 
     100             :     LanguageType    GetLanguage() const { return meLanguage; }
     101             : };
     102             : 
     103             : inline CommandInputContextData::CommandInputContextData()
     104             : {
     105             :     meLanguage = LANGUAGE_DONTKNOW;
     106             : }
     107             : 
     108           0 : inline CommandInputContextData::CommandInputContextData( LanguageType eLang )
     109             : {
     110           0 :     meLanguage = eLang;
     111           0 : }
     112             : 
     113             : // --------------------
     114             : // - CommandWheelData -
     115             : // --------------------
     116             : 
     117             : #define COMMAND_WHEEL_SCROLL            ((sal_uInt16)0x0001)
     118             : #define COMMAND_WHEEL_ZOOM              ((sal_uInt16)0x0002)
     119             : #define COMMAND_WHEEL_ZOOM_SCALE        ((sal_uInt16)0x0003)
     120             : #define COMMAND_WHEEL_DATAZOOM          ((sal_uInt16)0x0004)
     121             : 
     122             : #define COMMAND_WHEEL_PAGESCROLL        ((sal_uLong)0xFFFFFFFF)
     123             : 
     124             : class VCL_DLLPUBLIC CommandWheelData
     125             : {
     126             : private:
     127             :     long            mnDelta;
     128             :     long            mnNotchDelta;
     129             :     sal_uLong           mnLines;
     130             :     sal_uInt16          mnMode;
     131             :     sal_uInt16          mnCode;
     132             :     sal_Bool            mbHorz;
     133             :     sal_Bool            mbDeltaIsPixel;
     134             : 
     135             : public:
     136             :                     CommandWheelData();
     137             :                     CommandWheelData( long nWheelDelta, long nWheelNotchDelta,
     138             :                                       sal_uLong nScrollLines,
     139             :                                       sal_uInt16 nWheelMode, sal_uInt16 nKeyModifier,
     140             :                                       sal_Bool bHorz = sal_False, sal_Bool bDeltaIsPixel = sal_False );
     141             : 
     142           0 :     long            GetDelta() const { return mnDelta; }
     143           0 :     long            GetNotchDelta() const { return mnNotchDelta; }
     144           0 :     sal_uLong           GetScrollLines() const { return mnLines; }
     145           0 :     sal_Bool            IsHorz() const { return mbHorz; }
     146           0 :     sal_Bool            IsDeltaPixel() const { return mbDeltaIsPixel; }
     147             : 
     148           0 :     sal_uInt16          GetMode() const { return mnMode; }
     149             : 
     150           0 :     sal_uInt16          GetModifier() const
     151           0 :                         { return (mnCode & (KEY_SHIFT | KEY_MOD1 | KEY_MOD2)); }
     152           0 :     bool            IsShift() const
     153           0 :                         { return ((mnCode & KEY_SHIFT) != 0); }
     154           0 :     sal_Bool            IsMod1() const
     155           0 :                         { return ((mnCode & KEY_MOD1) != 0); }
     156           0 :     sal_Bool            IsMod2() const
     157           0 :                         { return ((mnCode & KEY_MOD2) != 0); }
     158             :     sal_Bool            IsMod3() const
     159             :                         { return ((mnCode & KEY_MOD3) != 0); }
     160             : };
     161             : 
     162             : inline CommandWheelData::CommandWheelData()
     163             : {
     164             :     mnDelta         = 0;
     165             :     mnNotchDelta    = 0;
     166             :     mnLines         = 0;
     167             :     mnMode          = 0;
     168             :     mnCode          = 0;
     169             :     mbHorz          = sal_False;
     170             :     mbDeltaIsPixel  = sal_False;
     171             : }
     172             : 
     173           0 : inline CommandWheelData::CommandWheelData( long nWheelDelta, long nWheelNotchDelta,
     174             :                                            sal_uLong nScrollLines,
     175             :                                            sal_uInt16 nWheelMode, sal_uInt16 nKeyModifier,
     176             :                                            sal_Bool bHorz, sal_Bool bDeltaIsPixel )
     177             : {
     178           0 :     mnDelta         = nWheelDelta;
     179           0 :     mnNotchDelta    = nWheelNotchDelta;
     180           0 :     mnLines         = nScrollLines;
     181           0 :     mnMode          = nWheelMode;
     182           0 :     mnCode          = nKeyModifier;
     183           0 :     mbHorz          = bHorz;
     184           0 :     mbDeltaIsPixel  = bDeltaIsPixel;
     185           0 : }
     186             : 
     187             : // ---------------------
     188             : // - CommandScrollData -
     189             : // ---------------------
     190             : 
     191             : class VCL_DLLPUBLIC CommandScrollData
     192             : {
     193             : private:
     194             :     long            mnDeltaX;
     195             :     long            mnDeltaY;
     196             : 
     197             : public:
     198             :                     CommandScrollData();
     199             :                     CommandScrollData( long nDeltaX, long nDeltaY );
     200             : 
     201           0 :     long            GetDeltaX() const { return mnDeltaX; }
     202           0 :     long            GetDeltaY() const { return mnDeltaY; }
     203             : };
     204             : 
     205           0 : inline CommandScrollData::CommandScrollData()
     206             : {
     207           0 :     mnDeltaX    = 0;
     208           0 :     mnDeltaY    = 0;
     209           0 : }
     210             : 
     211           0 : inline CommandScrollData::CommandScrollData( long nDeltaX, long nDeltaY )
     212             : {
     213           0 :     mnDeltaX    = nDeltaX;
     214           0 :     mnDeltaY    = nDeltaY;
     215           0 : }
     216             : 
     217             : // ---------------------
     218             : // - CommandModKeyData -
     219             : // ---------------------
     220             : 
     221             : class VCL_DLLPUBLIC CommandModKeyData
     222             : {
     223             : private:
     224             :     sal_uInt16          mnCode;
     225             : 
     226             : public:
     227             :                     CommandModKeyData();
     228             :                     CommandModKeyData( sal_uInt16 nCode );
     229             : 
     230             :     bool            IsShift()   const { return (mnCode & MODKEY_SHIFT) ? true : false; }
     231           0 :     sal_Bool            IsMod1()    const { return (mnCode & MODKEY_MOD1) ? sal_True : sal_False; }
     232           0 :     sal_Bool            IsMod2()    const { return (mnCode & MODKEY_MOD2) ? sal_True : sal_False; }
     233             :     sal_Bool            IsMod3()    const { return (mnCode & MODKEY_MOD3) ? sal_True : sal_False; }
     234             : 
     235           0 :     sal_Bool            IsLeftShift() const { return (mnCode & MODKEY_LSHIFT) ? sal_True : sal_False; }
     236             :     sal_Bool            IsLeftMod1()  const { return (mnCode & MODKEY_LMOD1) ? sal_True : sal_False; }
     237             :     sal_Bool            IsLeftMod2()  const { return (mnCode & MODKEY_LMOD2) ? sal_True : sal_False; }
     238             :     sal_Bool            IsLeftMod3()  const { return (mnCode & MODKEY_LMOD3) ? sal_True : sal_False; }
     239             : 
     240           0 :     sal_Bool            IsRightShift() const { return (mnCode & MODKEY_RSHIFT) ? sal_True : sal_False; }
     241             :     sal_Bool            IsRightMod1()  const { return (mnCode & MODKEY_RMOD1) ? sal_True : sal_False; }
     242             :     sal_Bool            IsRightMod2()  const { return (mnCode & MODKEY_RMOD2) ? sal_True : sal_False; }
     243             :     sal_Bool            IsRightMod3()  const { return (mnCode & MODKEY_RMOD3) ? sal_True : sal_False; }
     244             : };
     245             : 
     246             : inline CommandModKeyData::CommandModKeyData()
     247             : {
     248             :     mnCode = 0L;
     249             : }
     250             : 
     251           0 : inline CommandModKeyData::CommandModKeyData( sal_uInt16 nCode )
     252             : {
     253           0 :     mnCode = nCode;
     254           0 : }
     255             : 
     256             : // --------------------
     257             : // - CommanDialogData -
     258             : // --------------------
     259             : 
     260             : #define SHOWDIALOG_ID_PREFERENCES       1
     261             : #define SHOWDIALOG_ID_ABOUT             2
     262             : 
     263             : class VCL_DLLPUBLIC CommandDialogData
     264             : {
     265             :     int             m_nDialogId;
     266             :     public:
     267           0 :     CommandDialogData( int nDialogId = SHOWDIALOG_ID_PREFERENCES )
     268           0 :     : m_nDialogId( nDialogId )
     269           0 :     {}
     270             : 
     271           0 :     int GetDialogId() const { return m_nDialogId; }
     272             : };
     273             : 
     274             : // --------------
     275             : // Media Commands
     276             : // --------------
     277             : 
     278             : #define MEDIA_COMMAND_CHANNEL_DOWN           ((sal_Int16)1) // Decrement the channel value, for example, for a TV or radio tuner.
     279             : #define MEDIA_COMMAND_CHANNEL_UP             ((sal_Int16)2) // Increment the channel value, for example, for a TV or radio tuner.
     280             : #define MEDIA_COMMAND_NEXTTRACK              ((sal_Int16)3) // Go to next media track/slide.
     281             : #define MEDIA_COMMAND_PAUSE                  ((sal_Int16)4) // Pause. If already paused, take no further action. This is a direct PAUSE command that has no state.
     282             : #define MEDIA_COMMAND_PLAY                   ((sal_Int16)5) // Begin playing at the current position. If already paused, it will resume. This is a direct PLAY command that has no state.
     283             : #define MEDIA_COMMAND_PLAY_PAUSE             ((sal_Int16)6) // Play or pause playback.
     284             : #define MEDIA_COMMAND_PREVIOUSTRACK          ((sal_Int16)7) // Go to previous media track/slide.
     285             : #define MEDIA_COMMAND_RECORD                 ((sal_Int16)8) // Begin recording the current stream.
     286             : #define MEDIA_COMMAND_REWIND                 ((sal_Int16)9)// Go backward in a stream at a higher rate of speed.
     287             : #define MEDIA_COMMAND_STOP                   ((sal_Int16)10)// Stop playback.
     288             : #define MEDIA_COMMAND_MIC_ON_OFF_TOGGLE      ((sal_Int16)11)// Toggle the microphone.
     289             : #define MEDIA_COMMAND_MICROPHONE_VOLUME_DOWN ((sal_Int16)12)// Increase microphone volume.
     290             : #define MEDIA_COMMAND_MICROPHONE_VOLUME_MUTE ((sal_Int16)13)// Mute the microphone.
     291             : #define MEDIA_COMMAND_MICROPHONE_VOLUME_UP   ((sal_Int16)14)// Decrease microphone volume.
     292             : #define MEDIA_COMMAND_VOLUME_DOWN            ((sal_Int16)15)// Lower the volume.
     293             : #define MEDIA_COMMAND_VOLUME_MUTE            ((sal_Int16)16)// Mute the volume.
     294             : #define MEDIA_COMMAND_VOLUME_UP              ((sal_Int16)17)// Raise the volume.
     295             : #define MEDIA_COMMAND_MENU                   ((sal_Int16)18)// Button Menu pressed.
     296             : #define MEDIA_COMMAND_MENU_HOLD              ((sal_Int16)19)// Button Menu (long) pressed.
     297             : #define MEDIA_COMMAND_PLAY_HOLD              ((sal_Int16)20)// Button Play (long) pressed.
     298             : #define MEDIA_COMMAND_NEXTTRACK_HOLD         ((sal_Int16)21)// Button Right holding pressed.
     299             : #define MEDIA_COMMAND_PREVIOUSTRACK_HOLD     ((sal_Int16)22)// Button Left holding pressed.
     300             : 
     301             : 
     302             : // ------------------------------
     303             : // - CommandSelectionChangeData -
     304             : // ------------------------------
     305             : 
     306             : class VCL_DLLPUBLIC CommandSelectionChangeData
     307             : {
     308             : private:
     309             :     sal_uLong          mnStart;
     310             :     sal_uLong          mnEnd;
     311             : 
     312             : public:
     313             :     CommandSelectionChangeData();
     314             :     CommandSelectionChangeData( sal_uLong nStart, sal_uLong nEnd );
     315             : 
     316           0 :     sal_uLong          GetStart() const { return mnStart; }
     317           0 :     sal_uLong          GetEnd() const { return mnEnd; }
     318             : };
     319             : 
     320             : inline CommandSelectionChangeData::CommandSelectionChangeData()
     321             : {
     322             :     mnStart = mnEnd = 0;
     323             : }
     324             : 
     325           0 : inline CommandSelectionChangeData::CommandSelectionChangeData( sal_uLong nStart,
     326             :                                    sal_uLong nEnd )
     327             : {
     328           0 :     mnStart = nStart;
     329           0 :     mnEnd = nEnd;
     330           0 : }
     331             : 
     332             : // ----------------
     333             : // - CommandEvent -
     334             : // ----------------
     335             : 
     336             : #define COMMAND_CONTEXTMENU             ((sal_uInt16)1)
     337             : #define COMMAND_STARTDRAG               ((sal_uInt16)2)
     338             : #define COMMAND_WHEEL                   ((sal_uInt16)3)
     339             : #define COMMAND_STARTAUTOSCROLL         ((sal_uInt16)4)
     340             : #define COMMAND_AUTOSCROLL              ((sal_uInt16)5)
     341             : #define COMMAND_STARTEXTTEXTINPUT       ((sal_uInt16)7)
     342             : #define COMMAND_EXTTEXTINPUT            ((sal_uInt16)8)
     343             : #define COMMAND_ENDEXTTEXTINPUT         ((sal_uInt16)9)
     344             : #define COMMAND_INPUTCONTEXTCHANGE      ((sal_uInt16)10)
     345             : #define COMMAND_CURSORPOS               ((sal_uInt16)11)
     346             : #define COMMAND_PASTESELECTION          ((sal_uInt16)12)
     347             : #define COMMAND_MODKEYCHANGE            ((sal_uInt16)13)
     348             : #define COMMAND_HANGUL_HANJA_CONVERSION ((sal_uInt16)14)
     349             : #define COMMAND_INPUTLANGUAGECHANGE     ((sal_uInt16)15)
     350             : #define COMMAND_SHOWDIALOG              ((sal_uInt16)16)
     351             : #define COMMAND_MEDIA                   ((sal_uInt16)17)
     352             : #define COMMAND_SELECTIONCHANGE         ((sal_uInt16)18)
     353             : #define COMMAND_PREPARERECONVERSION     ((sal_uInt16)19)
     354             : #define COMMAND_QUERYCHARPOSITION       ((sal_uInt16)20)
     355             : 
     356             : 
     357             : class VCL_DLLPUBLIC CommandEvent
     358             : {
     359             : private:
     360             :     Point                               maPos;
     361             :     void*                               mpData;
     362             :     sal_uInt16                              mnCommand;
     363             :     sal_Bool                                mbMouseEvent;
     364             : 
     365             : public:
     366             :                                         CommandEvent();
     367             :                                         CommandEvent( const Point& rMousePos, sal_uInt16 nCmd,
     368             :                                                       sal_Bool bMEvt = sal_False, const void* pCmdData = NULL );
     369             : 
     370           0 :     sal_uInt16                              GetCommand() const { return mnCommand; }
     371           0 :     const Point&                        GetMousePosPixel() const { return maPos; }
     372           0 :     sal_Bool                                IsMouseEvent() const { return mbMouseEvent; }
     373           0 :     void*                               GetData() const { return mpData; }
     374             : 
     375             :     const CommandExtTextInputData*      GetExtTextInputData() const;
     376             :     const CommandInputContextData*      GetInputContextChangeData() const;
     377             :     const CommandWheelData*             GetWheelData() const;
     378             :     const CommandScrollData*            GetAutoScrollData() const;
     379             :     const CommandModKeyData*            GetModKeyData() const;
     380             :     const CommandDialogData*            GetDialogData() const;
     381             :     sal_Int16                           GetMediaCommand() const;
     382             :     const CommandSelectionChangeData*   GetSelectionChangeData() const;
     383             : };
     384             : 
     385           0 : inline CommandEvent::CommandEvent()
     386             : {
     387           0 :     mpData          = NULL;
     388           0 :     mnCommand       = 0;
     389           0 :     mbMouseEvent    = sal_False;
     390           0 : }
     391             : 
     392           0 : inline CommandEvent::CommandEvent( const Point& rMousePos,
     393             :                                    sal_uInt16 nCmd, sal_Bool bMEvt, const void* pCmdData ) :
     394           0 :             maPos( rMousePos )
     395             : {
     396           0 :     mpData          = (void*)pCmdData;
     397           0 :     mnCommand       = nCmd;
     398           0 :     mbMouseEvent    = bMEvt;
     399           0 : }
     400             : 
     401           0 : inline const CommandExtTextInputData* CommandEvent::GetExtTextInputData() const
     402             : {
     403           0 :     if ( mnCommand == COMMAND_EXTTEXTINPUT )
     404           0 :         return (const CommandExtTextInputData*)mpData;
     405             :     else
     406           0 :         return NULL;
     407             : }
     408             : 
     409             : inline const CommandInputContextData* CommandEvent::GetInputContextChangeData() const
     410             : {
     411             :     if ( mnCommand == COMMAND_INPUTCONTEXTCHANGE )
     412             :         return (const CommandInputContextData*)mpData;
     413             :     else
     414             :         return NULL;
     415             : }
     416             : 
     417           0 : inline const CommandWheelData* CommandEvent::GetWheelData() const
     418             : {
     419           0 :     if ( mnCommand == COMMAND_WHEEL )
     420           0 :         return (const CommandWheelData*)mpData;
     421             :     else
     422           0 :         return NULL;
     423             : }
     424             : 
     425           0 : inline const CommandScrollData* CommandEvent::GetAutoScrollData() const
     426             : {
     427           0 :     if ( mnCommand == COMMAND_AUTOSCROLL )
     428           0 :         return (const CommandScrollData*)mpData;
     429             :     else
     430           0 :         return NULL;
     431             : }
     432             : 
     433             : inline const CommandModKeyData* CommandEvent::GetModKeyData() const
     434             : {
     435             :     if( mnCommand == COMMAND_MODKEYCHANGE )
     436             :         return (const CommandModKeyData*)mpData;
     437             :     else
     438             :         return NULL;
     439             : }
     440             : 
     441           0 : inline const CommandDialogData* CommandEvent::GetDialogData() const
     442             : {
     443           0 :     if( mnCommand == COMMAND_SHOWDIALOG )
     444           0 :         return (const CommandDialogData*)mpData;
     445             :     else
     446           0 :         return NULL;
     447             : }
     448             : 
     449           0 : inline sal_Int16 CommandEvent::GetMediaCommand() const
     450             : {
     451           0 :     if( mnCommand == COMMAND_MEDIA )
     452           0 :         return *(const sal_Int16*)(mpData);
     453             :     else
     454           0 :         return 0;
     455             : }
     456             : 
     457           0 : inline const CommandSelectionChangeData* CommandEvent::GetSelectionChangeData() const
     458             : {
     459           0 :     if( mnCommand == COMMAND_SELECTIONCHANGE )
     460           0 :     return (const CommandSelectionChangeData*)mpData;
     461             :     else
     462           0 :     return NULL;
     463             : }
     464             : 
     465             : 
     466             : #endif // _VCL_CMDEVT_HXX
     467             : 
     468             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10