Files
loongoffice/framework/source/uielement/edittoolbarcontroller.cxx
Tor Lillqvist 30ae83c268 fdo#82577: Handle KeyCode
Put the VCL KeyCode class in the vcl namespace. Avoids clash with the X11
KeyCode typedef.

Change-Id: I624c9d937f7c5f5986d313b6c5f060bd8bb7e028
2014-08-23 22:33:30 +03:00

228 lines
6.4 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 .
*/
#include "uielement/edittoolbarcontroller.hxx"
#include <com/sun/star/util/XURLTransformer.hpp>
#include <com/sun/star/frame/XDispatchProvider.hpp>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/frame/status/ItemStatus.hpp>
#include <com/sun/star/frame/status/ItemState.hpp>
#include <com/sun/star/frame/status/Visibility.hpp>
#include <com/sun/star/frame/XControlNotificationListener.hpp>
#include <svtools/toolboxcontroller.hxx>
#include <osl/mutex.hxx>
#include <vcl/svapp.hxx>
#include <vcl/mnemonic.hxx>
#include <vcl/toolbox.hxx>
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() SAL_OVERRIDE;
virtual void KeyInput( const ::KeyEvent& rKEvt ) SAL_OVERRIDE;
virtual void GetFocus() SAL_OVERRIDE;
virtual void LoseFocus() SAL_OVERRIDE;
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
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();
}
bool EditControl::PreNotify( NotifyEvent& rNEvt )
{
bool nRet = false;
if ( m_pEditListener )
nRet = m_pEditListener->PreNotify( rNEvt );
if ( !nRet )
nRet = Edit::PreNotify( rNEvt );
return nRet;
}
EditToolbarController::EditToolbarController(
const Reference< XComponentContext >& rxContext,
const Reference< XFrame >& rFrame,
ToolBox* pToolbar,
sal_uInt16 nID,
sal_Int32 nWidth,
const OUString& aCommand ) :
ComplexToolbarController( rxContext, 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, std::exception )
{
SolarMutexGuard aSolarMutexGuard;
m_pToolbar->SetItemWindow( m_nID, 0 );
delete m_pEditControl;
ComplexToolbarController::dispose();
m_pEditControl = 0;
}
Sequence<PropertyValue> EditToolbarController::getExecuteArgs(sal_Int16 KeyModifier) const
{
Sequence<PropertyValue> aArgs( 2 );
OUString aSelectedText = m_pEditControl->GetText();
// Add key modifier to argument list
aArgs[0].Name = "KeyModifier";
aArgs[0].Value <<= KeyModifier;
aArgs[1].Name = "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();
}
bool EditToolbarController::PreNotify( NotifyEvent& rNEvt )
{
if( rNEvt.GetType() == EVENT_KEYINPUT )
{
const ::KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
const vcl::KeyCode& rKeyCode = pKeyEvent->GetKeyCode();
if(( rKeyCode.GetModifier() | rKeyCode.GetCode()) == KEY_RETURN )
{
// Call execute only with non-empty text
if ( !m_pEditControl->GetText().isEmpty() )
execute( rKeyCode.GetModifier() );
return true;
}
}
return false;
}
void EditToolbarController::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )
{
if ( rControlCommand.Command.startsWith( "SetText" ))
{
for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
{
if ( rControlCommand.Arguments[i].Name.startsWith( "Text" ))
{
OUString aText;
rControlCommand.Arguments[i].Value >>= aText;
m_pEditControl->SetText( aText );
// send notification
notifyTextChanged( aText );
break;
}
}
}
}
} // namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */