Files
libreoffice/reportdesign/source/ui/inc/CondFormat.hxx
Caolán McNamara 00657aef09 migrate to boost::gettext
* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl
* all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string")
* ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching
  MODULE .mo files
* UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui
  goes from l10n target to normal one, so the res/lang.zips of UI files go away
* translation via Translation::get(hrc-define-key, imbued-std::locale)
* python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there
  to keep finding the .hrc file uniform) so magic numbers can go away there
* java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation
  mechanism
* en-US res files go away, their strings are now the .hrc keys in the source code
* remaining .res files are replaced by .mo files
* in .res/.ui-lang-zip files, the old scheme missing translations of strings
  results in inserting the english original so something can be found, now the
  standard fallback of using the english original from the source key is used, so
  partial translations shrink dramatically in size
* extract .hrc strings with hrcex which backs onto
   xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap
* extract .ui strings with uiex which backs onto
   xgettext --add-comments --no-wrap
* qtz for gettext translations is generated at runtime as ascii-ified crc32 of
   content + "|" + msgid
* [API CHANGE] remove deprecated binary .res resouce loader related uno apis
      com::sun::resource::OfficeResourceLoader
      com::sun::resource::XResourceBundleLoader
      com::sun::resource::XResourceBundle
    when translating strings via uno apis
      com.sun.star.resource.StringResourceWithLocation
    can continue to be used

Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
2017-07-21 08:20:50 +01:00

172 lines
6.2 KiB
C++

/* -*- 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 .
*/
#ifndef INCLUDED_REPORTDESIGN_SOURCE_UI_INC_CONDFORMAT_HXX
#define INCLUDED_REPORTDESIGN_SOURCE_UI_INC_CONDFORMAT_HXX
#include <com/sun/star/report/XReportControlModel.hpp>
#include <vcl/dialog.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include <vcl/layout.hxx>
#include <vcl/scrbar.hxx>
#include <vector>
namespace rptui
{
#define MAX_CONDITIONS (size_t)3
class OReportController;
class Condition;
//= IConditionalFormatAction
class SAL_NO_VTABLE IConditionalFormatAction
{
public:
virtual void addCondition( size_t _nAddAfterIndex ) = 0;
virtual void deleteCondition( size_t _nCondIndex ) = 0;
virtual void applyCommand( size_t _nCondIndex, sal_uInt16 _nCommandId, const ::Color& rColor ) = 0;
virtual void moveConditionUp( size_t _nCondIndex ) = 0;
virtual void moveConditionDown( size_t _nCondIndex ) = 0;
virtual OUString getDataField() const = 0;
protected:
~IConditionalFormatAction() {}
};
/*************************************************************************
|*
|* Conditional formatting dialog
|*
\************************************************************************/
class ConditionalFormattingDialog :public ModalDialog
,public IConditionalFormatAction
{
typedef ::std::vector< VclPtr<Condition> > Conditions;
VclPtr<vcl::Window> m_pConditionPlayground;
Conditions m_aConditions;
VclPtr<VclScrolledWindow> m_pScrollWindow;
VclPtr<ScrollBar> m_pCondScroll;
::rptui::OReportController& m_rController;
css::uno::Reference< css::report::XReportControlModel >
m_xFormatConditions;
css::uno::Reference< css::report::XReportControlModel >
m_xCopy;
bool m_bDeletingCondition;
bool m_bConstructed;
public:
ConditionalFormattingDialog(
vcl::Window* pParent,
const css::uno::Reference< css::report::XReportControlModel>& _xHoldAlive,
::rptui::OReportController& _rController
);
virtual ~ConditionalFormattingDialog() override;
virtual void dispose() override;
// Dialog overridables
virtual short Execute() override;
// IConditionalFormatAction overridables
virtual void addCondition( size_t _nAddAfterIndex ) override;
virtual void deleteCondition( size_t _nCondIndex ) override;
virtual void applyCommand( size_t _nCondIndex, sal_uInt16 _nCommandId, const ::Color& rColor ) override;
virtual void moveConditionUp( size_t _nCondIndex ) override;
virtual void moveConditionDown( size_t _nCondIndex ) override;
virtual OUString getDataField() const override;
protected:
virtual bool PreNotify( NotifyEvent& rNEvt ) override;
private:
DECL_LINK( OnScroll, ScrollBar*, void );
private:
/// returns the current number of conditions
size_t impl_getConditionCount() const { return m_aConditions.size(); }
/** adds a condition
@param _nNewCondIndex
the index of the to-be-inserted condition
*/
void impl_addCondition_nothrow( size_t _nNewCondIndex );
/// deletes the condition with the given index
void impl_deleteCondition_nothrow( size_t _nCondIndex );
/// moves the condition with the given index one position
void impl_moveCondition_nothrow( size_t _nCondIndex, bool _bMoveUp );
/// does the dialog layouting
void impl_layoutAll();
/// does the layout for the condition windows
void impl_layoutConditions();
/// called when the number of conditions has changed in any way
void impl_conditionCountChanged();
/// initializes the conditions from m_xCopy
void impl_initializeConditions();
/// tells all our Condition instances their new index
void impl_updateConditionIndicies();
/// returns the number of the condition which has the (child path) focus
size_t impl_getFocusedConditionIndex( sal_Int32 _nFallBackIfNone ) const;
/// returns the index of the first visible condition
size_t impl_getFirstVisibleConditionIndex() const;
/// returns the index of the last visible condition
size_t impl_getLastVisibleConditionIndex() const;
/// focuses the condition with the given index, making it visible if necessary
void impl_focusCondition( size_t _nCondIndex );
/// updates the scrollbar range. (does not update the scrollbar visibility)
void impl_updateScrollBarRange();
/// scrolls the condition with the given index to the top position
void impl_scrollTo( size_t _nTopCondIndex );
/// ensures the condition with the given index is visible
void impl_ensureConditionVisible( size_t _nCondIndex );
/// set the preferred height of the action_area
void impl_setPrefHeight(bool bFirst);
};
} // namespace rptui
#endif // INCLUDED_REPORTDESIGN_SOURCE_UI_INC_CONDFORMAT_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */