/* -*- 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace cppu; using namespace comphelper; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; // Forward declaration void Main(); SAL_IMPLEMENT_MAIN() { tools::extendApplicationEnvironment(); // create the global service-manager Reference< XMultiServiceFactory > xFactory; try { Reference< XComponentContext > xCtx = defaultBootstrap_InitialComponentContext(); xFactory = Reference< XMultiServiceFactory >( xCtx->getServiceManager(), UNO_QUERY ); if( xFactory.is() ) setProcessServiceFactory( xFactory ); } catch(const com::sun::star::uno::Exception&) { } if( ! xFactory.is() ) { fprintf( stderr, "Could not bootstrap UNO, installation must be in disorder. Exiting.\n" ); exit( 1 ); } InitVCL(); ::Main(); DeInitVCL(); return 0; } class MyWin : public WorkWindow { PushButton m_aListButton; ListBox m_aSvpBitmaps; ImageControl m_aImage; PushButton m_aQuitButton; public: MyWin( Window* pParent, WinBits nWinStyle ); void MouseMove( const MouseEvent& rMEvt ); void MouseButtonDown( const MouseEvent& rMEvt ); void MouseButtonUp( const MouseEvent& rMEvt ); void KeyInput( const KeyEvent& rKEvt ); void KeyUp( const KeyEvent& rKEvt ); void Paint( const Rectangle& rRect ); void Resize(); sal_Bool Close(); void parseList( const OString& rList ); OString processCommand( const OString& rCommand ); DECL_LINK( ListHdl, Button* ); DECL_LINK( SelectHdl, ListBox* ); DECL_LINK( QuitHdl, Button* ); }; void Main() { MyWin aMainWin( NULL, WB_STDWORK ); aMainWin.SetText( OUString( "SvpClient" ) ); aMainWin.Show(); Application::Execute(); } MyWin::MyWin( Window* pParent, WinBits nWinStyle ) : WorkWindow( pParent, nWinStyle ), m_aListButton( this, 0 ), m_aSvpBitmaps( this, WB_BORDER ), m_aImage( this, WB_BORDER ), m_aQuitButton( this, 0 ) { m_aListButton.SetPosSizePixel( Point( 10, 10 ), Size( 120, 25 ) ); m_aListButton.SetText( String( RTL_CONSTASCII_USTRINGPARAM( "List Elements" ) ) ); m_aListButton.SetClickHdl( LINK( this, MyWin, ListHdl ) ); m_aListButton.Show(); m_aSvpBitmaps.SetPosSizePixel( Point( 10, 40 ), Size( 150, 150 ) ); m_aSvpBitmaps.SetSelectHdl( LINK( this, MyWin, SelectHdl ) ); m_aSvpBitmaps.Show(); m_aImage.SetPosSizePixel( Point( 170, 10 ), Size( 400, 400 ) ); m_aImage.SetScaleMode( com::sun::star::awt::ImageScaleMode::None ); m_aImage.Show(); m_aQuitButton.SetPosSizePixel( Point( 10, 300 ), Size( 120,25 ) ); m_aQuitButton.SetText( String( RTL_CONSTASCII_USTRINGPARAM( "Quit SVP server" ) ) ); m_aQuitButton.SetClickHdl( LINK( this, MyWin, QuitHdl ) ); m_aQuitButton.Show(); } sal_Bool MyWin::Close() { sal_Bool bRet = WorkWindow::Close(); if( bRet ) Application::Quit(); return bRet; } void MyWin::parseList( const OString& rList ) { sal_Int32 nTokenPos = 0; OUString aElementType; m_aSvpBitmaps.Clear(); while( nTokenPos >= 0 ) { OString aLine = rList.getToken( 0, '\n', nTokenPos ); if( ! aLine.getLength() || *aLine.getStr() == '#' ) continue; if( aLine.startsWith( "ElementType: " ) ) aElementType = OStringToOUString( aLine.copy( 13 ), RTL_TEXTENCODING_ASCII_US ); else { OUStringBuffer aNewElement( 64 ); aNewElement.append( aElementType ); aNewElement.appendAscii( ": " ); aNewElement.append( OStringToOUString( aLine, RTL_TEXTENCODING_ASCII_US ) ); m_aSvpBitmaps.InsertEntry( aNewElement.makeStringAndClear() ); } } } OString MyWin::processCommand( const OString& rCommand ) { static const char* pEnv = getenv("SVP_LISTENER_PORT"); OStringBuffer aAnswer; int nPort = (pEnv && *pEnv) ? atoi(pEnv) : 8000; int nSocket = socket( PF_INET, SOCK_STREAM, 0 ); if( nSocket >= 0) { struct sockaddr_in addr; memset(&addr, 0, sizeof(struct sockaddr_in)); addr.sin_family = AF_INET; addr.sin_port = htons(nPort); addr.sin_addr.s_addr = INADDR_ANY; if( connect( nSocket, (const sockaddr*)&addr, sizeof(addr) ) ) { perror( "SvpElementContainer: connect() failed" ); close(nSocket); } else { write( nSocket, rCommand.getStr(), rCommand.getLength() ); write( nSocket, "\n", 1 ); char buf[256]; ssize_t nBytes = 0; do { nBytes = read( nSocket, buf, sizeof(buf) ); aAnswer.append( buf, nBytes ); } while( nBytes == sizeof( buf ) ); } } else perror( "SvpElementContainer: socket() failed\n" ); return aAnswer.makeStringAndClear(); } IMPL_LINK( MyWin, ListHdl, Button*, ) { parseList( processCommand( "list" ) ); return 0; } IMPL_LINK( MyWin, QuitHdl, Button*, ) { processCommand( "quit" ); return 0; } IMPL_LINK( MyWin, SelectHdl, ListBox*, ) { String aEntry = m_aSvpBitmaps.GetSelectEntry(); sal_uInt16 nPos = aEntry.SearchAscii( ": " ); if( nPos != STRING_NOTFOUND ) { OStringBuffer aCommand( 64 ); aCommand.append( "get " ); aCommand.append( OUStringToOString( aEntry.Copy( nPos+2 ), RTL_TEXTENCODING_ASCII_US ) ); OString aAnswer( processCommand( aCommand.makeStringAndClear() ) ); SvMemoryStream aStream( aAnswer.getLength() ); aStream.Write( aAnswer.getStr(), aAnswer.getLength() ); aStream.Seek( STREAM_SEEK_TO_BEGIN ); Bitmap aBitmap; aStream >> aBitmap; fprintf( stderr, "got bitmap of size %ldx%ld\n", sal::static_int_cast< long >(aBitmap.GetSizePixel().Width()), sal::static_int_cast< long >(aBitmap.GetSizePixel().Height())); Size aFixedSize( aBitmap.GetSizePixel() ); aFixedSize.Width() += 10; aFixedSize.Height() += 10; m_aImage.SetSizePixel( aFixedSize ); m_aImage.SetImage( Image( BitmapEx( aBitmap ) ) ); } return 0; } void MyWin::MouseMove( const MouseEvent& rMEvt ) { WorkWindow::MouseMove( rMEvt ); } void MyWin::MouseButtonDown( const MouseEvent& rMEvt ) { WorkWindow::MouseButtonDown( rMEvt ); } void MyWin::MouseButtonUp( const MouseEvent& rMEvt ) { WorkWindow::MouseButtonUp( rMEvt ); } void MyWin::KeyInput( const KeyEvent& rKEvt ) { WorkWindow::KeyInput( rKEvt ); } void MyWin::KeyUp( const KeyEvent& rKEvt ) { WorkWindow::KeyUp( rKEvt ); } void MyWin::Paint( const Rectangle& rRect ) { WorkWindow::Paint( rRect ); } void MyWin::Resize() { WorkWindow::Resize(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ istro/suse/suse-4.0'>distro/suse/suse-4.0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
The issue of 362d4f0cd4e50111edfae9d30c90602c37ed65a2 "Explicitly mark overriding destructors as 'virtual'" appears to no longer be a problem with MSVC 2013. (The little change in the rewriting code of compilerplugins/clang/override.cxx was necessary to prevent an endless loop when adding "override" to OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager(); in chart2/source/inc/LifeTime.hxx, getting stuck in the leading OOO_DLLPUBLIC_CHARTTOOLS macro. Can't remember what that isAtEndOfImmediateMacroExpansion thing was originally necessary for, anyway.) Change-Id: I534c634504d7216b9bb632c2775c04eaf27e927e
2015-11-15use initialiser for Sequence<OUString>Noel Grandin
replaced using: git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<\s*OUString\s*> (\w+)\(\s*1\s*\); .*\[0\] = (\S+);/Sequence<OUString> \1 { \2 };/g" Change-Id: I20ad0489da887a9712982531c3b127339bb8b3b9 Reviewed-on: https://gerrit.libreoffice.org/19969 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-05-27cppcheck: noExplicitConstructorCaolán McNamara
Change-Id: I27c24d3284a8e0678fc5c041426b4a7e71cbd363
2014-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin
It turns out that almost none of them were necessary. Change-Id: I1311ed28409c682b57ea8d149bcbaf2c49133e83 Reviewed-on: https://gerrit.libreoffice.org/12133 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-08Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part6Julien Nabet
Change-Id: Ib523206d67ad13416557be1b37a58ba7a9791ca5