/* Part of XPCE --- The SWI-Prolog GUI toolkit Author: Jan Wielemaker and Anjo Anjewierden E-mail: jan@swi.psy.uva.nl WWW: http://www.swi.psy.uva.nl/projects/xpce/ Copyright (c) 1985-2002, University of Amsterdam All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include static status initialiseClickGesture(ClickGesture g, Name button, Modifier modifier, Name multi, Code execute, Code preview, Code cancel) { if ( isDefault(execute) ) execute = NIL; if ( isDefault(preview) ) preview = NIL; if ( isDefault(cancel) ) cancel = NIL; TRY(initialiseGesture((Gesture) g, button, modifier)); assign(g, down_position, newObject(ClassPoint, EAV)); assign(g, multiclick, multi); assign(g, execute_message, execute); assign(g, preview_message, preview); assign(g, cancel_message, cancel); succeed; } /******************************** * GESTURE BEHAVIOUR * ********************************/ static status verifyClickGesture(ClickGesture g, EventObj ev) { if ( isDefault(g->multiclick) || getMulticlickEvent(ev) == g->multiclick ) { copyPoint(g->down_position, getPositionEvent(ev, DEFAULT)); succeed; } fail; } static status initiateClickGesture(ClickGesture g, EventObj ev) { if ( notNil(g->preview_message) ) return forwardReceiverCode(g->preview_message, getMasterEvent(ev), ev, EAV); succeed; } static status dragClickGesture(ClickGesture g, EventObj ev) { if ( notNil(g->max_drag_distance) ) { PceWindow sw; if ( instanceOfObject((sw=ev->window), ClassWindow) && valInt(getDistanceEvent(sw->focus_event, ev)) > valInt(g->max_drag_distance) ) send(g, NAME_cancel, ev, EAV); } succeed; } static status cancelClickGesture(ClickGesture g, EventObj ev) { if ( notNil(g->cancel_message) ) forwardReceiverCode(g->cancel_message, getMasterEvent(ev), ev, EAV); return cancelGesture((Gesture) g, ev); } static status terminateClickGesture(ClickGesture g, EventObj ev) { if ( insideEvent(ev, DEFAULT) || valInt(getDistancePoint(g->down_position, getPositionEvent(ev, DEFAULT))) < valInt(g->max_drag_distance) ) { if ( notNil(g->execute_message) ) { if ( getMulticlickEvent(ev) == NAME_single ) { forwardReceiverCode(g->execute_message, getMasterEvent(ev), ev, EAV); } else { DisplayObj d = getDisplayGraphical((Graphical) ev->window); busyCursorDisplay(d, DEFAULT, DEFAULT); forwardReceiverCode(g->execute_message, getMasterEvent(ev), ev, EAV); busyCursorDisplay(d, NIL, DEFAULT); } } } else { send(g, NAME_cancel, ev, EAV); } succeed; } /******************************* * CLASS DECLARATION * *******************************/ /* Type declarations */ static char *T_initialise[] = { "button=[button_name]", "modifier=[modifier]", "multiple=[{single,double,triple}]", "message=[code]*", "preview=[code]*", "cancel=[code]*" }; /* Instance Variables */ static vardecl var_clickGesture[] = { IV(NAME_multiclick, "[{single,double,triple}]", IV_BOTH, NAME_modifier, "Demand single, double or triple click"), IV(NAME_downPosition, "point", IV_GET, NAME_internal, "Position of the down event"), IV(NAME_executeMessage, "code*", IV_BOTH, NAME_action, "Message sent on up inside area"), IV(NAME_previewMessage, "code*", IV_BOTH, NAME_feedback, "Message sent on down"), IV(NAME_cancelMessage, "code*", IV_BOTH, NAME_feedback, "Message sent on up outside area"), IV(NAME_executeCursor, "cursor*", IV_BOTH, NAME_feedback, "Cursor displayed while message is executed"), IV(NAME_maxDragDistance, "int*", IV_BOTH, NAME_cancel, "Cancel after dragging this far") }; /* Send Methods */ static senddecl send_clickGesture[] = { SM(NAME_cancel, 1, "event", cancelClickGesture, DEFAULT, "Cancel this gesture and try the next"), SM(NAME_drag, 1, "event", dragClickGesture, DEFAULT, "Does nothing"), SM(NAME_initialise, 6, T_initialise, initialiseClickGesture, DEFAULT, "Create from button, modifier, multi, ..."), SM(NAME_initiate, 1, "event", initiateClickGesture, DEFAULT, "Send preview message"), SM(NAME_terminate, 1, "event", terminateClickGesture, DEFAULT, "Send execute or cancel message"), SM(NAME_verify, 1, "event", verifyClickGesture, DEFAULT, "Verify modifier and multiclick") }; /* Get Methods */ #define get_clickGesture NULL /* static getdecl get_clickGesture[] = { }; */ /* Resources */ static classvardecl rc_clickGesture[] = { RC(NAME_button, "button_name", "left", "Active on which button (left)"), RC(NAME_cursor, "[cursor]", "@default", "Cursor while active"), RC(NAME_executeCursor, "cursor*", "watch", "Cursor while running execute_message"), RC(NAME_maxDragDistance, "int*", "5", "Cancel after dragging this far"), RC(NAME_modifier, "modifier", "", "Condition on shift, control and meta") }; /* Class Declaration */ static Name clickGesture_termnames[] = { NAME_button, NAME_modifier, NAME_multiclick, NAME_executeMessage, NAME_previewMessage, NAME_cancelMessage }; ClassDecl(clickGesture_decls, var_clickGesture, send_clickGesture, get_clickGesture, rc_clickGesture, 6, clickGesture_termnames, "$Rev$"); status makeClassClickGesture(Class class) { return declareClass(class, &clickGesture_decls); }