summaryrefslogtreecommitdiff
path: root/sc/sdi
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2013-07-14 22:18:14 +0200
committerTomaž Vajngerl <quikee@gmail.com>2013-07-14 22:25:20 +0200
commit5c05b1cabcf7f6a7f490ae6fc4bc145e75229752 (patch)
tree5b6e09c12fd96156bff012769e767790680f10e4 /sc/sdi
parentbdb0619d6f28a2b0a9636077f576265d1305ca20 (diff)
fdo#66477 Random Number Generation added to menu>fill.
Added dialog for random number generation to fill menu into calc. Initial implementation has uniform, uniform integer, cauchy, bernoulli, binomial, negative binomial, chi squared and geometric distribution. Others can quickly be added. Change-Id: Id5c1f27462f1fe87eddedf415b9c149fb943404a
Diffstat (limited to 'sc/sdi')
-rw-r--r--sc/sdi/cellsh.sdi2
-rw-r--r--sc/sdi/scalc.sdi26
2 files changed, 27 insertions, 1 deletions
diff --git a/sc/sdi/cellsh.sdi b/sc/sdi/cellsh.sdi
index b889801354e0..683ddc840c48 100644
--- a/sc/sdi/cellsh.sdi
+++ b/sc/sdi/cellsh.sdi
@@ -147,6 +147,7 @@ interface CellSelection
FID_FILL_TAB [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
FID_FILL_SERIES [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
FID_FILL_AUTO [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
+ SID_OPENDLG_RANDOM_NUMBER_GENERATOR [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
SID_MARKDATAAREA [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
SID_MARKARRAYFORMULA [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
SID_SETINPUTMODE [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
@@ -434,4 +435,3 @@ shell ScCellShell : ScFormatShell
{
import Cell[Automation];
}
-
diff --git a/sc/sdi/scalc.sdi b/sc/sdi/scalc.sdi
index ddcf8d4e736f..9520604ed9fa 100644
--- a/sc/sdi/scalc.sdi
+++ b/sc/sdi/scalc.sdi
@@ -2942,6 +2942,32 @@ SfxVoidItem GoalSeekDialog SID_OPENDLG_SOLVE
GroupId = GID_OPTIONS;
]
+SfxVoidItem RandomNumberGeneratorDialog SID_OPENDLG_RANDOM_NUMBER_GENERATOR
+()
+[
+ /* 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
()