1 /* AbiWord
2  * Copyright (c) 2005 Martin Sevior <msevior@physics.unimelb.edu.au>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA.
18  */
19 
20 #ifndef FV_UNIXVISUALINLINEIMAGE_H
21 #define FV_UNIXVISUALINLINEIMAGE_H
22 
23 #include "pt_Types.h"
24 #include "fl_FrameLayout.h"
25 #include "ut_string_class.h"
26 #include "fv_InlineImage.h"
27 
28 class FV_View;
29 
30 class ABI_EXPORT FV_UnixVisualInlineImage : public FV_VisualInlineImage
31 {
32 
33 public:
34 
35 	FV_UnixVisualInlineImage (FV_View * pView);
36 	virtual ~FV_UnixVisualInlineImage();
37 	virtual void mouseDrag(UT_sint32 x, UT_sint32 y);
38 private:
39 	bool    m_bDragOut;
40 };
41 
42 #endif /* FV_UNIXVISUALINLINEIMAGE_H */
43