027ac56363
Change-Id: I2c280be12f36c1538e922286745aabc62482423d
39 lines
1,005 B
C++
39 lines
1,005 B
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/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_SVX_EXTEDIT_HXX
|
|
#define INCLUDED_SVX_EXTEDIT_HXX
|
|
|
|
#include <svtools/grfmgr.hxx>
|
|
#include <osl/file.hxx>
|
|
#include <osl/process.h>
|
|
#include <vcl/graph.hxx>
|
|
#include <vcl/timer.hxx>
|
|
#include <svx/svxdllapi.h>
|
|
|
|
class SVX_DLLPUBLIC ExternalToolEdit
|
|
{
|
|
public:
|
|
GraphicObject* m_pGraphicObject;
|
|
OUString m_aFileName;
|
|
|
|
ExternalToolEdit();
|
|
virtual ~ExternalToolEdit();
|
|
|
|
virtual void Update( Graphic& aGraphic ) = 0;
|
|
void Edit( GraphicObject *pGraphic );
|
|
|
|
DECL_LINK( StartListeningEvent, void *pEvent );
|
|
|
|
static void threadWorker( void *pThreadData );
|
|
static void HandleCloseEvent( ExternalToolEdit* pData );
|
|
};
|
|
|
|
|
|
#endif
|