summaryrefslogtreecommitdiffstats
path: root/chart2/source/controller/dialogs/tp_DataLabel.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-07-25 07:36:44 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-07-25 07:36:44 +0000
commite48525e9717795765e845d187636540c5fa5b9b8 (patch)
treee3f3f2f302e9682846e6b3c5fd4feddc885def3f /chart2/source/controller/dialogs/tp_DataLabel.hxx
parentINTEGRATION: CWS chart07 (1.7.12); FILE MERGED (diff)
downloadcore-e48525e9717795765e845d187636540c5fa5b9b8.tar.gz
core-e48525e9717795765e845d187636540c5fa5b9b8.zip
INTEGRATION: CWS chart07 (1.3.136); FILE MERGED
2007/07/13 11:16:41 iha 1.3.136.1: cleanup data label controls (one implementation only)
Diffstat (limited to 'chart2/source/controller/dialogs/tp_DataLabel.hxx')
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.hxx31
1 files changed, 16 insertions, 15 deletions
diff --git a/chart2/source/controller/dialogs/tp_DataLabel.hxx b/chart2/source/controller/dialogs/tp_DataLabel.hxx
index eaae640be2b8..23352a7ddcd4 100644
--- a/chart2/source/controller/dialogs/tp_DataLabel.hxx
+++ b/chart2/source/controller/dialogs/tp_DataLabel.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tp_DataLabel.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 00:14:37 $
+ * last change: $Author: rt $ $Date: 2007-07-25 08:36:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -35,10 +35,14 @@
#ifndef _CHART2_TP_DATALABEL_HXX
#define _CHART2_TP_DATALABEL_HXX
+#include "res_DataLabel.hxx"
+
#ifndef _SFXTABDLG_HXX
#include <sfx2/tabdlg.hxx>
#endif
+class SvNumberFormatter;
+
//.............................................................................
namespace chart
{
@@ -48,24 +52,21 @@ namespace chart
/**
*/
-class SchDataDescrTabPage : public SfxTabPage
+class DataLabelsTabPage : public SfxTabPage
{
-private:
- CheckBox aCbValue;
- RadioButton aRbNumber;
- RadioButton aRbPercent;
- CheckBox aCbText;
- CheckBox aCbSymbol;
-
- DECL_LINK(EnableHdl, CheckBox * );
-
public:
- SchDataDescrTabPage(Window* pParent, const SfxItemSet& rInAttrs);
- virtual ~SchDataDescrTabPage();
+ DataLabelsTabPage(Window* pParent, const SfxItemSet& rInAttrs);
+ virtual ~DataLabelsTabPage();
static SfxTabPage* Create(Window* pParent, const SfxItemSet& rInAttrs);
- virtual BOOL FillItemSet(SfxItemSet& rOutAttrs);
+
+ void SetNumberFormatter( SvNumberFormatter* pFormatter );
+
virtual void Reset(const SfxItemSet& rInAttrs);
+ virtual BOOL FillItemSet(SfxItemSet& rOutAttrs);
+
+private:
+ DataLabelResources m_aDataLabelResources;
};
//.............................................................................