summaryrefslogtreecommitdiff
path: root/reportdesign/source/ui/inc/GroupsSorting.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/source/ui/inc/GroupsSorting.hxx')
-rw-r--r--reportdesign/source/ui/inc/GroupsSorting.hxx33
1 files changed, 14 insertions, 19 deletions
diff --git a/reportdesign/source/ui/inc/GroupsSorting.hxx b/reportdesign/source/ui/inc/GroupsSorting.hxx
index 5da272ae2..83ed6a42e 100644
--- a/reportdesign/source/ui/inc/GroupsSorting.hxx
+++ b/reportdesign/source/ui/inc/GroupsSorting.hxx
@@ -1,7 +1,8 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -28,9 +29,7 @@
#define RPTUI_GROUPS_SORTING_HXX
#include <vcl/floatwin.hxx>
-#ifndef _FIXED_HXX //autogen
#include <vcl/fixed.hxx>
-#endif
#include <vcl/lstbox.hxx>
#include <vcl/edit.hxx>
#include <vcl/field.hxx>
@@ -65,19 +64,16 @@ class OReportController;
|*
\************************************************************************/
-class OGroupsSortingDialog : public FloatingWindow
- , public ::cppu::BaseMutex
- , public ::comphelper::OPropertyChangeListener
- ,public dbaui::OToolBoxHelper
- ,public vcl::IImageListProvider
+class OGroupsSortingDialog : public FloatingWindow
+ , public ::cppu::BaseMutex
+ , public ::comphelper::OPropertyChangeListener
+ , public dbaui::OToolBoxHelper
+ , public vcl::IImageListProvider
{
friend class OFieldExpressionControl;
FixedLine m_aFL2;
FixedText m_aMove;
-//BTN ImageButton m_aPB_Up;
-//BTN ImageButton m_aPB_Down;
-//BTN ImageButton m_aPB_Delete;
ToolBox m_aToolBox;
FixedLine m_aFL3;
@@ -92,7 +88,7 @@ class OGroupsSortingDialog : public FloatingWindow
FixedText m_aGroupInterval;
NumericField m_aGroupIntervalEd;
FixedText m_aKeepTogether;
- ListBox m_aKeepTogetherLst;
+ ListBox m_aKeepTogetherLst;
FixedLine m_aFL;
FixedText m_aHelpWindow;
@@ -107,7 +103,6 @@ private:
DECL_LINK( OnControlFocusLost, Control* );
DECL_LINK( OnControlFocusGot, Control* );
DECL_LINK( LBChangeHdl, ListBox* );
-//BTN DECL_LINK( ClickHdl, ImageButton* );
DECL_LINK( OnFormatAction, ToolBox* );
/** returns the groups
@@ -115,8 +110,8 @@ private:
*/
::com::sun::star::uno::Reference< ::com::sun::star::report::XGroups>& getGroups() { return m_xGroups; }
- ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup> getGroup(sal_Int32 _nPos)
- {
+ ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup> getGroup(sal_Int32 _nPos)
+ {
OSL_ENSURE(_nPos >= 0 && _nPos < m_xGroups->getCount(),"Invalid count!");
return ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup>(m_xGroups->getByIndex(_nPos),::com::sun::star::uno::UNO_QUERY);
}
@@ -154,7 +149,7 @@ private:
*/
void checkButtons(sal_Int32 _nRow);
- /** clears the m_xColumns member and reset the fields
+ /** clears the m_xColumns member and reset the fields
*
*/
void fillColumns();
@@ -189,10 +184,8 @@ public:
/** will be called when the image list is needed.
@param _eSymbolsSize
<svtools/imgdef.hxx>
- @param _bHiContast
- <TRUE/> when in high contrast mode.
*/
- virtual ImageList getImageList(sal_Int16 _eSymbolsSize,sal_Bool _bHiContast) const;
+ virtual ImageList getImageList(sal_Int16 _eSymbolsSize) const;
// ImageListProvider interface
virtual ImageList getImageList(vcl::ImageListType) SAL_THROW ((com::sun::star::lang::IllegalArgumentException ));
@@ -202,3 +195,5 @@ public:
} // namespace rptui
// =============================================================================
#endif // RPTUI_GROUPS_SORTING_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */