-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
-- file, You can obtain one at https://mozilla.org/MPL/2.0/.

{-|
Description : Reactive helpers for specific GTK widgets
Copyright   : Sven Bartscher 2020
License     : MPL-2.0
Maintainer  : sven.bartscher@weltraumschlangen.de
Stability   : experimental

This module re-exports helpers for various kinds of GTK widgets from
its submodules.
-}
module Reflex.GI.Gtk.Widget
  ( module Reflex.GI.Gtk.Widget.Bin
  , module Reflex.GI.Gtk.Widget.Box
  , module Reflex.GI.Gtk.Widget.Utils
  ) where

import Reflex.GI.Gtk.Widget.Bin
import Reflex.GI.Gtk.Widget.Box
import Reflex.GI.Gtk.Widget.Utils