/* -*- 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ #include "uielement/edittoolbarcontroller.hxx" //_________________________________________________________________________________________________________________ // my own includes //_________________________________________________________________________________________________________________ #include "uielement/toolbar.hxx" //_________________________________________________________________________________________________________________ // interface includes //_________________________________________________________________________________________________________________ #include #include #include #include #include #include #include //_________________________________________________________________________________________________________________ // other includes //_________________________________________________________________________________________________________________ #include #include #include #include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::frame::status; using namespace ::com::sun::star::util; namespace framework { // ------------------------------------------------------------------ // Wrapper class to notify controller about events from edit. // Unfortunaltly the events are notifed through virtual methods instead // of Listeners. class EditControl : public Edit { public: EditControl( Window* pParent, WinBits nStyle, IEditListener* pEditListener ); virtual ~EditControl(); virtual void Modify(); virtual void KeyInput( const ::KeyEvent& rKEvt ); virtual void GetFocus(); virtual void LoseFocus(); virtual long PreNotify( NotifyEvent& rNEvt ); private: IEditListener* m_pEditListener; }; EditControl::EditControl( Window* pParent, WinBits nStyle, IEditListener* pEditListener ) : Edit( pParent, nStyle ) , m_pEditListener( pEditListener ) { } EditControl::~EditControl() { m_pEditListener = 0; } void EditControl::Modify() { Edit::Modify(); if ( m_pEditListener ) m_pEditListener->Modify(); } void EditControl::KeyInput( const ::KeyEvent& rKEvt ) { Edit::KeyInput( rKEvt ); if ( m_pEditListener ) m_pEditListener->KeyInput( rKEvt ); } void EditControl::GetFocus() { Edit::GetFocus(); if ( m_pEditListener ) m_pEditListener->GetFocus(); } void EditControl::LoseFocus() { Edit::LoseFocus(); if ( m_pEditListener ) m_pEditListener->LoseFocus(); } long EditControl::PreNotify( NotifyEvent& rNEvt ) { long nRet( 0 ); if ( m_pEditListener ) nRet = m_pEditListener->PreNotify( rNEvt ); if ( nRet == 0 ) nRet = Edit::PreNotify( rNEvt ); return nRet; } // ------------------------------------------------------------------ EditToolbarController::EditToolbarController( const Reference< XMultiServiceFactory >& rServiceManager, const Reference< XFrame >& rFrame, ToolBox* pToolbar, sal_uInt16 nID, sal_Int32 nWidth, const ::rtl::OUString& aCommand ) : ComplexToolbarController( rServiceManager, rFrame, pToolbar, nID, aCommand ) , m_pEditControl( 0 ) { m_pEditControl = new EditControl( m_pToolbar, WB_BORDER, this ); if ( nWidth == 0 ) nWidth = 100; // Calculate height of the edit field according to the application font height sal_Int32 nHeight = getFontSizePixel( m_pEditControl ) + 6 + 1; m_pEditControl->SetSizePixel( ::Size( nWidth, nHeight )); m_pToolbar->SetItemWindow( m_nID, m_pEditControl ); } // ------------------------------------------------------------------ EditToolbarController::~EditToolbarController() { } // ------------------------------------------------------------------ void SAL_CALL EditToolbarController::dispose() throw ( RuntimeException ) { SolarMutexGuard aSolarMutexGuard; m_pToolbar->SetItemWindow( m_nID, 0 ); delete m_pEditControl; ComplexToolbarController::dispose(); m_pEditControl = 0; } // ------------------------------------------------------------------ Sequence EditToolbarController::getExecuteArgs(sal_Int16 KeyModifier) const { Sequence aArgs( 2 ); ::rtl::OUString aSelectedText = m_pEditControl->GetText(); // Add key modifier to argument list aArgs[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "KeyModifier" )); aArgs[0].Value <<= KeyModifier; aArgs[1].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Text" )); aArgs[1].Value <<= aSelectedText; return aArgs; } // ------------------------------------------------------------------ void EditToolbarController::Modify() { notifyTextChanged( m_pEditControl->GetText() ); } void EditToolbarController::KeyInput( const ::KeyEvent& /*rKEvt*/ ) { } void EditToolbarController::GetFocus() { notifyFocusGet(); } void EditToolbarController::LoseFocus() { notifyFocusLost(); } long EditToolbarController::PreNotify( NotifyEvent& rNEvt ) { if( rNEvt.GetType() == EVENT_KEYINPUT ) { const ::KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); const KeyCode& rKeyCode = pKeyEvent->GetKeyCode(); if(( rKeyCode.GetModifier() | rKeyCode.GetCode()) == KEY_RETURN ) { // Call execute only with non-empty text if ( m_pEditControl->GetText().Len() > 0 ) execute( rKeyCode.GetModifier() ); return 1; } } return 0; } // -------------------------------------------------------- void EditToolbarController::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand ) { if ( rControlCommand.Command.equalsAsciiL( "SetText", 7 )) { for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) { if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) { rtl::OUString aText; rControlCommand.Arguments[i].Value >>= aText; m_pEditControl->SetText( aText ); // send notification notifyTextChanged( aText ); break; } } } } } // namespace /* vim:set shiftwidth=4 softtabstop=4 expandtab: */