summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sd/source/ui/dlg/animobjs.cxx2
-rw-r--r--sd/source/ui/dlg/animobjs.src6
-rw-r--r--sd/source/ui/inc/animobjs.hrc1
-rw-r--r--sd/source/ui/inc/animobjs.hxx3
4 files changed, 12 insertions, 0 deletions
diff --git a/sd/source/ui/dlg/animobjs.cxx b/sd/source/ui/dlg/animobjs.cxx
index 0c26014e25ee..870a90231de2 100644
--- a/sd/source/ui/dlg/animobjs.cxx
+++ b/sd/source/ui/dlg/animobjs.cxx
@@ -152,6 +152,8 @@ AnimationWindow::AnimationWindow( SfxBindings* pInBindings,
aFtAdjustment ( this, SdResId( FT_ADJUSTMENT ) ),
aLbAdjustment ( this, SdResId( LB_ADJUSTMENT ) ),
aBtnCreateGroup ( this, SdResId( BTN_CREATE_GROUP ) ),
+ aBtnHelp ( this, SdResId( BTN_HELP ) ),
+
pWin ( pParent ),
m_nCurrentFrame ( EMPTY_FRAMELIST ),
diff --git a/sd/source/ui/dlg/animobjs.src b/sd/source/ui/dlg/animobjs.src
index ebefb835ca76..f955d3bce253 100644
--- a/sd/source/ui/dlg/animobjs.src
+++ b/sd/source/ui/dlg/animobjs.src
@@ -298,6 +298,12 @@ DockingWindow FLT_WIN_ANIMATION
TabStop = TRUE ;
Text [ en-US ] = "Create" ;
};
+ HelpButton BTN_HELP
+ {
+ Pos = MAP_APPFONT ( 60 , 216 ) ;
+ Size = MAP_APPFONT ( 41 , 14 ) ;
+ TabStop = TRUE ;
+ };
FixedLine GRP_ANIMATION_GROUP
{
Pos = MAP_APPFONT ( 6 , 155 ) ;
diff --git a/sd/source/ui/inc/animobjs.hrc b/sd/source/ui/inc/animobjs.hrc
index 3975e28e646a..b39dfbf85754 100644
--- a/sd/source/ui/inc/animobjs.hrc
+++ b/sd/source/ui/inc/animobjs.hrc
@@ -27,6 +27,7 @@
#define BTN_REMOVE_BITMAP 8
#define BTN_REMOVE_ALL 9
#define BTN_CREATE_GROUP 10
+#define BTN_HELP 1
#define NUM_FLD_BITMAP 1
#define TIME_FIELD 1
#define FT_COUNT 1
diff --git a/sd/source/ui/inc/animobjs.hxx b/sd/source/ui/inc/animobjs.hxx
index 1b7d36c06ad4..0d5271c0baf6 100644
--- a/sd/source/ui/inc/animobjs.hxx
+++ b/sd/source/ui/inc/animobjs.hxx
@@ -127,6 +127,9 @@ private:
ListBox aLbAdjustment;
PushButton aBtnCreateGroup;
+ HelpButton aBtnHelp;
+
+
::Window* pWin;
::std::vector< ::std::pair<BitmapEx*, Time*> > m_FrameList;
static const size_t EMPTY_FRAMELIST = ULONG_MAX;