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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/* 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) 1997-2011, 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.
*/
:- module(pce_set_item, []).
:- use_module(library(pce)).
:- require([ default/3
, ignore/1
, send_list/3
]).
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class set_item defines a compound dialog object, consisting of a
browser for a list of object with a user-supplied item below it. Right
of the browser is a `remove' button, and right of the user-supplied item
is the `Add' button.
All normal dialog-item behaviour is implemented:
<->selection: set the selection from a chain of values
->clear: remove all items
<->modified: set/query modified status
->apply: activate message
Set rendering
-------------
By default, the set it represented by a list_browser object, which
implies <-print_name is used to render the member to its textual
representation.
It is possible to provide an alternative browser for the set using the
browser argument. This browser should understand the methods
->members Define current set of members
<-members Get current set of members
->append Add a member
->delete Delete a member
See class list_browser for intended behaviour of these methods. The
library(pce_graphical_browser) provides a graphical browser that can be
used with this class. See the test_arrows/0 demo/test at the end of
this file.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
:- pce_begin_class(set_item, dialog_group,
"Edit a set of values").
variable(modified, bool := @off, both, "Modified status").
variable(message, code*, both, "Associated message").
variable(browser, graphical, get, "Browser for the set").
variable(single_item, graphical*, get, "Editor for single item").
initialise(SE, One:item=graphical, Label:name=[name], Msg:message=[code]*,
LB0:browser=[graphical]) :->
"Create from an editor for a single value"::
send(SE, send_super, initialise, Label, box),
default(Msg, @nil, TheMsg),
( LB0 == @default
-> new(LB, list_browser)
; LB = LB0
),
send(SE, slot, message, TheMsg),
send(SE, append, LB),
send(SE, slot, browser, LB), % hack, may be window (decorator)
send(SE, append, new(RM, button(remove)), right),
send(LB, multiple_selection, @on),
make_browser_stretchable(LB, 100),
send(LB, select_message,
and(if(message(LB?selection, empty),
message(RM, active, @off),
message(RM, active, @on)),
if(LB?selection?size == 1,
message(SE, edit_selection, LB?selection?head),
message(One, clear)))),
send(LB, open_message,
if(LB?selection?size == 1,
message(SE, edit_selection, LB?selection?head))),
send(SE, append, One, next_row),
( send(One, has_send_method, show_label)
-> send(One, show_label, @off)
; true
),
send(SE, slot, single_item, One),
send(SE, append, new(Add, button(add)), right),
send(RM, reference, point(0,0)),
send(RM, active, @off),
send_list([LB, One], alignment, column),
send_list([RM, Add], alignment, right),
( get(One, hor_stretch, HS)
-> send(SE, attribute, hor_stretch, HS)
; true
).
make_browser_stretchable(LB, Stretch) :-
send(LB, instance_of, window),
get(LB, decoration, Decoration),
Decoration \== @nil,
!,
send(Decoration, attribute, hor_stretch, Stretch).
make_browser_stretchable(LB, Stretch) :-
send(LB, attribute, hor_stretch, Stretch).
size(SE, Size:size) :->
send(SE, send_super, size, Size),
send(SE, layout_dialog).
modified_item(SE, Item:graphical, Modified:bool) :->
Modified == @on,
get(SE, single_item, Item),
get(SE, member, add, Add),
send(Add, active, @on).
:- pce_group(apply).
apply(SE, Always:[bool]) :->
"Forward <-selection over <-message"::
( ( Always == @on
; get(SE, modified, @on)
),
get(SE, message, Msg),
Msg \== @nil
-> get(SE, selection, Value),
ignore(send(Msg, forward, Value))
; true
).
:- pce_group(edit).
remove(SE) :->
"Remove selected item(s)"::
get(SE, browser, LB),
get(LB, selection, Chain),
( send(Chain, empty)
-> true
; send(Chain, for_some, % allow for cancel
message(SE, remove_item, @arg1)),
get(SE, member, remove, Remove),
send(Remove, active, off),
send(SE, modified, @on)
).
add(SE) :->
"Add selection of single item to browser"::
get(SE, single_item, One),
get(One, selection, Selection),
get(SE, browser, LB),
send(SE, check_duplicate, Selection),
send(LB, append, Selection),
send(One, clear),
send(One, modified, @off),
get(SE, member, add, Add),
send(Add, active, @off),
send(SE, modified, @on).
check_duplicate(SE, Item:any) :->
get(SE, browser, LB),
( send(LB, member, Item)
-> send(LB, report, error, '"%s" is already in the set', Item),
fail
; true
).
remove_item(SE, Item:'dict_item|any') :->
"Called by ->remove to delete the items from the browser"::
get(SE, browser, Browser),
send(Browser, delete, Item).
edit_selection(SE, Sel:any) :->
"Edit object opened in browser"::
( get(SE, browser, Browser),
send(Browser, instance_of, list_browser),
get(Sel, key, Value)
; Value = Sel
),
get(SE, single_item, One),
send(One, selection, Value).
:- pce_group(selection).
selection(SE, Values:chain) :->
"Set the selection"::
get(SE, browser, LB),
send(LB, members, Values),
send(SE, slot, modified, @off).
selection(SE, Values:chain) :<-
"Fetch the selection"::
get(SE, browser, LB),
( send(LB, instance_of, list_browser)
-> get(LB, members, DictItems),
get(DictItems, map, @arg1?key, Values)
; get(LB, members, Values)
),
send(SE, slot, modified, @off).
clear(SE) :->
"Remove all members from the set"::
send(SE, selection, new(chain)).
:- pce_end_class.
/*
test_arrows :-
pce_autoload(arrow_item, library(pce_arrow_item)),
ensure_loaded(library(pce_graphical_browser)),
new(LB, graphical_browser(@default, @default,
?(@prolog, make_arrow_line, @arg1),
@arg1?second_arrow)),
send(LB, single_column, @on),
new(D, dialog('Set Editor test')),
new(SE, set_item(new(arrow_item), arrows, browser:=LB)),
send(D, append, SE),
send(D, open).
make_arrow_line(Arrow, Line) :-
new(Line, line(0, 0, 50, 0)),
send(Line, second_arrow, Arrow).
*/
|