diff options
author | Heiko Tietze <tietze.heiko@gmail.com> | 2021-03-08 08:47:21 +0100 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2021-03-10 10:26:14 +0100 |
commit | 7abfb02bda53ed71cdca335fa99490992fa7092b (patch) | |
tree | e02663ceadedade4ab5ece6ddf36bf72cc115495 /cui/source | |
parent | 1073205d08b27ab311330f5f3c0cb4511cf2d61a (diff) |
tdf#140839 - Scale TotD image
Fix preview size of 100x120px
Margin added
Change-Id: If1caad336f2c3ce492aa9551a170b9b20a9b8b50
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112152
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/dialogs/tipofthedaydlg.cxx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/cui/source/dialogs/tipofthedaydlg.cxx b/cui/source/dialogs/tipofthedaydlg.cxx index 2404052271e6..478780578b56 100644 --- a/cui/source/dialogs/tipofthedaydlg.cxx +++ b/cui/source/dialogs/tipofthedaydlg.cxx @@ -42,6 +42,9 @@ #include <unotools/configmgr.hxx> #include <com/sun/star/beans/PropertyValue.hpp> +//size of preview +const Size ThumbSize(100, 120); + TipOfTheDayDialog::TipOfTheDayDialog(weld::Window* pParent) : GenericDialogController(pParent, "cui/ui/tipofthedaydialog.ui", "TipOfTheDayDialog") , m_pText(m_xBuilder->weld_label("lbText")) @@ -52,8 +55,8 @@ TipOfTheDayDialog::TipOfTheDayDialog(weld::Window* pParent) { m_pShowTip->set_active(officecfg::Office::Common::Misc::ShowTipOfTheDay::get()); m_pNext->connect_clicked(LINK(this, TipOfTheDayDialog, OnNextClick)); - m_nCurrentTip = officecfg::Office::Common::Misc::LastTipOfTheDayID::get(); + m_pPreview->set_size_request(ThumbSize.Width(), ThumbSize.Height()); const auto t0 = std::chrono::system_clock::now().time_since_epoch(); m_nDay = std::chrono::duration_cast<std::chrono::hours>(t0).count() / 24; @@ -176,6 +179,13 @@ void TipOfTheDayDialog::UpdateTip() aImageName = "tipoftheday.png"; Graphic aGraphic; GraphicFilter::LoadGraphic(aURL + aImageName, OUString(), aGraphic); + + if (!aGraphic.IsAnimated()) + { + BitmapEx aBmpEx(aGraphic.GetBitmapEx()); + if (aBmpEx.Scale(ThumbSize)) + aGraphic = aBmpEx; + } m_aPreview.SetPreview(aGraphic); } |