event-context.h revision b7616586becf853e568343908ffa94b943249e10
#ifndef __SP_EVENT_CONTEXT_H__
#define __SP_EVENT_CONTEXT_H__
/** \file
* SPEventContext: base class for event processors
*
* This is per desktop object, which (its derivatives) implements
* different actions bound to mouse events.
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Frank Felfe <innerspace@iname.com>
*
* Copyright (C) 1999-2002 authors
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib-object.h>
#include <gdk/gdktypes.h>
#include <gdk/gdkevents.h>
#include <libnr/nr-forward.h>
struct GrDrag;
struct SPDesktop;
struct SPItem;
}
}
/**
* Base class for Event processors.
*/
void enableSelectionCue (bool enable=true);
void enableGrDrag (bool enable=true);
/// Desktop eventcontext stack
unsigned key;
gchar const *const *cursor_shape;
bool within_tolerance; ///< are we still within tolerance of origin
///< be selected if this is a click not drag
return _message_context;
}
bool space_panning;
};
/**
* The SPEvent vtable.
*/
};
#define SP_EVENT_CONTEXT_STATIC 0
SPEventContext *sp_event_context_new(GType type, SPDesktop *desktop, Inkscape::XML::Node *prefs_repr, unsigned key);
SPItem *sp_event_context_find_item (SPDesktop *desktop, NR::Point const p, bool select_under, bool into_groups);
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :