------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Cheddar is a GNU GPL real-time scheduling analysis tool. -- This program provides services to automatically check schedulability and -- other performance criteria of real-time architecture models. -- -- Copyright (C) 2002-2023, Frank Singhoff, Alain Plantec, Jerome Legrand, -- Hai Nam Tran, Stephane Rubini -- -- The Cheddar project was started in 2002 by -- Frank Singhoff, Lab-STICC UMR 6285, Université de Bretagne Occidentale -- -- Cheddar has been published in the "Agence de Protection des Programmes/France" in 2008. -- Since 2008, Ellidiss technologies also contributes to the development of -- Cheddar and provides industrial support. -- -- The full list of contributors and sponsors can be found in README.md -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- -- Contact : cheddar@listes.univ-brest.fr -- ------------------------------------------------------------------------------ -- Last update : -- $Rev: 4187 $ -- $Date: 2022-06-27 22:26:07 +0200 (lun., 27 juin 2022) $ -- $Author: singhoff $ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ with Gtkada.Builder; use Gtkada.Builder; with Glib; use Glib; with Gtk; use Gtk; with Gtk.Widget; use Gtk.Widget; with buffer_set; use buffer_set; with task_set; use task_set; with resource_set; use resource_set; with message_set; use message_set; with processor_set; use processor_set; with multiprocessor_services_interface; use multiprocessor_services_interface; use multiprocessor_services_interface.scheduling_result_per_processor_package; package graphical_editor.scheduling_simulations_callbacks is procedure read_scheduling_duration_and_draw_scheduling (object : access gtkada_builder_record'class); procedure read_scheduling_customization_widget (object : access gtkada_builder_record'class); procedure show_scheduling_simulation_duration_widget (object : access gtkada_builder_record'class); procedure show_scheduling_simulation_zoom_in (object : access gtkada_builder_record'class); procedure show_scheduling_simulation_zoom_out (object : access gtkada_builder_record'class); procedure show_scheduling_simulation_zoom_reset (object : access gtkada_builder_record'class); procedure show_scheduling_simulation_zoom_fit (object : access gtkada_builder_record'class); procedure close_widget (object : access gtkada_builder_record'class); procedure call_customized_simulation; procedure call_uncustomized_simulation; end graphical_editor.scheduling_simulations_callbacks;