1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <DateTime.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <rptui_slotid.hrc>
#include <connectivity/dbconversion.hxx>
#include <unotools/syslocale.hxx>
#include <i18nlangtag/languagetag.hxx>
#include <vcl/svapp.hxx>
#include <strings.hxx>
#include <ReportController.hxx>
#include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/XNumberFormatPreviewer.hpp>
#include <algorithm>
namespace rptui
{
using namespace ::com::sun::star;
using namespace ::comphelper;
ODateTimeDialog::ODateTimeDialog(weld::Window* _pParent, const uno::Reference< report::XSection >& _xHoldAlive,
OReportController* _pController)
: GenericDialogController(_pParent, "modules/dbreport/ui/datetimedialog.ui", "DateTimeDialog")
, m_pController(_pController)
, m_xHoldAlive(_xHoldAlive)
, m_xDate(m_xBuilder->weld_check_button("date"))
, m_xFTDateFormat(m_xBuilder->weld_label("datelistbox_label"))
, m_xDateListBox(m_xBuilder->weld_combo_box("datelistbox"))
, m_xTime(m_xBuilder->weld_check_button("time"))
, m_xFTTimeFormat(m_xBuilder->weld_label("timelistbox_label"))
, m_xTimeListBox(m_xBuilder->weld_combo_box("timelistbox"))
, m_xPB_OK(m_xBuilder->weld_button("ok"))
{
try
{
SvtSysLocale aSysLocale;
m_nLocale = aSysLocale.GetLanguageTag().getLocale();
// Fill listbox with all well known date types
InsertEntry(util::NumberFormat::DATE);
InsertEntry(util::NumberFormat::TIME);
}
catch (const uno::Exception&)
{
}
m_xDateListBox->set_active(0);
m_xTimeListBox->set_active(0);
weld::CheckButton* aCheckBoxes[] = { m_xDate.get(), m_xTime.get() };
for (weld::CheckButton* pCheckBox : aCheckBoxes)
pCheckBox->connect_toggled(LINK(this,ODateTimeDialog,CBClickHdl));
CBClickHdl(*m_xTime);
}
void ODateTimeDialog::InsertEntry(sal_Int16 _nNumberFormatId)
{
const bool bTime = util::NumberFormat::TIME == _nNumberFormatId;
weld::ComboBox* pListBox = m_xDateListBox.get();
if (bTime)
pListBox = m_xTimeListBox.get();
const uno::Reference< util::XNumberFormatter> xNumberFormatter = m_pController->getReportNumberFormatter();
const uno::Reference< util::XNumberFormats> xFormats = xNumberFormatter->getNumberFormatsSupplier()->getNumberFormats();
const uno::Sequence<sal_Int32> aFormatKeys = xFormats->queryKeys(_nNumberFormatId,m_nLocale,true);
for (const sal_Int32 nFormatKey : aFormatKeys)
{
pListBox->append(OUString::number(nFormatKey), getFormatStringByKey(nFormatKey,xFormats,bTime));
}
}
short ODateTimeDialog::run()
{
short nRet = GenericDialogController::run();
if (nRet == RET_OK && (m_xDate->get_active() || m_xTime->get_active()))
{
try
{
sal_Int32 nLength = 0;
uno::Sequence<beans::PropertyValue> aValues( 6 );
aValues[nLength].Name = PROPERTY_SECTION;
aValues[nLength++].Value <<= m_xHoldAlive;
aValues[nLength].Name = PROPERTY_TIME_STATE;
aValues[nLength++].Value <<= m_xTime->get_active();
aValues[nLength].Name = PROPERTY_DATE_STATE;
aValues[nLength++].Value <<= m_xDate->get_active();
aValues[nLength].Name = PROPERTY_FORMATKEYDATE;
aValues[nLength++].Value <<= getFormatKey(true);
aValues[nLength].Name = PROPERTY_FORMATKEYTIME;
aValues[nLength++].Value <<= getFormatKey(false);
OutputDevice* pDefDev = Application::GetDefaultDevice();
sal_Int32 nWidth = 0;
if ( m_xDate->get_active() )
{
OUString sDateFormat = m_xDateListBox->get_active_text();
nWidth = OutputDevice::LogicToLogic(pDefDev->PixelToLogic(Size(pDefDev->GetCtrlTextWidth(sDateFormat),0)).Width(),
pDefDev->GetMapMode().GetMapUnit(),MapUnit::Map100thMM);
}
if ( m_xTime->get_active() )
{
OUString sDateFormat = m_xTimeListBox->get_active_text();
nWidth = ::std::max<sal_Int32>(OutputDevice::LogicToLogic(pDefDev->PixelToLogic(Size(pDefDev->GetCtrlTextWidth(sDateFormat),0)).Width(),
pDefDev->GetMapMode().GetMapUnit(),MapUnit::Map100thMM),nWidth);
}
if ( nWidth > 4000 )
{
aValues[nLength].Name = PROPERTY_WIDTH;
aValues[nLength++].Value <<= nWidth;
}
m_pController->executeChecked(SID_DATETIME,aValues);
}
catch (const uno::Exception&)
{
nRet = RET_NO;
}
}
return nRet;
}
OUString ODateTimeDialog::getFormatStringByKey(::sal_Int32 _nNumberFormatKey,const uno::Reference< util::XNumberFormats>& _xFormats,bool _bTime)
{
uno::Reference< beans::XPropertySet> xFormSet = _xFormats->getByKey(_nNumberFormatKey);
OSL_ENSURE(xFormSet.is(),"XPropertySet is null!");
OUString sFormat;
xFormSet->getPropertyValue("FormatString") >>= sFormat;
double nValue = 0;
if ( _bTime )
{
tools::Time aCurrentTime( tools::Time::SYSTEM );
nValue = ::dbtools::DBTypeConversion::toDouble(::dbtools::DBTypeConversion::toTime(aCurrentTime.GetTime()));
}
else
{
Date aCurrentDate( Date::SYSTEM );
static css::util::Date STANDARD_DB_DATE(30,12,1899);
nValue = ::dbtools::DBTypeConversion::toDouble(::dbtools::DBTypeConversion::toDate(aCurrentDate.GetDate()),STANDARD_DB_DATE);
}
uno::Reference< util::XNumberFormatPreviewer> xPreviewer(m_pController->getReportNumberFormatter(),uno::UNO_QUERY);
OSL_ENSURE(xPreviewer.is(),"XNumberFormatPreviewer is null!");
return xPreviewer->convertNumberToPreviewString(sFormat,nValue,m_nLocale,true);
}
IMPL_LINK_NOARG(ODateTimeDialog, CBClickHdl, weld::ToggleButton&, void)
{
const bool bDate = m_xDate->get_active();
m_xFTDateFormat->set_sensitive(bDate);
m_xDateListBox->set_sensitive(bDate);
const bool bTime = m_xTime->get_active();
m_xFTTimeFormat->set_sensitive(bTime);
m_xTimeListBox->set_sensitive(bTime);
if (!bDate && !bTime)
{
m_xPB_OK->set_sensitive(false);
}
else
{
m_xPB_OK->set_sensitive(true);
}
}
sal_Int32 ODateTimeDialog::getFormatKey(bool _bDate) const
{
sal_Int32 nFormatKey;
if ( _bDate )
{
nFormatKey = m_xDateListBox->get_active_id().toInt32();
}
else
{
nFormatKey = m_xTimeListBox->get_active_id().toInt32();
}
return nFormatKey;
}
} // rptui
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|