2010-10-12 15:57:08 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 17:02:47 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2009-05-22 07:24:11 +00:00
|
|
|
|
|
|
|
#include "basicrenderable.hxx"
|
|
|
|
#include "bastypes.hxx"
|
2009-05-27 18:54:18 +00:00
|
|
|
#include "basidesh.hrc"
|
2009-05-22 07:24:11 +00:00
|
|
|
|
2013-11-11 21:38:29 -06:00
|
|
|
#include <toolkit/awt/vclxdevice.hxx>
|
|
|
|
#include <tools/multisel.hxx>
|
|
|
|
#include <tools/resary.hxx>
|
2009-05-22 07:24:11 +00:00
|
|
|
|
2015-03-07 18:58:49 +05:30
|
|
|
#include <comphelper/propertysequence.hxx>
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
namespace basctl
|
|
|
|
{
|
|
|
|
|
2009-05-22 07:24:11 +00:00
|
|
|
using namespace com::sun::star;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
Renderable::Renderable (BaseWindow* pWin)
|
2009-05-27 18:54:18 +00:00
|
|
|
: cppu::WeakComponentImplHelper1< com::sun::star::view::XRenderable >( maMutex )
|
|
|
|
, mpWindow( pWin )
|
|
|
|
{
|
|
|
|
ResStringArray aStrings( IDEResId( RID_PRINTDLG_STRLIST ) );
|
2010-11-02 17:03:34 +01:00
|
|
|
DBG_ASSERT( aStrings.Count() >= 3, "resource incomplete" );
|
|
|
|
if( aStrings.Count() < 3 ) // bad resource ?
|
2009-05-27 18:54:18 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
m_aUIProperties.realloc( 3 );
|
|
|
|
|
2012-09-10 16:59:55 +01:00
|
|
|
// show Subgroup for print range
|
2009-07-28 19:01:25 +00:00
|
|
|
vcl::PrinterOptionsHelper::UIControlOptions aPrintRangeOpt;
|
2012-10-01 13:03:37 -03:00
|
|
|
aPrintRangeOpt.maGroupHint = "PrintRange" ;
|
2012-08-07 08:36:40 +02:00
|
|
|
aPrintRangeOpt.mbInternalOnly = true;
|
2012-09-10 16:59:55 +01:00
|
|
|
m_aUIProperties[0].Value = setSubgroupControlOpt("printrange",
|
2012-10-01 13:03:37 -03:00
|
|
|
OUString(aStrings.GetString(0)), OUString(), aPrintRangeOpt);
|
2009-05-27 18:54:18 +00:00
|
|
|
|
|
|
|
// create a choice for the range to print
|
2012-10-01 13:03:37 -03:00
|
|
|
OUString aPrintContentName( "PrintContent" );
|
|
|
|
Sequence< OUString > aChoices( 2 );
|
|
|
|
Sequence< OUString > aHelpIds( 2 );
|
|
|
|
Sequence< OUString > aWidgetIds( 2 );
|
2009-05-27 18:54:18 +00:00
|
|
|
aChoices[0] = aStrings.GetString( 1 );
|
2012-10-01 13:03:37 -03:00
|
|
|
aHelpIds[0] = ".HelpID:vcl:PrintDialog:PrintContent:RadioButton:0" ;
|
2010-11-02 17:03:34 +01:00
|
|
|
aChoices[1] = aStrings.GetString( 2 );
|
2012-10-01 13:03:37 -03:00
|
|
|
aHelpIds[1] = ".HelpID:vcl:PrintDialog:PrintContent:RadioButton:1" ;
|
|
|
|
aWidgetIds[0] = "printallpages" ;
|
|
|
|
aWidgetIds[1] = "printpages" ;
|
|
|
|
m_aUIProperties[1].Value = setChoiceRadiosControlOpt(aWidgetIds, OUString(),
|
2012-09-10 16:59:55 +01:00
|
|
|
aHelpIds, aPrintContentName,
|
|
|
|
aChoices, 0);
|
2009-05-27 18:54:18 +00:00
|
|
|
|
|
|
|
// create a an Edit dependent on "Pages" selected
|
2012-08-07 08:36:40 +02:00
|
|
|
vcl::PrinterOptionsHelper::UIControlOptions aPageRangeOpt(aPrintContentName, 1, true);
|
2012-10-01 13:03:37 -03:00
|
|
|
m_aUIProperties[2].Value = setEditControlOpt("pagerange", OUString(),
|
|
|
|
OUString(), "PageRange",
|
|
|
|
OUString(), aPageRangeOpt);
|
2009-05-27 18:54:18 +00:00
|
|
|
}
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
Renderable::~Renderable()
|
2009-05-22 07:24:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:28:03 +00:00
|
|
|
VclPtr< Printer > Renderable::getPrinter()
|
2009-05-22 07:24:11 +00:00
|
|
|
{
|
2015-03-16 17:28:03 +00:00
|
|
|
VclPtr< Printer > pPrinter;
|
2012-10-01 13:03:37 -03:00
|
|
|
Any aValue( getValue( "RenderDevice" ) );
|
2009-05-27 18:54:18 +00:00
|
|
|
Reference<awt::XDevice> xRenderDevice;
|
2009-05-22 07:24:11 +00:00
|
|
|
|
2009-05-27 18:54:18 +00:00
|
|
|
if( aValue >>= xRenderDevice )
|
|
|
|
{
|
|
|
|
VCLXDevice* pDevice = VCLXDevice::GetImplementation(xRenderDevice);
|
2015-03-16 17:46:20 +00:00
|
|
|
VclPtr< OutputDevice > pOut = pDevice ? pDevice->GetOutputDevice() : VclPtr< OutputDevice >();
|
2015-03-16 17:28:03 +00:00
|
|
|
pPrinter = dynamic_cast<Printer*>(pOut.get());
|
2009-05-22 07:24:11 +00:00
|
|
|
}
|
|
|
|
return pPrinter;
|
|
|
|
}
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
sal_Int32 SAL_CALL Renderable::getRendererCount (
|
2009-05-25 09:47:54 +00:00
|
|
|
const Any&, const Sequence<beans::PropertyValue >& i_xOptions
|
2014-02-25 21:31:58 +01:00
|
|
|
) throw (lang::IllegalArgumentException, RuntimeException, std::exception)
|
2009-05-22 07:24:11 +00:00
|
|
|
{
|
2009-05-27 18:54:18 +00:00
|
|
|
processProperties( i_xOptions );
|
|
|
|
|
2009-05-22 07:24:11 +00:00
|
|
|
sal_Int32 nCount = 0;
|
|
|
|
if( mpWindow )
|
|
|
|
{
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
if (Printer* pPrinter = getPrinter())
|
2009-05-27 18:54:18 +00:00
|
|
|
{
|
2009-05-22 07:24:11 +00:00
|
|
|
nCount = mpWindow->countPages( pPrinter );
|
2009-05-27 18:54:18 +00:00
|
|
|
sal_Int64 nContent = getIntValue( "PrintContent", -1 );
|
|
|
|
if( nContent == 1 )
|
|
|
|
{
|
2012-10-01 13:03:37 -03:00
|
|
|
OUString aPageRange( getStringValue( "PageRange" ) );
|
2011-12-09 22:23:22 -02:00
|
|
|
if( !aPageRange.isEmpty() )
|
2011-10-08 22:25:09 +04:00
|
|
|
{
|
|
|
|
StringRangeEnumerator aRangeEnum( aPageRange, 0, nCount-1 );
|
|
|
|
sal_Int32 nSelCount = aRangeEnum.size();
|
|
|
|
if( nSelCount >= 0 )
|
|
|
|
nCount = nSelCount;
|
|
|
|
}
|
2009-05-27 18:54:18 +00:00
|
|
|
}
|
|
|
|
}
|
2009-05-22 07:24:11 +00:00
|
|
|
else
|
|
|
|
throw lang::IllegalArgumentException();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nCount;
|
|
|
|
}
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
Sequence<beans::PropertyValue> SAL_CALL Renderable::getRenderer (
|
2009-05-25 09:47:54 +00:00
|
|
|
sal_Int32, const Any&, const Sequence<beans::PropertyValue>& i_xOptions
|
2014-02-25 21:31:58 +01:00
|
|
|
) throw (lang::IllegalArgumentException, RuntimeException, std::exception)
|
2009-05-22 07:24:11 +00:00
|
|
|
{
|
2009-05-27 18:54:18 +00:00
|
|
|
processProperties( i_xOptions );
|
|
|
|
|
2009-05-22 07:24:11 +00:00
|
|
|
Sequence< beans::PropertyValue > aVals;
|
|
|
|
// insert page size here
|
2009-05-27 18:54:18 +00:00
|
|
|
Printer* pPrinter = getPrinter();
|
2009-05-22 07:24:11 +00:00
|
|
|
// no renderdevice is legal; the first call is to get our print ui options
|
|
|
|
if( pPrinter )
|
|
|
|
{
|
|
|
|
Size aPageSize( pPrinter->PixelToLogic( pPrinter->GetPaperSizePixel(), MapMode( MAP_100TH_MM ) ) );
|
|
|
|
|
|
|
|
awt::Size aSize;
|
|
|
|
aSize.Width = aPageSize.Width();
|
|
|
|
aSize.Height = aPageSize.Height();
|
2015-03-07 18:58:49 +05:30
|
|
|
aVals = ::comphelper::InitPropertySequence({
|
|
|
|
{ "PageSize", makeAny(aSize) }
|
|
|
|
});
|
2009-05-22 07:24:11 +00:00
|
|
|
}
|
|
|
|
|
2009-05-27 18:54:18 +00:00
|
|
|
appendPrintUIOptions( aVals );
|
|
|
|
|
2009-05-22 07:24:11 +00:00
|
|
|
return aVals;
|
|
|
|
}
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
void SAL_CALL Renderable::render (
|
2009-05-25 09:47:54 +00:00
|
|
|
sal_Int32 nRenderer, const Any&,
|
2009-05-22 07:24:11 +00:00
|
|
|
const Sequence<beans::PropertyValue>& i_xOptions
|
2014-02-25 21:31:58 +01:00
|
|
|
) throw (lang::IllegalArgumentException, RuntimeException, std::exception)
|
2009-05-22 07:24:11 +00:00
|
|
|
{
|
2009-05-27 18:54:18 +00:00
|
|
|
processProperties( i_xOptions );
|
|
|
|
|
2009-05-22 07:24:11 +00:00
|
|
|
if( mpWindow )
|
|
|
|
{
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
if (Printer* pPrinter = getPrinter())
|
2009-05-27 18:54:18 +00:00
|
|
|
{
|
|
|
|
sal_Int64 nContent = getIntValue( "PrintContent", -1 );
|
|
|
|
if( nContent == 1 )
|
|
|
|
{
|
2012-10-01 13:03:37 -03:00
|
|
|
OUString aPageRange( getStringValue( "PageRange" ) );
|
2011-12-09 22:23:22 -02:00
|
|
|
if( !aPageRange.isEmpty() )
|
2011-10-08 22:25:09 +04:00
|
|
|
{
|
|
|
|
sal_Int32 nPageCount = mpWindow->countPages( pPrinter );
|
|
|
|
StringRangeEnumerator aRangeEnum( aPageRange, 0, nPageCount-1 );
|
|
|
|
StringRangeEnumerator::Iterator it = aRangeEnum.begin();
|
|
|
|
for( ; it != aRangeEnum.end() && nRenderer; --nRenderer )
|
|
|
|
++it;
|
|
|
|
|
|
|
|
sal_Int32 nPage = ( it != aRangeEnum.end() ) ? *it : nRenderer;
|
|
|
|
mpWindow->printPage( nPage, pPrinter );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mpWindow->printPage( nRenderer, pPrinter );
|
2009-05-27 18:54:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
mpWindow->printPage( nRenderer, pPrinter );
|
|
|
|
}
|
2009-05-22 07:24:11 +00:00
|
|
|
else
|
|
|
|
throw lang::IllegalArgumentException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Basic IDE: namespace basctl
Now all names in basctl are in namespace 'basctl'.
There were lots of names that included the word 'Basic' or 'BasicIDE' in
it, e.g. BasicIDEData, BasicDocumentEntry, BasicTreeListBox,
BasicIDEModule, IDEBaseWindow etc. This information is now stored in the
namespace name, so the names could be shortened: basctl::DocumentEntry,
basctl::TreeListBox, basctl::Module, basctl::BaseWindow etc.
Some other minor changes:
* LibInfos, LibInfoItem, LibInfoKey ->
LibInfos, LibInfos::Item, LibInfos::Key
* The header guards are now uniformly BASCTL_FILENAME_HXX, instead of
e.g. _FILENAME_HXX, which is undefined behaviour because of the '_'.
* namespace BasicIDE, BasicIDEGlobals, basicide -> namespace basctl
* BASICIDE_TYPE_MODULE, ... -> basctl::TYPE_MODULE, ...
Change-Id: I2a9b493562d0d8a2510d569798fbe9e1161b7c9b
Reviewed-on: https://gerrit.libreoffice.org/501
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
2012-08-25 12:43:27 +02:00
|
|
|
} // namespace basctl
|
2009-05-22 07:24:11 +00:00
|
|
|
|
2010-10-12 15:57:08 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|