LCOV - code coverage report
Current view: top level - sfx2/source/sidebar - TitleBar.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 59 74 79.7 %
Date: 2014-11-03 Functions: 11 16 68.8 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "TitleBar.hxx"
      21             : #include "Paint.hxx"
      22             : #include "Accessible.hxx"
      23             : #include "AccessibleTitleBar.hxx"
      24             : 
      25             : #include <tools/svborder.hxx>
      26             : #include <vcl/gradient.hxx>
      27             : #include <vcl/lineinfo.hxx>
      28             : 
      29             : #include <com/sun/star/accessibility/AccessibleRole.hpp>
      30             : 
      31             : 
      32             : namespace
      33             : {
      34             :     const static sal_Int32 gnLeftIconSpace (3);
      35             :     const static sal_Int32 gnRightIconSpace (3);
      36             : }
      37             : 
      38             : namespace sfx2 { namespace sidebar {
      39             : 
      40       11652 : TitleBar::TitleBar (
      41             :     const ::rtl::OUString& rsTitle,
      42             :     vcl::Window* pParentWindow,
      43             :     const sidebar::Paint& rInitialBackgroundPaint)
      44             :     : Window(pParentWindow),
      45             :       maToolBox(this),
      46             :       msTitle(rsTitle),
      47       11652 :       maIcon()
      48             : {
      49       11652 :     SetBackground(rInitialBackgroundPaint.GetWallpaper());
      50             : 
      51       11652 :     maToolBox.SetSelectHdl(LINK(this, TitleBar, SelectionHandler));
      52       11652 : }
      53             : 
      54             : 
      55             : 
      56             : 
      57       11652 : TitleBar::~TitleBar (void)
      58             : {
      59       11652 : }
      60             : 
      61             : 
      62             : 
      63             : 
      64           0 : void TitleBar::SetTitle (const ::rtl::OUString& rsTitle)
      65             : {
      66           0 :     msTitle = rsTitle;
      67           0 :     Invalidate();
      68           0 : }
      69             : 
      70             : 
      71             : 
      72             : 
      73       11466 : void TitleBar::SetIcon (const Image& rIcon)
      74             : {
      75       11466 :     maIcon = rIcon;
      76       11466 :     Invalidate();
      77       11466 : }
      78             : 
      79             : 
      80             : 
      81             : 
      82       14006 : void TitleBar::Paint (const Rectangle& rUpdateArea)
      83             : {
      84             :     (void)rUpdateArea;
      85             : 
      86             :     // Paint title bar background.
      87       14006 :     Size aWindowSize (GetOutputSizePixel());
      88             :     Rectangle aTitleBarBox(
      89             :         0,
      90             :         0,
      91       14006 :         aWindowSize.Width(),
      92       14006 :         aWindowSize.Height()
      93       28012 :         );
      94             : 
      95       14006 :     PaintDecoration(aTitleBarBox);
      96       14006 :     const Rectangle aTitleBox (GetTitleArea(aTitleBarBox));
      97       14006 :     PaintTitle(aTitleBox);
      98       14006 :     PaintFocus(aTitleBox);
      99       14006 : }
     100             : 
     101             : 
     102             : 
     103             : 
     104           4 : void TitleBar::DataChanged (const DataChangedEvent& rEvent)
     105             : {
     106             :     (void)rEvent;
     107             : 
     108           4 :     SetBackground(GetBackgroundPaint().GetWallpaper());
     109           4 : }
     110             : 
     111             : 
     112             : 
     113             : 
     114       27557 : void TitleBar::setPosSizePixel (
     115             :     long nX,
     116             :     long nY,
     117             :     long nWidth,
     118             :     long nHeight,
     119             :     sal_uInt16 nFlags)
     120             : {
     121       27557 :     Window::setPosSizePixel(nX,nY,nWidth,nHeight,nFlags);
     122             : 
     123             :     // Place the toolbox.
     124       27557 :     const sal_Int32 nToolBoxWidth (maToolBox.GetItemPosRect(0).GetWidth());
     125       27557 :     maToolBox.setPosSizePixel(nWidth-nToolBoxWidth,0, nToolBoxWidth,nHeight, WINDOW_POSSIZE_POSSIZE);
     126       27557 :     maToolBox.Show();
     127       27557 : }
     128             : 
     129             : 
     130             : 
     131             : 
     132             : 
     133             : 
     134             : 
     135             : 
     136             : 
     137             : 
     138             : 
     139             : 
     140           0 : void TitleBar::HandleToolBoxItemClick (const sal_uInt16 nItemIndex)
     141             : {
     142             :     (void)nItemIndex;
     143             :     // Any real processing has to be done in derived class.
     144           0 : }
     145             : 
     146             : 
     147             : 
     148             : 
     149          12 : css::uno::Reference<css::accessibility::XAccessible> TitleBar::CreateAccessible (void)
     150             : {
     151          12 :     SetAccessibleRole(css::accessibility::AccessibleRole::PANEL);
     152          12 :     return AccessibleTitleBar::Create(*this);
     153             : }
     154             : 
     155             : 
     156             : 
     157             : 
     158       14006 : void TitleBar::PaintTitle (const Rectangle& rTitleBox)
     159             : {
     160       14006 :     Push(PushFlags::FONT | PushFlags::TEXTCOLOR);
     161             : 
     162       14006 :     Rectangle aTitleBox (rTitleBox);
     163             : 
     164             :     // When there is an icon then paint it at the left of the given
     165             :     // box.
     166       14006 :     if ( !! maIcon)
     167             :     {
     168             :         DrawImage(
     169             :             Point(
     170           0 :                 aTitleBox.Left() + gnLeftIconSpace,
     171           0 :                 aTitleBox.Top() + (aTitleBox.GetHeight()-maIcon.GetSizePixel().Height())/2),
     172           0 :             maIcon);
     173           0 :         aTitleBox.Left() += gnLeftIconSpace + maIcon.GetSizePixel().Width() + gnRightIconSpace;
     174             :     }
     175             : 
     176       14006 :     vcl::Font aFont(GetFont());
     177       14006 :     aFont.SetWeight(WEIGHT_BOLD);
     178       14006 :     SetFont(aFont);
     179             : 
     180             :     // Paint title bar text.
     181       14006 :     SetTextColor(GetTextColor());
     182             :     DrawText(
     183             :         aTitleBox,
     184             :         msTitle,
     185       14006 :         TEXT_DRAW_LEFT | TEXT_DRAW_VCENTER);
     186             : 
     187       14006 :     Pop();
     188       14006 : }
     189             : 
     190             : 
     191             : 
     192             : 
     193       14006 : void TitleBar::PaintFocus (const Rectangle& rFocusBox)
     194             : {
     195       14006 :     Push(PushFlags::FONT | PushFlags::TEXTCOLOR);
     196             : 
     197       14006 :     vcl::Font aFont(GetFont());
     198       14006 :     aFont.SetWeight(WEIGHT_BOLD);
     199       14006 :     SetFont(aFont);
     200             : 
     201             :     const Rectangle aTextBox (
     202             :         GetTextRect(
     203             :             rFocusBox,
     204             :             msTitle,
     205       14006 :             TEXT_DRAW_LEFT | TEXT_DRAW_VCENTER));
     206             :     const Rectangle aLargerTextBox (
     207       14006 :         aTextBox.Left() - 2,
     208       14006 :         aTextBox.Top() - 2,
     209       14006 :         aTextBox.Right() + 2,
     210       56024 :         aTextBox.Bottom() + 2);
     211             : 
     212       14006 :     if (HasFocus())
     213           0 :         Window::ShowFocus(aLargerTextBox);
     214             :     else
     215       14006 :         Window::HideFocus();
     216             : 
     217       14006 :     Pop();
     218       14006 : }
     219             : 
     220             : 
     221             : 
     222             : 
     223           0 : IMPL_LINK(TitleBar, SelectionHandler, ToolBox*, pToolBox)
     224             : {
     225             :     (void)pToolBox;
     226             :     OSL_ASSERT(&maToolBox==pToolBox);
     227           0 :     const sal_uInt16 nItemId (maToolBox.GetHighlightItemId());
     228             : 
     229           0 :     HandleToolBoxItemClick(nItemId);
     230             : 
     231           0 :     return sal_True;
     232             : }
     233             : 
     234         951 : } } // end of namespace sfx2::sidebar
     235             : 
     236             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10