122de8995SAndre Fischer /**************************************************************
222de8995SAndre Fischer  *
322de8995SAndre Fischer  * Licensed to the Apache Software Foundation (ASF) under one
422de8995SAndre Fischer  * or more contributor license agreements.  See the NOTICE file
522de8995SAndre Fischer  * distributed with this work for additional information
622de8995SAndre Fischer  * regarding copyright ownership.  The ASF licenses this file
722de8995SAndre Fischer  * to you under the Apache License, Version 2.0 (the
822de8995SAndre Fischer  * "License"); you may not use this file except in compliance
922de8995SAndre Fischer  * with the License.  You may obtain a copy of the License at
1022de8995SAndre Fischer  *
1122de8995SAndre Fischer  *   http://www.apache.org/licenses/LICENSE-2.0
1222de8995SAndre Fischer  *
1322de8995SAndre Fischer  * Unless required by applicable law or agreed to in writing,
1422de8995SAndre Fischer  * software distributed under the License is distributed on an
1522de8995SAndre Fischer  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1622de8995SAndre Fischer  * KIND, either express or implied.  See the License for the
1722de8995SAndre Fischer  * specific language governing permissions and limitations
1822de8995SAndre Fischer  * under the License.
1922de8995SAndre Fischer  *
2022de8995SAndre Fischer  *************************************************************/
2122de8995SAndre Fischer 
2222de8995SAndre Fischer #include "precompiled_sfx2.hxx"
2322de8995SAndre Fischer 
2422de8995SAndre Fischer #include "SidebarDockingWindow.hxx"
257a32b0c8SAndre Fischer #include "sfx2/sidebar/SidebarChildWindow.hxx"
2622de8995SAndre Fischer #include "SidebarController.hxx"
2722de8995SAndre Fischer 
2822de8995SAndre Fischer #include "sfx2/bindings.hxx"
2922de8995SAndre Fischer #include "sfx2/dispatch.hxx"
3022de8995SAndre Fischer #include <tools/link.hxx>
3122de8995SAndre Fischer 
3222de8995SAndre Fischer using namespace css;
3322de8995SAndre Fischer using namespace cssu;
3422de8995SAndre Fischer 
3522de8995SAndre Fischer 
367a32b0c8SAndre Fischer namespace sfx2 { namespace sidebar {
3722de8995SAndre Fischer 
3822de8995SAndre Fischer 
3922de8995SAndre Fischer SidebarDockingWindow::SidebarDockingWindow(
4013e1c3b4SAndre Fischer     SfxBindings* pSfxBindings,
4122de8995SAndre Fischer     SidebarChildWindow& rChildWindow,
4213e1c3b4SAndre Fischer     Window* pParentWindow,
4322de8995SAndre Fischer     WinBits nBits)
4413e1c3b4SAndre Fischer     : SfxDockingWindow(pSfxBindings, &rChildWindow, pParentWindow, nBits),
4522de8995SAndre Fischer       mpSidebarController()
4622de8995SAndre Fischer {
4722de8995SAndre Fischer     // Get the XFrame from the bindings.
4813e1c3b4SAndre Fischer     if (pSfxBindings==NULL || pSfxBindings->GetDispatcher()==NULL)
4922de8995SAndre Fischer     {
5013e1c3b4SAndre Fischer         OSL_ASSERT(pSfxBindings!=NULL);
5113e1c3b4SAndre Fischer         OSL_ASSERT(pSfxBindings->GetDispatcher()!=NULL);
5222de8995SAndre Fischer     }
5322de8995SAndre Fischer     else
5422de8995SAndre Fischer     {
5513e1c3b4SAndre Fischer         const SfxViewFrame* pViewFrame = pSfxBindings->GetDispatcher()->GetFrame();
5622de8995SAndre Fischer         const SfxFrame& rFrame = pViewFrame->GetFrame();
57ff12d537SAndre Fischer         mpSidebarController.set(new sfx2::sidebar::SidebarController(this, rFrame.GetFrameInterface()));
5822de8995SAndre Fischer     }
5922de8995SAndre Fischer }
6022de8995SAndre Fischer 
6122de8995SAndre Fischer 
6222de8995SAndre Fischer 
6322de8995SAndre Fischer 
6422de8995SAndre Fischer SidebarDockingWindow::~SidebarDockingWindow (void)
6522de8995SAndre Fischer {
6622de8995SAndre Fischer     DoDispose();
6722de8995SAndre Fischer }
6822de8995SAndre Fischer 
6922de8995SAndre Fischer 
7022de8995SAndre Fischer 
7122de8995SAndre Fischer 
7222de8995SAndre Fischer void SidebarDockingWindow::DoDispose (void)
7322de8995SAndre Fischer {
7422de8995SAndre Fischer }
7522de8995SAndre Fischer 
7622de8995SAndre Fischer 
7722de8995SAndre Fischer 
7822de8995SAndre Fischer 
7922de8995SAndre Fischer void SidebarDockingWindow::GetFocus()
8022de8995SAndre Fischer {
8165908a7eSAndre Fischer     mpSidebarController->GetFocusManager().GrabFocus();
8265908a7eSAndre Fischer }
8365908a7eSAndre Fischer 
8465908a7eSAndre Fischer 
8565908a7eSAndre Fischer 
8665908a7eSAndre Fischer 
877a32b0c8SAndre Fischer SfxChildWindow* SidebarDockingWindow::GetChildWindow (void)
887a32b0c8SAndre Fischer {
897a32b0c8SAndre Fischer     return GetChildWindow_Impl();
907a32b0c8SAndre Fischer }
917a32b0c8SAndre Fischer 
927a32b0c8SAndre Fischer 
937a32b0c8SAndre Fischer 
947a32b0c8SAndre Fischer 
957a32b0c8SAndre Fischer sal_Bool SidebarDockingWindow::Close (void)
967a32b0c8SAndre Fischer {
977a32b0c8SAndre Fischer     if (mpSidebarController.is())
987a32b0c8SAndre Fischer     {
997a32b0c8SAndre Fischer         // Do not close the floating window.
1007a32b0c8SAndre Fischer         // Dock it and close just the deck instead.
1017a32b0c8SAndre Fischer         SetFloatingMode(sal_False);
102*bae763b6SAndre Fischer         mpSidebarController->RequestCloseDeck();
1037a32b0c8SAndre Fischer         mpSidebarController->NotifyResize();
1047a32b0c8SAndre Fischer         return sal_False;
1057a32b0c8SAndre Fischer     }
1067a32b0c8SAndre Fischer     else
1077a32b0c8SAndre Fischer         return SfxDockingWindow::Close();
1087a32b0c8SAndre Fischer }
1097a32b0c8SAndre Fischer 
1107a32b0c8SAndre Fischer 
1116fa16b61SAndre Fischer 
1126fa16b61SAndre Fischer 
1136fa16b61SAndre Fischer SfxChildAlignment SidebarDockingWindow::CheckAlignment (
1146fa16b61SAndre Fischer     SfxChildAlignment eCurrentAlignment,
1156fa16b61SAndre Fischer     SfxChildAlignment eRequestedAlignment)
1166fa16b61SAndre Fischer {
1176fa16b61SAndre Fischer     switch (eRequestedAlignment)
1186fa16b61SAndre Fischer     {
1196fa16b61SAndre Fischer         case SFX_ALIGN_TOP:
1206fa16b61SAndre Fischer         case SFX_ALIGN_HIGHESTTOP:
1216fa16b61SAndre Fischer         case SFX_ALIGN_LOWESTTOP:
1226fa16b61SAndre Fischer         case SFX_ALIGN_BOTTOM:
1236fa16b61SAndre Fischer         case SFX_ALIGN_LOWESTBOTTOM:
1246fa16b61SAndre Fischer         case SFX_ALIGN_HIGHESTBOTTOM:
1256fa16b61SAndre Fischer             return eCurrentAlignment;
1266fa16b61SAndre Fischer 
1276fa16b61SAndre Fischer         case SFX_ALIGN_LEFT:
1286fa16b61SAndre Fischer         case SFX_ALIGN_RIGHT:
1296fa16b61SAndre Fischer         case SFX_ALIGN_FIRSTLEFT:
1306fa16b61SAndre Fischer         case SFX_ALIGN_LASTLEFT:
1316fa16b61SAndre Fischer         case SFX_ALIGN_FIRSTRIGHT:
1326fa16b61SAndre Fischer         case SFX_ALIGN_LASTRIGHT:
1336fa16b61SAndre Fischer             return eRequestedAlignment;
1346fa16b61SAndre Fischer 
1356fa16b61SAndre Fischer         default:
1366fa16b61SAndre Fischer             return eRequestedAlignment;
1376fa16b61SAndre Fischer     }
1386fa16b61SAndre Fischer }
1396fa16b61SAndre Fischer 
1406fa16b61SAndre Fischer 
1417a32b0c8SAndre Fischer } } // end of namespace sfx2::sidebar
142