Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/LibreOffice/cui/source/dialogs/   (LibreOffice Version 25.8.3.2©)  Datei vom 5.10.2025 mit Größe 3 kB image not shown  

Quelle  whatsnewtabpage.cxx

  Sprache: C
 

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */


#include <whatsnewtabpage.hxx>

#include <config_folders.h>
#include <rtl/bootstrap.hxx>
#include <sfx2/app.hxx>
#include <sfx2/sfxresid.hxx>
#include <sfx2/strings.hrc>
#include <sfx2/viewfrm.hxx>
#include <svx/dlgctrl.hxx>
#include <vcl/graphicfilter.hxx>

WhatsNewTabPage::WhatsNewTabPage(weld::Container* pPage, weld::DialogController* pController,
                                 const SfxItemSet& rAttr)
    : SfxTabPage(pPage, pController, u"cui/ui/whatsnewtabpage.ui"_ustr, u"WhatsNewTabPage"_ustr,
                 &rAttr)
    , m_aBrand()
    , m_pBrand(new weld::CustomWeld(*m_xBuilder, u"imBrand"_ustr, m_aBrand))
{
}

std::unique_ptr<SfxTabPage> WhatsNewTabPage::Create(weld::Container* pPage,
                                                    weld::DialogController* pController,
                                                    const SfxItemSet* rAttr)
{
    return std::make_unique<WhatsNewTabPage>(pPage, pController, *rAttr);
}

void WhatsNewTabPage::Reset(const SfxItemSet* /* rSet */)
{
    const Size aGraphicSize = m_aBrand.GetGraphicSize();
    m_pBrand->set_size_request(aGraphicSize.getWidth(), aGraphicSize.getHeight());

    auto& aProperties = getAdditionalProperties();
    auto aIterator = aProperties.find(u"IsFirstRun"_ustr);
    if (aIterator != aProperties.end())
        m_aBrand.SetIsFirstStart(aIterator->second.get<sal_Bool>());
}

BrandGraphic::BrandGraphic()
    : m_bIsFirstStart(false)
{
    BitmapEx aBackgroundBitmap;
    SfxApplication::loadBrandSvg("shell/about", aBackgroundBitmap, 250);
    m_aGraphic = aBackgroundBitmap;
    m_aGraphicSize = m_aGraphic.GetSizePixel();
}

void BrandGraphic::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect)
{
    //clear
    rRenderContext.SetBackground(COL_WHITE);
    rRenderContext.Erase();

    const Point aGraphicPosition((rRect.GetWidth() - m_aGraphicSize.Width()),
                                 (rRect.GetHeight() - m_aGraphicSize.Height()) >> 1);
    m_aGraphic.Draw(rRenderContext, aGraphicPosition, m_aGraphicSize);

    tools::Rectangle aTextRect;
    if (m_aGraphic.isAvailable())
    {
        aTextRect.SetPos(Point(88));
        aTextRect.SetSize(Size(aGraphicPosition.getX(), m_aGraphicSize.Height() - 20));
    }
    else
        aTextRect = rRect;

    //text
    OUString sText(SfxResId(m_bIsFirstStart ? STR_WELCOME_TEXT : STR_WHATSNEW_TEXT));

    vcl::Font aFont = rRenderContext.GetFont();
    aFont.SetFontSize(Size(024));
    aFont.SetColor(COL_BLACK);
    aFont.SetWeight(WEIGHT_BOLD);
    rRenderContext.SetFont(aFont);

    DrawTextFlags nDrawTextStyle(DrawTextFlags::MultiLine | DrawTextFlags::WordBreak
                                 | DrawTextFlags::EndEllipsis);
    const bool bIsRTL = rRenderContext.GetTextIsRTL(sText, 0, sText.getLength());
    if (bIsRTL)
        nDrawTextStyle |= DrawTextFlags::Right;

    aTextRect.shrink(6);
    aTextRect.setWidth(aTextRect.GetWidth() - 12);
    rRenderContext.DrawText(aTextRect, sText, nDrawTextStyle);
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */

Messung V0.5 in Prozent
C=95 H=92 G=93

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-06) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.