From 73fd3185793f9c2ec0c5c4b6967c89bd82ec070f Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Fri, 5 Nov 2010 14:30:55 +0100 Subject: Adds extra credits item to help menu As agreed on yesterday, we want a dedicated credits document displayed from the help menu. This is the UI/code change for that, actual credits doc still missing. (cherry picked from commit 00d6d03478bc8ddb3ebd07ff47f54c9668c242d9) --- sfx2/sdi/appslots.sdi | 4 ++++ sfx2/sdi/sfx.sdi | 25 +++++++++++++++++++++++++ 2 files changed, 29 insertions(+) (limited to 'sfx2/sdi') diff --git a/sfx2/sdi/appslots.sdi b/sfx2/sdi/appslots.sdi index e08b093f6948..3bd2bc8b1e02 100644 --- a/sfx2/sdi/appslots.sdi +++ b/sfx2/sdi/appslots.sdi @@ -171,6 +171,10 @@ interface Application [ ExecMethod = MiscExec_Impl ; ] + SID_SHOW_CREDITS + [ + ExecMethod = MiscExec_Impl ; + ] SID_RECENTFILELIST [ ] diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi index 050be70a5881..e49a178f3823 100755 --- a/sfx2/sdi/sfx.sdi +++ b/sfx2/sdi/sfx.sdi @@ -7390,6 +7390,31 @@ SfxVoidItem ShowLicense SID_SHOW_LICENSE GroupId = GID_APPLICATION; ] +//-------------------------------------------------------------------------- +SfxVoidItem ShowCredits SID_SHOW_CREDITS +() +[ + /* flags: */ + AutoUpdate = FALSE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_APPLICATION; +] + //-------------------------------------------------------------------------- SfxVoidItem HelpTutorials SID_HELP_TUTORIALS () -- cgit