/usr/include/wxSVG/SVGZoomEvent.h is in libwxsvg-dev 2:1.2~dfsg0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | //////////////////////////////////////////////////////////////////////////////
// Name: SVGZoomEvent.h
// Author: Alex Thuering
// Copyright: (c) 2005 Alex Thuering
// Licence: wxWindows licence
// Notes: generated by generate.py
//////////////////////////////////////////////////////////////////////////////
#ifndef WX_SVG_ZOOM_EVENT_H
#define WX_SVG_ZOOM_EVENT_H
#include "UIEvent.h"
#include "SVGRect.h"
#include "SVGPoint.h"
class wxSVGZoomEvent:
public wxUIEvent
{
protected:
wxSVGRect m_zoomRectScreen;
double m_previousScale;
wxSVGPoint m_previousTranslate;
double m_newScale;
wxSVGPoint m_newTranslate;
public:
inline const wxSVGRect& GetZoomRectScreen() const { return m_zoomRectScreen; }
inline void SetZoomRectScreen(const wxSVGRect& n) { m_zoomRectScreen = n; }
inline double GetPreviousScale() const { return m_previousScale; }
inline void SetPreviousScale(double n) { m_previousScale = n; }
inline const wxSVGPoint& GetPreviousTranslate() const { return m_previousTranslate; }
inline void SetPreviousTranslate(const wxSVGPoint& n) { m_previousTranslate = n; }
inline double GetNewScale() const { return m_newScale; }
inline void SetNewScale(double n) { m_newScale = n; }
inline const wxSVGPoint& GetNewTranslate() const { return m_newTranslate; }
inline void SetNewTranslate(const wxSVGPoint& n) { m_newTranslate = n; }
public:
wxSVGZoomEvent(): m_previousScale(0), m_newScale(0) {}
virtual ~wxSVGZoomEvent() {}
};
#endif // WX_SVG_ZOOM_EVENT_H
|