event-context.h revision aded4b44e9194df7c9905c5787d1c7a9553d12cd
#ifndef SEEN_SP_EVENT_CONTEXT_H
#define SEEN_SP_EVENT_CONTEXT_H
/*
* 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 "knot.h"
#include "preferences.h"
}
}
#define SP_IS_EVENT_CONTEXT(obj) (dynamic_cast<const SPEventContext*>((const SPEventContext*)obj) != NULL)
{
enum DelayedSnapEventOrigin {
UNDEFINED_HANDLER = 0,
};
DelayedSnapEvent(SPEventContext *event_context, gpointer const dse_item, gpointer dse_item2, GdkEventMotion const *event, DelayedSnapEvent::DelayedSnapEventOrigin const origin)
: _timer_id(0), _event(NULL), _item(dse_item), _item2(dse_item2), _origin(origin), _event_context(event_context)
{
}
~DelayedSnapEvent() {
}
};
void sp_event_context_snap_delay_handler(SPEventContext *ec, gpointer const dse_item, gpointer const dse_item2, GdkEventMotion *event, DelayedSnapEvent::DelayedSnapEventOrigin origin);
/**
* Base class for Event processors.
*
* This is per desktop object, which (its derivatives) implements
* different actions bound to mouse events.
*
* SPEventContext is an abstract base class of all tools. As the name
* indicates, event context implementations process UI events (mouse
* movements and keypresses) and take actions (like creating or modifying
* objects). There is one event context implementation for each tool,
* plus few abstract base classes. Writing a new tool involves
* subclassing SPEventContext.
*/
void enableSelectionCue (bool enable=true);
void enableGrDrag (bool enable=true);
bool deleteSelectedDrag(bool just_one);
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;
bool _dse_callback_in_process;
// Is called by our pref_observer if a preference has been changed.
virtual void deactivate();
/**
* An observer that relays pref changes to the derived classes.
*/
}
}
SPEventContext * const ec;
};
//protected:
void sp_event_context_update_cursor();
SPEventContext(const SPEventContext&);
};
#define SP_EVENT_CONTEXT_STATIC 0
//SPEventContext *sp_event_context_new(GType type, SPDesktop *desktop, gchar const *pref_path, unsigned key);
//void sp_event_context_finish(SPEventContext *ec);
//void sp_event_context_deactivate(SPEventContext *ec);
//void sp_event_context_update_cursor(SPEventContext *ec);
SPItem *sp_event_context_find_item (SPDesktop *desktop, Geom::Point const &p, bool select_under, bool into_groups);
//ShapeEditor *sp_event_context_get_shape_editor (SPEventContext *ec);
//void ec_shape_event_attr_changed(Inkscape::XML::Node *shape_repr,
// gchar const *name, gchar const *old_value, gchar const *new_value,
// bool const is_interactive, gpointer const data);
//
//void event_context_print_event_info(GdkEvent *event, bool print_return = true);
#endif // SEEN_SP_EVENT_CONTEXT_H
/*
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:fileencoding=utf-8:textwidth=99 :