1 /**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_sc.hxx"
26
27
28
29 //------------------------------------------------------------------
30 // INCLUDE ---------------------------------------------------------------
31
32 #include "scitems.hxx"
33 #include <svx/galbrws.hxx>
34 #include <svx/imapdlg.hxx>
35 #include <svl/srchitem.hxx>
36 #include <sfx2/templdlg.hxx>
37 #include <sfx2/objface.hxx>
38 #include <sfx2/viewfrm.hxx>
39 #include <sfx2/bindings.hxx>
40 #include <sfx2/app.hxx>
41 #include <sfx2/sidebar/SidebarChildWindow.hxx>
42 #include <avmedia/mediaplayer.hxx>
43
44 #include "cell.hxx"
45 #include "docoptio.hxx"
46
47 #include "tabvwsh.hxx"
48 #include "docsh.hxx"
49 #include "reffact.hxx"
50 #include "scresid.hxx"
51 #include "dwfunctr.hxx"
52 #include "sc.hrc" // -> SID_TOOL_xxx
53 #include "drawattr.hxx" // -> SvxDrawToolItem
54 #include "spelldialog.hxx"
55
56
57 #define ScTabViewShell
58 #include "scslots.hxx"
59
60 TYPEINIT2(ScTabViewShell,SfxViewShell,SfxListener);
61
SFX_IMPL_INTERFACE(ScTabViewShell,SfxViewShell,ScResId (SCSTR_TABVIEWSHELL))62 SFX_IMPL_INTERFACE(ScTabViewShell,SfxViewShell,ScResId(SCSTR_TABVIEWSHELL))
63 {
64 SFX_OBJECTBAR_REGISTRATION( SFX_OBJECTBAR_TOOLS | SFX_VISIBILITY_STANDARD |
65 SFX_VISIBILITY_FULLSCREEN | SFX_VISIBILITY_SERVER,
66 ScResId(RID_OBJECTBAR_TOOLS) );
67
68 SFX_CHILDWINDOW_REGISTRATION(FID_INPUTLINE_STATUS);
69 SFX_CHILDWINDOW_REGISTRATION(SfxTemplateDialogWrapper::GetChildWindowId());
70 SFX_CHILDWINDOW_CONTEXT_REGISTRATION(SID_NAVIGATOR);
71 SFX_CHILDWINDOW_REGISTRATION(::sfx2::sidebar::SidebarChildWindow::GetChildWindowId());
72 SFX_CHILDWINDOW_REGISTRATION(ScNameDlgWrapper::GetChildWindowId());
73 SFX_CHILDWINDOW_REGISTRATION(ScSolverDlgWrapper::GetChildWindowId());
74 SFX_CHILDWINDOW_REGISTRATION(ScOptSolverDlgWrapper::GetChildWindowId());
75 SFX_CHILDWINDOW_REGISTRATION(ScPivotLayoutWrapper::GetChildWindowId());
76 SFX_CHILDWINDOW_REGISTRATION(ScTabOpDlgWrapper::GetChildWindowId());
77 SFX_CHILDWINDOW_REGISTRATION(ScFilterDlgWrapper::GetChildWindowId());
78 SFX_CHILDWINDOW_REGISTRATION(ScSpecialFilterDlgWrapper::GetChildWindowId());
79 SFX_CHILDWINDOW_REGISTRATION(ScDbNameDlgWrapper::GetChildWindowId());
80 SFX_CHILDWINDOW_REGISTRATION(ScConsolidateDlgWrapper::GetChildWindowId());
81 SFX_CHILDWINDOW_REGISTRATION(ScPrintAreasDlgWrapper::GetChildWindowId());
82 SFX_CHILDWINDOW_REGISTRATION(ScCondFormatDlgWrapper::GetChildWindowId());
83 SFX_CHILDWINDOW_REGISTRATION(ScColRowNameRangesDlgWrapper::GetChildWindowId());
84 SFX_CHILDWINDOW_REGISTRATION(ScFormulaDlgWrapper::GetChildWindowId());
85 SFX_CHILDWINDOW_REGISTRATION(SvxIMapDlgChildWindow::GetChildWindowId());
86 SFX_CHILDWINDOW_REGISTRATION(ScFunctionChildWindow::GetChildWindowId());
87 SFX_CHILDWINDOW_REGISTRATION(ScFormulaDlgWrapper::GetChildWindowId());
88 SFX_CHILDWINDOW_REGISTRATION(ScAcceptChgDlgWrapper::GetChildWindowId());
89 SFX_CHILDWINDOW_REGISTRATION(ScHighlightChgDlgWrapper::GetChildWindowId());
90 SFX_CHILDWINDOW_REGISTRATION(ScSimpleRefDlgWrapper::GetChildWindowId());
91 SFX_CHILDWINDOW_REGISTRATION(SID_SEARCH_DLG);
92 SFX_CHILDWINDOW_REGISTRATION(SID_HYPERLINK_DIALOG);
93 SFX_CHILDWINDOW_REGISTRATION(GalleryChildWindow::GetChildWindowId());
94 SFX_CHILDWINDOW_REGISTRATION(ScSpellDialogChildWindow::GetChildWindowId());
95 SFX_CHILDWINDOW_REGISTRATION( ::avmedia::MediaPlayer::GetChildWindowId() );
96 SFX_CHILDWINDOW_REGISTRATION(ScValidityRefChildWin::GetChildWindowId());
97 }
98
99 SFX_IMPL_NAMED_VIEWFACTORY( ScTabViewShell, "Default" )
100 {
101 SFX_VIEW_REGISTRATION(ScDocShell);
102 }
103
104 //------------------------------------------------------------------
105
IMPL_LINK(ScTabViewShell,HtmlOptionsHdl,void *,EMPTYARG)106 IMPL_LINK( ScTabViewShell, HtmlOptionsHdl, void*, EMPTYARG )
107 {
108 // Invalidierung, falls blinkender Text erlaubt/verboten wurde
109 GetViewFrame()->GetBindings().Invalidate(SID_DRAW_TEXT_MARQUEE);
110 return 0;
111 }
112
GetFormula(ScAddress & rAddress)113 rtl::OUString ScTabViewShell::GetFormula(ScAddress& rAddress)
114 {
115 String sFormula;
116 ScDocument* pDoc = GetViewData()->GetDocument();
117 ScBaseCell* pCell = pDoc->GetCell(rAddress);
118 if (pCell && pCell->GetCellType()==CELLTYPE_FORMULA)
119 {
120 static_cast<ScFormulaCell*>(pCell)->GetFormula(sFormula);
121 }
122 return sFormula;
123 }
124
125
126
127