package ONO::Lib::PDF;
################################################################################
# COPYRIGHT / LICENSE #
################################################################################
#
# This file is part of the ONO Software Project.
#
# Copyright (C) 2000-2025 Jos KIRPS [ www.kirps.com | jos_AT_kirps_DOT_com ]
# and The Joopita Project [ www.joopita.org | contact_AT_joopita_DOT_com ]
#
# This file, as well as other parts of the ONO Software Project or related
# elements, are FREE SOFTWARE available under the ARTISTIC LICENSE 2.0.
#
# 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.
#
# For the full license, see /ono/osr/license/LICENSE.txt, or write to
# jos_AT_kirps_DOT_com or contact_AT_joopita_DOT_com.
#
################################################################################
# END OF COPYRIGHT / LICENSE, HERE COMES THE CODE ... #
################################################################################
use strict;
#: ONO_Lib_UI is, along with ono.css, ono_buttons.css and ono.js, responsible
#: the the user interface and the "look and feel" of both ONO itself, and of
#: projects created with it.
#:
#: ONO_Lib_UI's sub-modules offer a large number of user interface modules
#: that can be used as building blocks to develop a consistent user experience.
use ONO::Lib::UI::Animation;
use ONO::Lib::UI::MSG;
use ONO::Lib::UI::Box;
use ONO::Lib::UI::Check;
use ONO::Lib::UI::ColorPicker;
use ONO::Lib::UI::FontOptions;
use ONO::Lib::UI::Form;
use ONO::Lib::UI::Help;
use ONO::Lib::UI::Icon;
use ONO::Lib::UI::Image;
use ONO::Lib::UI::Label;
use ONO::Lib::UI::List;
use ONO::Lib::UI::MenuBar;
use ONO::Lib::UI::Progress;
use ONO::Lib::UI::Radio;
use ONO::Lib::UI::Range;
use ONO::Lib::UI::Rate;
use ONO::Lib::UI::Select;
use ONO::Lib::UI::Shape;
use ONO::Lib::UI::Sticker;
use ONO::Lib::UI::Tabs;
use ONO::Lib::UI::Tags;
###############################################################################
# end of script
###############################################################################
1;
__END__