summaryrefslogtreecommitdiff
path: root/sc/sdi
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2013-11-03 12:15:23 +0100
committerTomaž Vajngerl <quikee@gmail.com>2013-11-11 23:22:31 +0100
commite08543cfb28e963995c95829aaf718c34f359356 (patch)
tree86be93e3dddc7521380c51e4138d1d9625442ec2 /sc/sdi
parentb3904220ef855d1cde6aae9e56b270b99405c494 (diff)
New statistics function: Exponential Smoothing
Add initial implementation of exponential smoothing. Change-Id: Id234aec6a0efece2ce8144f22359cf034256c40b
Diffstat (limited to 'sc/sdi')
-rw-r--r--sc/sdi/cellsh.sdi1
-rw-r--r--sc/sdi/scalc.sdi24
2 files changed, 25 insertions, 0 deletions
diff --git a/sc/sdi/cellsh.sdi b/sc/sdi/cellsh.sdi
index d9e189376236..46d9dff6166b 100644
--- a/sc/sdi/cellsh.sdi
+++ b/sc/sdi/cellsh.sdi
@@ -153,6 +153,7 @@ interface CellSelection
SID_ANALYSIS_OF_VARIANCE_DIALOG [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
SID_CORRELATION_DIALOG [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
SID_COVARIANCE_DIALOG [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
+ SID_EXPONENTIAL_SMOOTHING_DIALOG [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
SID_MARKDATAAREA [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
SID_MARKARRAYFORMULA [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
SID_SETINPUTMODE [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
diff --git a/sc/sdi/scalc.sdi b/sc/sdi/scalc.sdi
index 2f5024ae59dc..d5260bf8027e 100644
--- a/sc/sdi/scalc.sdi
+++ b/sc/sdi/scalc.sdi
@@ -3086,6 +3086,30 @@ SfxVoidItem CovarianceDialog SID_COVARIANCE_DIALOG
GroupId = GID_OPTIONS;
]
+SfxVoidItem ExponentialSmoothingDialog SID_EXPONENTIAL_SMOOTHING_DIALOG
+()
+[
+ /* flags: */
+ AutoUpdate = FALSE,
+ Cachable = Cachable,
+ FastCall = FALSE,
+ HasCoreId = FALSE,
+ HasDialog = TRUE,
+ ReadOnlyDoc = TRUE,
+ Toggle = FALSE,
+ Container = FALSE,
+ RecordAbsolute = FALSE,
+ RecordPerSet;
+ Synchron;
+
+ /* config: */
+ AccelConfig = TRUE,
+ MenuConfig = TRUE,
+ StatusBarConfig = FALSE,
+ ToolBoxConfig = TRUE,
+ GroupId = GID_OPTIONS;
+]
+
//--------------------------------------------------------------------------
SfxVoidItem SolverDialog SID_OPENDLG_OPTSOLVER
()