INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "standard dialogs"
project: "Visual Eiffel"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: grape
class PRINTER_DIALOG
inherit

DIALOG
rename
init as dialog_init,
make as make_dialog
redefine
run
end

DIALOG
rename
make as make_dialog
redefine
init,
run
select
init
end
creation

make_printer_setup,
make_printing_options
feature -- These fields contain the values entered by the user if
-- the dialog returns NOT ZERO value

all_pages: BOOLEAN

only_selection: BOOLEAN

from_page, to_page: INTEGER

number_of_copies: INTEGER

collate_copies: BOOLEAN
feature

make_printer_setup (p: PRINTER)

make_printing_options (p: PRINTER; no__pagenums, no__selection: BOOLEAN; min__page, max__page, from__page, to__page: INTEGER)
end -- class PRINTER_DIALOG

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES