From edaa216847e59ad93b8b99e95f293f8bb04344cc Mon Sep 17 00:00:00 2001 From: "Ingrid Halama [iha]" Date: Tue, 30 Nov 2010 01:45:03 +0100 Subject: chart46: #i25706# implement date axis --- chart2/source/controller/dialogs/DataBrowser.hxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'chart2/source/controller/dialogs/DataBrowser.hxx') diff --git a/chart2/source/controller/dialogs/DataBrowser.hxx b/chart2/source/controller/dialogs/DataBrowser.hxx index 3583db2770c0..7a7cd120fb5f 100644 --- a/chart2/source/controller/dialogs/DataBrowser.hxx +++ b/chart2/source/controller/dialogs/DataBrowser.hxx @@ -113,6 +113,9 @@ public: // predicates to determine what actions are possible at the current cursor // position. This depends on the implementation of the according mutators // below. (They are used for enabling toolbar icons) + bool HasDateCategories() const; + bool MayToggleDateCategories() const; + bool MayInsertRow() const; bool MayInsertColumn() const; bool MayDeleteRow() const; @@ -131,6 +134,8 @@ public: using BrowseBox::RemoveColumn; using BrowseBox::MouseButtonDown; + void ToggleDateCategories(); + void SwapRow(); void SwapColumn(); -- cgit From dbf69a6612a5471d7ae23b1bf41afd1e9fec23a2 Mon Sep 17 00:00:00 2001 From: "Ingrid Halama [iha]" Date: Fri, 14 Jan 2011 18:11:00 +0100 Subject: chart46: #i25706# implement date axis - #i116467# change behaviour of own data table --- chart2/source/controller/dialogs/DataBrowser.hxx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'chart2/source/controller/dialogs/DataBrowser.hxx') diff --git a/chart2/source/controller/dialogs/DataBrowser.hxx b/chart2/source/controller/dialogs/DataBrowser.hxx index 7a7cd120fb5f..b5cd2a731f7b 100644 --- a/chart2/source/controller/dialogs/DataBrowser.hxx +++ b/chart2/source/controller/dialogs/DataBrowser.hxx @@ -93,6 +93,8 @@ public: */ double GetCellNumber( long nRow, USHORT nColumnId ) const; + bool isDateString( rtl::OUString aInputString, double& fOutDateValue ); + // Window virtual void Resize(); @@ -113,9 +115,6 @@ public: // predicates to determine what actions are possible at the current cursor // position. This depends on the implementation of the according mutators // below. (They are used for enabling toolbar icons) - bool HasDateCategories() const; - bool MayToggleDateCategories() const; - bool MayInsertRow() const; bool MayInsertColumn() const; bool MayDeleteRow() const; @@ -134,8 +133,6 @@ public: using BrowseBox::RemoveColumn; using BrowseBox::MouseButtonDown; - void ToggleDateCategories(); - void SwapRow(); void SwapColumn(); -- cgit