1*02c50d82SAndre Fischer /************************************************************** 2*02c50d82SAndre Fischer * 3*02c50d82SAndre Fischer * Licensed to the Apache Software Foundation (ASF) under one 4*02c50d82SAndre Fischer * or more contributor license agreements. See the NOTICE file 5*02c50d82SAndre Fischer * distributed with this work for additional information 6*02c50d82SAndre Fischer * regarding copyright ownership. The ASF licenses this file 7*02c50d82SAndre Fischer * to you under the Apache License, Version 2.0 (the 8*02c50d82SAndre Fischer * "License"); you may not use this file except in compliance 9*02c50d82SAndre Fischer * with the License. You may obtain a copy of the License at 10*02c50d82SAndre Fischer * 11*02c50d82SAndre Fischer * http://www.apache.org/licenses/LICENSE-2.0 12*02c50d82SAndre Fischer * 13*02c50d82SAndre Fischer * Unless required by applicable law or agreed to in writing, 14*02c50d82SAndre Fischer * software distributed under the License is distributed on an 15*02c50d82SAndre Fischer * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*02c50d82SAndre Fischer * KIND, either express or implied. See the License for the 17*02c50d82SAndre Fischer * specific language governing permissions and limitations 18*02c50d82SAndre Fischer * under the License. 19*02c50d82SAndre Fischer * 20*02c50d82SAndre Fischer *************************************************************/ 21*02c50d82SAndre Fischer 22*02c50d82SAndre Fischer #ifndef SD_SIDEBAR_PANELS_PREVIEW_VALUE_SET_HXX 23*02c50d82SAndre Fischer #define SD_SIDEBAR_PANELS_PREVIEW_VALUE_SET_HXX 24*02c50d82SAndre Fischer 25*02c50d82SAndre Fischer #include <svtools/valueset.hxx> 26*02c50d82SAndre Fischer 27*02c50d82SAndre Fischer 28*02c50d82SAndre Fischer namespace sd { namespace sidebar { 29*02c50d82SAndre Fischer 30*02c50d82SAndre Fischer 31*02c50d82SAndre Fischer /** Adapt the svtools valueset to the needs of the master page controlls. 32*02c50d82SAndre Fischer */ 33*02c50d82SAndre Fischer class PreviewValueSet 34*02c50d82SAndre Fischer : public ValueSet 35*02c50d82SAndre Fischer { 36*02c50d82SAndre Fischer public: 37*02c50d82SAndre Fischer PreviewValueSet (::Window* pParent); 38*02c50d82SAndre Fischer ~PreviewValueSet (void); 39*02c50d82SAndre Fischer 40*02c50d82SAndre Fischer void SetRightMouseClickHandler (const Link& rLink); 41*02c50d82SAndre Fischer virtual void Resize (void); 42*02c50d82SAndre Fischer 43*02c50d82SAndre Fischer void SetPreviewSize (const Size& rSize); 44*02c50d82SAndre Fischer 45*02c50d82SAndre Fischer sal_Int32 GetPreferredWidth (sal_Int32 nHeight); 46*02c50d82SAndre Fischer sal_Int32 GetPreferredHeight (sal_Int32 nWidth); 47*02c50d82SAndre Fischer 48*02c50d82SAndre Fischer /** Set the number of rows and columns according to the current number 49*02c50d82SAndre Fischer of items. Call this method when new items have been inserted. 50*02c50d82SAndre Fischer */ 51*02c50d82SAndre Fischer void Rearrange (bool bForceRequestResize = false); 52*02c50d82SAndre Fischer 53*02c50d82SAndre Fischer protected: 54*02c50d82SAndre Fischer virtual void MouseButtonDown (const MouseEvent& rEvent); 55*02c50d82SAndre Fischer 56*02c50d82SAndre Fischer private: 57*02c50d82SAndre Fischer Link maRightMouseClickHandler; 58*02c50d82SAndre Fischer Size maPreviewSize; 59*02c50d82SAndre Fischer const int mnBorderWidth; 60*02c50d82SAndre Fischer const int mnBorderHeight; 61*02c50d82SAndre Fischer const int mnMaxColumnCount; 62*02c50d82SAndre Fischer 63*02c50d82SAndre Fischer sal_uInt16 CalculateColumnCount (int nWidth) const; 64*02c50d82SAndre Fischer sal_uInt16 CalculateRowCount (sal_uInt16 nColumnCount) const; 65*02c50d82SAndre Fischer }; 66*02c50d82SAndre Fischer 67*02c50d82SAndre Fischer } } // end of namespace sd::sidebar 68*02c50d82SAndre Fischer 69*02c50d82SAndre Fischer #endif 70