View source with raw comments or as raw
    1/*  Part of XPCE --- The SWI-Prolog GUI toolkit
    2
    3    Author:        Jan Wielemaker and Anjo Anjewierden
    4    E-mail:        jan@swi.psy.uva.nl
    5    WWW:           http://www.swi.psy.uva.nl/projects/xpce/
    6    Copyright (c)  1985-2002, University of Amsterdam
    7    All rights reserved.
    8
    9    Redistribution and use in source and binary forms, with or without
   10    modification, are permitted provided that the following conditions
   11    are met:
   12
   13    1. Redistributions of source code must retain the above copyright
   14       notice, this list of conditions and the following disclaimer.
   15
   16    2. Redistributions in binary form must reproduce the above copyright
   17       notice, this list of conditions and the following disclaimer in
   18       the documentation and/or other materials provided with the
   19       distribution.
   20
   21    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   22    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   23    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   24    FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   25    COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   26    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
   27    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   28    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
   29    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
   31    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   32    POSSIBILITY OF SUCH DAMAGE.
   33*/
   34
   35:- module(pce_make_dialog,
   36          [ make_dialog/2
   37          ]).   38:- meta_predicate make_dialog(-, :).   39
   40:- use_module(library(pce)).   41:- require([ forall/2
   42           , member/2
   43           , memberchk/2
   44           , send_list/3
   45           , strip_module/3
   46           ]).   47
   48
   49make_dialog(Dialog, Id) :-
   50    strip_module(Id, Module, TheId),
   51    make_dialog(Dialog, Module, TheId).
   52
   53make_dialog(Dialog, Module, TheId) :-
   54    Module:dialog(TheId, Attributes),
   55    memberchk(object := Dialog, Attributes),
   56    do(make_dialog_item,   parts,         Attributes),
   57    do(modify,             modifications, Attributes),
   58    do(popups,             popups,        Attributes),
   59    do(behaviour(Module),  behaviour,     Attributes),
   60    do(layout(Dialog),     layout,        Attributes),
   61    do(initialise,         initialise,    Attributes).
   62
   63do(Goal, Attribute, List) :-
   64    memberchk(Attribute := Value, List),
   65    !,
   66    maplist(Goal, Value).
   67do(_, _, _).
   68
   69
   70                 /*******************************
   71                 *            PARTS             *
   72                 *******************************/
   73
   74make_dialog_item(Var := NewTerm) :-
   75    new(Var, NewTerm).
   76
   77                 /*******************************
   78                 *        MODIFICATIONS         *
   79                 *******************************/
   80
   81modify(Ref := List) :-
   82    modify(List, Ref).
   83
   84modify([], _).
   85modify([Attr := Value|T], Ref) :-
   86    send_list(Ref, Attr, Value),
   87    modify(T, Ref).
   88
   89
   90                 /*******************************
   91                 *            POPUPS            *
   92                 *******************************/
   93
   94popups(Ref := [ PopupSelector := NewTerm, Attributes ]) :-
   95    new(Popup, NewTerm),
   96    modify(Popup := Attributes),
   97    send(Ref, PopupSelector, Popup).
   98
   99
  100                 /*******************************
  101                 *            LAYOUT            *
  102                 *******************************/
  103
  104layout(Dialog, below(I1, I2)) :-
  105    !,
  106    attach(Dialog, I1, I2),
  107    send(I1, below, I2).
  108layout(Dialog, right(I1, I2)) :-
  109    !,
  110    attach(Dialog, I1, I2),
  111    send(I1, right, I2).
  112layout(Dialog, position(I1, Pos)) :-
  113    send(Dialog, display, I1, Pos).
  114layout(Dialog, area(I1, area(X,Y,W,H))) :-
  115    send(I1, auto_align, @off),
  116    send(I1, do_set, X, Y, W, H),
  117    send(Dialog, display, I1).
  118
  119attach(Dialog, I1, _I2) :-
  120    get(I1, device, Dialog),
  121    !.
  122attach(Dialog, _I1, I2) :-
  123    get(I2, device, Dialog),
  124    !.
  125attach(Dialog, _I1, I2) :-
  126    send(Dialog, append, I2).
  127
  128
  129                 /*******************************
  130                 *            DYNAMICS          *
  131                 *******************************/
  132
  133behaviour(Module, Ref := List) :-
  134    forall(member(Attr := Value, List), Module:send(Ref, Attr, Value)).
  135
  136
  137                 /*******************************
  138                 *           INITIALISE         *
  139                 *******************************/
  140
  141initialise(_Name := Code) :-           % compatibility
  142    !,
  143    send(Code, forward).
  144initialise(Goal) :-
  145    Goal