summaryrefslogtreecommitdiff
path: root/svx/source/form/tbxform.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form/tbxform.cxx')
-rw-r--r--svx/source/form/tbxform.cxx469
1 files changed, 0 insertions, 469 deletions
diff --git a/svx/source/form/tbxform.cxx b/svx/source/form/tbxform.cxx
deleted file mode 100644
index 910554c6ca..0000000000
--- a/svx/source/form/tbxform.cxx
+++ /dev/null
@@ -1,469 +0,0 @@
-/* -*- 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
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_svx.hxx"
-#include <string>
-#include <tools/ref.hxx>
-#include <tools/shl.hxx>
-#include <svl/intitem.hxx>
-#include <svl/eitem.hxx>
-#include <svl/stritem.hxx>
-#include <sfx2/dispatch.hxx>
-#include <vcl/toolbox.hxx>
-#include <vcl/fixed.hxx>
-#include "fmitems.hxx"
-#include "formtoolbars.hxx"
-
-
-#include <vcl/sound.hxx>
-#include <svx/dialmgr.hxx>
-#include <svx/dialogs.hrc>
-#include "svx/tbxctl.hxx"
-#include "svx/tbxdraw.hxx"
-#include "tbxform.hxx"
-#include "svx/fmresids.hrc"
-#include "fmitems.hxx"
-#include "fmhelp.hrc"
-#include <sfx2/viewfrm.hxx>
-#include <sfx2/viewsh.hxx>
-#include <sfx2/imagemgr.hxx>
-#include <com/sun/star/beans/XPropertySet.hpp>
-
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::frame;
-using ::com::sun::star::beans::XPropertySet;
-
-
-//========================================================================
-// class SvxFmAbsRecWin
-//========================================================================
-
-// -----------------------------------------------------------------------
-SvxFmAbsRecWin::SvxFmAbsRecWin( Window* _pParent, SfxToolBoxControl* _pController )
- :NumericField( _pParent, WB_BORDER )
- ,m_pController(_pController)
-{
- SetMin(1);
- SetFirst(1);
- SetSpinSize(1);
- SetSizePixel( Size(70,19) );
-
- SetDecimalDigits(0);
- SetStrictFormat(sal_True);
-}
-
-// -----------------------------------------------------------------------
-SvxFmAbsRecWin::~SvxFmAbsRecWin()
-{
-}
-
-// -----------------------------------------------------------------------
-void SvxFmAbsRecWin::FirePosition( sal_Bool _bForce )
-{
- if ( _bForce || ( GetText() != GetSavedValue() ) )
- {
- sal_Int64 nRecord = GetValue();
- if (nRecord < GetMin() || nRecord > GetMax())
- {
- Sound::Beep();
- return;
- }
-
- SfxInt32Item aPositionParam( FN_PARAM_1, static_cast<sal_Int32>(nRecord) );
-
- Any a;
- Sequence< PropertyValue > aArgs( 1 );
- aArgs[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Position" ));
- aPositionParam.QueryValue( a );
- aArgs[0].Value = a;
- m_pController->Dispatch( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:AbsoluteRecord" )),
- aArgs );
- m_pController->updateStatus();
-
- SaveValue();
- }
-}
-
-// -----------------------------------------------------------------------
-void SvxFmAbsRecWin::LoseFocus()
-{
- FirePosition( sal_False );
-}
-
-// -----------------------------------------------------------------------
-void SvxFmAbsRecWin::KeyInput( const KeyEvent& rKeyEvent )
-{
- if( rKeyEvent.GetKeyCode() == KEY_RETURN && GetText().Len() )
- FirePosition( sal_True );
- else
- NumericField::KeyInput( rKeyEvent );
-}
-
-//========================================================================
-// class SvxFmTbxCtlConfig
-//========================================================================
-
-struct MapSlotToCmd
-{
- sal_uInt16 nSlotId;
- const char* pCommand;
-};
-
-static MapSlotToCmd SlotToCommands[] =
-{
- { SID_FM_PUSHBUTTON, ".uno:Pushbutton" },
- { SID_FM_RADIOBUTTON, ".uno:RadioButton" },
- { SID_FM_CHECKBOX, ".uno:CheckBox" },
- { SID_FM_FIXEDTEXT, ".uno:Label" },
- { SID_FM_GROUPBOX, ".uno:GroupBox" },
- { SID_FM_LISTBOX, ".uno:ListBox" },
- { SID_FM_COMBOBOX, ".uno:ComboBox" },
- { SID_FM_EDIT, ".uno:Edit" },
- { SID_FM_DBGRID, ".uno:Grid" },
- { SID_FM_IMAGEBUTTON, ".uno:Imagebutton" },
- { SID_FM_IMAGECONTROL, ".uno:ImageControl" },
- { SID_FM_FILECONTROL, ".uno:FileControl" },
- { SID_FM_DATEFIELD, ".uno:DateField" },
- { SID_FM_TIMEFIELD, ".uno:TimeField" },
- { SID_FM_NUMERICFIELD, ".uno:NumericField" },
- { SID_FM_CURRENCYFIELD, ".uno:CurrencyField" },
- { SID_FM_PATTERNFIELD, ".uno:PatternField" },
- { SID_FM_DESIGN_MODE, ".uno:SwitchControlDesignMode" },
- { SID_FM_FORMATTEDFIELD, ".uno:FormattedField" },
- { SID_FM_SCROLLBAR, ".uno:ScrollBar" },
- { SID_FM_SPINBUTTON, ".uno:SpinButton" },
- { 0, "" }
-};
-
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlConfig, SfxUInt16Item );
-
-//-----------------------------------------------------------------------
-SvxFmTbxCtlConfig::SvxFmTbxCtlConfig( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- : SfxToolBoxControl( nSlotId, nId, rTbx )
- ,nLastSlot( 0 )
-{
- rTbx.SetItemBits( nId, TIB_DROPDOWN | rTbx.GetItemBits( nId ) );
-}
-
-//-----------------------------------------------------------------------
-void SvxFmTbxCtlConfig::StateChanged(sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState )
-{
- if (nSID == SID_FM_CONFIG)
- {
- sal_uInt16 nSlot = 0;
- if (eState >= SFX_ITEM_AVAILABLE)
- nSlot = ((SfxUInt16Item*)pState)->GetValue();
-
- switch( nSlot )
- {
- case SID_FM_PUSHBUTTON:
- case SID_FM_RADIOBUTTON:
- case SID_FM_CHECKBOX:
- case SID_FM_FIXEDTEXT:
- case SID_FM_GROUPBOX:
- case SID_FM_LISTBOX:
- case SID_FM_COMBOBOX:
- case SID_FM_NAVIGATIONBAR:
- case SID_FM_EDIT:
- case SID_FM_DBGRID:
- case SID_FM_IMAGEBUTTON:
- case SID_FM_IMAGECONTROL:
- case SID_FM_FILECONTROL:
- case SID_FM_DATEFIELD:
- case SID_FM_TIMEFIELD:
- case SID_FM_NUMERICFIELD:
- case SID_FM_CURRENCYFIELD:
- case SID_FM_PATTERNFIELD:
- case SID_FM_DESIGN_MODE:
- case SID_FM_FORMATTEDFIELD:
- case SID_FM_SCROLLBAR:
- case SID_FM_SPINBUTTON:
- { // set a new image, matching to this slot
- rtl::OUString aSlotURL( RTL_CONSTASCII_USTRINGPARAM( "slot:" ));
- aSlotURL += rtl::OUString::valueOf( sal_Int32( nSlot ));
- Image aImage = GetImage( m_xFrame, aSlotURL, hasBigImages() );
- GetToolBox().SetItemImage( GetId(), aImage );
- nLastSlot = nSlot;
- }
- break;
- }
- }
- SfxToolBoxControl::StateChanged( nSID, eState,pState );
-}
-
-//-----------------------------------------------------------------------
-SfxPopupWindowType SvxFmTbxCtlConfig::GetPopupWindowType() const
-{
- return( nLastSlot == 0 ? SFX_POPUPWINDOW_ONCLICK : SFX_POPUPWINDOW_ONTIMEOUT );
-}
-
-//-----------------------------------------------------------------------
-SfxPopupWindow* SvxFmTbxCtlConfig::CreatePopupWindow()
-{
- if ( GetSlotId() == SID_FM_CONFIG )
- {
- ::svxform::FormToolboxes aToolboxes( m_xFrame );
- createAndPositionSubToolBar( aToolboxes.getToolboxResourceName( SID_FM_CONFIG ) );
- }
- return NULL;
-}
-
-//-----------------------------------------------------------------------
-void SvxFmTbxCtlConfig::Select( sal_uInt16 /*nModifier*/ )
-{
- //////////////////////////////////////////////////////////////////////
- // Click auf den Button SID_FM_CONFIG in der ObjectBar
- if ( nLastSlot )
- {
- sal_uInt16 n = 0;
- while( SlotToCommands[n].nSlotId > 0 )
- {
- if ( SlotToCommands[n].nSlotId == nLastSlot )
- break;
- n++;
- }
-
- if ( SlotToCommands[n].nSlotId > 0 )
- {
- Sequence< PropertyValue > aArgs;
- Dispatch( rtl::OUString::createFromAscii( SlotToCommands[n].pCommand ),
- aArgs );
- }
- }
-}
-
-
-//========================================================================
-// class SvxFmTbxCtlAbsRec
-//========================================================================
-
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlAbsRec, SfxInt32Item );
-DBG_NAME(SvxFmTbxCtlAbsRec);
-//-----------------------------------------------------------------------
-SvxFmTbxCtlAbsRec::SvxFmTbxCtlAbsRec( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- :SfxToolBoxControl( nSlotId, nId, rTbx )
-{
- DBG_CTOR(SvxFmTbxCtlAbsRec,NULL);
-}
-
-//-----------------------------------------------------------------------
-SvxFmTbxCtlAbsRec::~SvxFmTbxCtlAbsRec()
-{
- DBG_DTOR(SvxFmTbxCtlAbsRec,NULL);
-}
-
-//-----------------------------------------------------------------------
-void SvxFmTbxCtlAbsRec::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState )
-{
- sal_uInt16 nId = GetId();
- ToolBox* pToolBox = &GetToolBox();
- SvxFmAbsRecWin* pWin = (SvxFmAbsRecWin*)( pToolBox->GetItemWindow(nId) );
-
- DBG_ASSERT( pWin, "Control not found!" );
-
- if (pState)
- {
- const SfxInt32Item* pItem = PTR_CAST( SfxInt32Item, pState );
- DBG_ASSERT( pItem, "SvxFmTbxCtlAbsRec::StateChanged: invalid item!" );
- pWin->SetValue( pItem ? pItem->GetValue() : -1 );
- }
-
- sal_Bool bEnable = SFX_ITEM_DISABLED != eState && pState;
- if (!bEnable)
- pWin->SetText(String());
-
- //////////////////////////////////////////////////////////////////////
- // Enablen/disablen des Fensters
- pToolBox->EnableItem(nId, bEnable);
- SfxToolBoxControl::StateChanged( nSID, eState,pState );
-}
-
-//-----------------------------------------------------------------------
-Window* SvxFmTbxCtlAbsRec::CreateItemWindow( Window* pParent )
-{
- SvxFmAbsRecWin* pWin = new SvxFmAbsRecWin( pParent, this );
- pWin->SetUniqueId( UID_ABSOLUTE_RECORD_WINDOW );
- return pWin;
-}
-
-
-//========================================================================
-// SvxFmTbxCtlRecText
-//========================================================================
-
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlRecText, SfxBoolItem );
-DBG_NAME(SvxFmTbxCtlRecText);
-//-----------------------------------------------------------------------
-SvxFmTbxCtlRecText::SvxFmTbxCtlRecText( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- :SfxToolBoxControl( nSlotId, nId, rTbx )
-{
- DBG_CTOR(SvxFmTbxCtlRecText,NULL);
-}
-
-//-----------------------------------------------------------------------
-SvxFmTbxCtlRecText::~SvxFmTbxCtlRecText()
-{
- DBG_DTOR(SvxFmTbxCtlRecText,NULL);
-}
-
-//-----------------------------------------------------------------------
-Window* SvxFmTbxCtlRecText::CreateItemWindow( Window* pParent )
-{
- XubString aText( SVX_RES(RID_STR_REC_TEXT) );
- FixedText* pFixedText = new FixedText( pParent );
- Size aSize( pFixedText->GetTextWidth( aText ), pFixedText->GetTextHeight( ) );
- pFixedText->SetText( aText );
- aSize.Width() += 6;
- pFixedText->SetSizePixel( aSize );
- pFixedText->SetBackground(Wallpaper(Color(COL_TRANSPARENT)));
-
- return pFixedText;
-}
-
-
-//========================================================================
-// SvxFmTbxCtlRecFromText
-//========================================================================
-
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlRecFromText, SfxBoolItem );
-DBG_NAME(SvxFmTbxCtlRecFromText);
-//-----------------------------------------------------------------------
-SvxFmTbxCtlRecFromText::SvxFmTbxCtlRecFromText( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- :SfxToolBoxControl( nSlotId, nId, rTbx )
-{
- DBG_CTOR(SvxFmTbxCtlRecFromText,NULL);
-}
-
-//-----------------------------------------------------------------------
-SvxFmTbxCtlRecFromText::~SvxFmTbxCtlRecFromText()
-{
- DBG_DTOR(SvxFmTbxCtlRecFromText,NULL);
-}
-
-//-----------------------------------------------------------------------
-Window* SvxFmTbxCtlRecFromText::CreateItemWindow( Window* pParent )
-{
- XubString aText( SVX_RES(RID_STR_REC_FROM_TEXT) );
- FixedText* pFixedText = new FixedText( pParent, WB_CENTER );
- Size aSize( pFixedText->GetTextWidth( aText ), pFixedText->GetTextHeight( ) );
- aSize.Width() += 12;
- pFixedText->SetText( aText );
- pFixedText->SetSizePixel( aSize );
- pFixedText->SetBackground(Wallpaper(Color(COL_TRANSPARENT)));
- return pFixedText;
-}
-
-
-//========================================================================
-// SvxFmTbxCtlRecTotal
-//========================================================================
-DBG_NAME(SvxFmTbxCtlRecTotal);
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlRecTotal, SfxStringItem );
-
-//-----------------------------------------------------------------------
-SvxFmTbxCtlRecTotal::SvxFmTbxCtlRecTotal( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- :SfxToolBoxControl( nSlotId, nId, rTbx )
- ,pFixedText( NULL )
-{
- DBG_CTOR(SvxFmTbxCtlRecTotal,NULL);
-}
-
-//-----------------------------------------------------------------------
-SvxFmTbxCtlRecTotal::~SvxFmTbxCtlRecTotal()
-{
- DBG_DTOR(SvxFmTbxCtlRecTotal,NULL);
-}
-
-//-----------------------------------------------------------------------
-Window* SvxFmTbxCtlRecTotal::CreateItemWindow( Window* pParent )
-{
- pFixedText = new FixedText( pParent );
- String aSample(RTL_CONSTASCII_USTRINGPARAM("123456"));
- Size aSize( pFixedText->GetTextWidth( aSample ), pFixedText->GetTextHeight( ) );
- aSize.Width() += 12;
- pFixedText->SetSizePixel( aSize );
- pFixedText->SetBackground();
- pFixedText->SetPaintTransparent(sal_True);
- return pFixedText;
-}
-
-//-----------------------------------------------------------------------
-void SvxFmTbxCtlRecTotal::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState )
-{
- //////////////////////////////////////////////////////////////////////
- // Setzen des FixedTextes
- if (GetSlotId() != SID_FM_RECORD_TOTAL)
- return;
-
- XubString aText;
- if (pState)
- aText = ((SfxStringItem*)pState)->GetValue();
- else
- aText = '?';
-
- pFixedText->SetText( aText );
- pFixedText->Update();
- pFixedText->Flush();
-
- SfxToolBoxControl::StateChanged( nSID, eState,pState );
-}
-
-//========================================================================
-// SvxFmTbxNextRec
-//========================================================================
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxNextRec, SfxBoolItem );
-
-//-----------------------------------------------------------------------
-SvxFmTbxNextRec::SvxFmTbxNextRec( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- :SfxToolBoxControl( nSlotId, nId, rTbx )
-{
- rTbx.SetItemBits(nId, rTbx.GetItemBits(nId) | TIB_REPEAT);
-
- AllSettings aSettings = rTbx.GetSettings();
- MouseSettings aMouseSettings = aSettings.GetMouseSettings();
- aMouseSettings.SetButtonRepeat(aMouseSettings.GetButtonRepeat() / 4);
- aSettings.SetMouseSettings(aMouseSettings);
- rTbx.SetSettings(aSettings, sal_True);
-}
-
-//========================================================================
-// SvxFmTbxPrevRec
-//========================================================================
-SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxPrevRec, SfxBoolItem );
-
-//-----------------------------------------------------------------------
-SvxFmTbxPrevRec::SvxFmTbxPrevRec( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
- :SfxToolBoxControl( nSlotId, nId, rTbx )
-{
- rTbx.SetItemBits(nId, rTbx.GetItemBits(nId) | TIB_REPEAT);
-}
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */