diff options
author | Kai Ahrens <ka@openoffice.org> | 2002-01-14 11:15:41 +0000 |
---|---|---|
committer | Kai Ahrens <ka@openoffice.org> | 2002-01-14 11:15:41 +0000 |
commit | de92d35b82b6b8255fee1e8e7857c92375918b65 (patch) | |
tree | 7b51d54766e8fcca560fbdbe50e7ee0b9816ccae /sd/source/ui/inc/tpaction.hxx | |
parent | e740193ddaa9110eca0fbed9ef411d9e3f1a40ce (diff) |
#96473#: remap verb id to list entry position
Diffstat (limited to 'sd/source/ui/inc/tpaction.hxx')
-rw-r--r-- | sd/source/ui/inc/tpaction.hxx | 79 |
1 files changed, 41 insertions, 38 deletions
diff --git a/sd/source/ui/inc/tpaction.hxx b/sd/source/ui/inc/tpaction.hxx index 201794748731..8aae7e716f77 100644 --- a/sd/source/ui/inc/tpaction.hxx +++ b/sd/source/ui/inc/tpaction.hxx @@ -2,9 +2,9 @@ * * $RCSfile: tpaction.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: ka $ $Date: 2001-10-23 11:54:26 $ + * last change: $Author: ka $ $Date: 2002-01-14 12:13:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -100,6 +100,8 @@ #include "sdtreelb.hxx" #include "anmdef.hxx" +#include <vector> + class SdView; class SdDrawDocument; @@ -128,42 +130,43 @@ public: class SdTPAction : public SfxTabPage { private: - FixedText aFtAction; // always visible - ListBox aLbAction; - - FixedLine aFlEffect; // fade controls - FixedText aFtAnimation; - ListBox aLbEffect; - FixedText aFtSpeed; - RadioButton aRbtSlow; - RadioButton aRbtMedium; - RadioButton aRbtFast; - - FixedText aFtTree; // jump destination controls - SdPageObjsTLB aLbTree; - SdPageObjsTLB aLbTreeDocument; - ListBox aLbOLEAction; - - FixedLine aFlSeparator; - TriStateBox aTsbSound; - Edit aEdtSound; - Edit aEdtBookmark; - Edit aEdtDocument; - Edit aEdtProgram; - Edit aEdtMacro; - PushButton aBtnSearch; - PushButton aBtnSeek; - TriStateBox aTsbPlayFull; - - const SfxItemSet& rOutAttrs; - const SdView* pView; - SdDrawDocument* pDoc; - XColorTable* pColTab; - - BOOL bTreeUpdated; - List* pCurrentEffects; - List* pCurrentActions; - String aLastFile; + FixedText aFtAction; // always visible + ListBox aLbAction; + + FixedLine aFlEffect; // fade controls + FixedText aFtAnimation; + ListBox aLbEffect; + FixedText aFtSpeed; + RadioButton aRbtSlow; + RadioButton aRbtMedium; + RadioButton aRbtFast; + + FixedText aFtTree; // jump destination controls + SdPageObjsTLB aLbTree; + SdPageObjsTLB aLbTreeDocument; + ListBox aLbOLEAction; + + FixedLine aFlSeparator; + TriStateBox aTsbSound; + Edit aEdtSound; + Edit aEdtBookmark; + Edit aEdtDocument; + Edit aEdtProgram; + Edit aEdtMacro; + PushButton aBtnSearch; + PushButton aBtnSeek; + TriStateBox aTsbPlayFull; + + const SfxItemSet& rOutAttrs; + const SdView* pView; + SdDrawDocument* pDoc; + XColorTable* pColTab; + + BOOL bTreeUpdated; + List* pCurrentEffects; + List* pCurrentActions; + String aLastFile; + ::std::vector< long > aVerbVector; //------------------------------------ |