/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef SC_SHEETEVENTS_HXX #define SC_SHEETEVENTS_HXX #include #define SC_SHEETEVENT_FOCUS 0 #define SC_SHEETEVENT_UNFOCUS 1 #define SC_SHEETEVENT_SELECT 2 #define SC_SHEETEVENT_DOUBLECLICK 3 #define SC_SHEETEVENT_RIGHTCLICK 4 #define SC_SHEETEVENT_CHANGE 5 #define SC_SHEETEVENT_CALCULATE 6 #define SC_SHEETEVENT_COUNT 7 class ScSheetEvents { rtl::OUString** mpScriptNames; void Clear(); public: ScSheetEvents(); ScSheetEvents(const ScSheetEvents& rOther); ~ScSheetEvents(); const ScSheetEvents& operator= (const ScSheetEvents& rOther); const rtl::OUString* GetScript(sal_Int32 nEvent) const; void SetScript(sal_Int32 nEvent, const rtl::OUString* pNew); static rtl::OUString GetEventName(sal_Int32 nEvent); static sal_Int32 GetVbaSheetEventId(sal_Int32 nEvent); static sal_Int32 GetVbaDocumentEventId(sal_Int32 nEvent); }; #endif