13334a7e6SAndrew Rist /************************************************************** 2*adac7096Smseidel * 33334a7e6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 43334a7e6SAndrew Rist * or more contributor license agreements. See the NOTICE file 53334a7e6SAndrew Rist * distributed with this work for additional information 63334a7e6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 73334a7e6SAndrew Rist * to you under the Apache License, Version 2.0 (the 83334a7e6SAndrew Rist * "License"); you may not use this file except in compliance 93334a7e6SAndrew Rist * with the License. You may obtain a copy of the License at 10*adac7096Smseidel * 113334a7e6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*adac7096Smseidel * 133334a7e6SAndrew Rist * Unless required by applicable law or agreed to in writing, 143334a7e6SAndrew Rist * software distributed under the License is distributed on an 153334a7e6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 163334a7e6SAndrew Rist * KIND, either express or implied. See the License for the 173334a7e6SAndrew Rist * specific language governing permissions and limitations 183334a7e6SAndrew Rist * under the License. 19*adac7096Smseidel * 203334a7e6SAndrew Rist *************************************************************/ 213334a7e6SAndrew Rist 223334a7e6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _ZOOMSLIDER_STBCONTRL_HXX 25cdf0e10cSrcweir #define _ZOOMSLIDER_STBCONTRL_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir // include --------------------------------------------------------------- 28cdf0e10cSrcweir 29cdf0e10cSrcweir #include <sfx2/stbitem.hxx> 30cdf0e10cSrcweir #include "svx/svxdllapi.h" 31cdf0e10cSrcweir 32cdf0e10cSrcweir // class SvxZoomSliderControl ---------------------------------------- 33cdf0e10cSrcweir 34cdf0e10cSrcweir class SVX_DLLPUBLIC SvxZoomSliderControl : public SfxStatusBarControl 35cdf0e10cSrcweir { 36cdf0e10cSrcweir private: 37cdf0e10cSrcweir 38*adac7096Smseidel struct SvxZoomSliderControl_Impl; 39*adac7096Smseidel SvxZoomSliderControl_Impl* mpImpl; 40cdf0e10cSrcweir 41*adac7096Smseidel sal_uInt16 Offset2Zoom( long nOffset ) const; 42*adac7096Smseidel long Zoom2Offset( sal_uInt16 nZoom ) const; 43cdf0e10cSrcweir 44cdf0e10cSrcweir public: 45cdf0e10cSrcweir 46cdf0e10cSrcweir SFX_DECL_STATUSBAR_CONTROL(); 47cdf0e10cSrcweir 48*adac7096Smseidel SvxZoomSliderControl( sal_uInt16 _nSlotId, sal_uInt16 _nId, StatusBar& _rStb ); 49*adac7096Smseidel ~SvxZoomSliderControl(); 50cdf0e10cSrcweir 51*adac7096Smseidel virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ); 52*adac7096Smseidel virtual void Paint( const UserDrawEvent& rEvt ); 53*adac7096Smseidel virtual sal_Bool MouseButtonDown( const MouseEvent & ); 54*adac7096Smseidel virtual sal_Bool MouseMove( const MouseEvent & rEvt ); 55cdf0e10cSrcweir }; 56cdf0e10cSrcweir 57cdf0e10cSrcweir #endif 58cdf0e10cSrcweir 59*adac7096Smseidel /* vim: set noet sw=4 ts=4: */ 60