Codebase list ruby-fxruby / 6a3bc375-f65d-4a5f-9572-148c411aee7b/main lib / fox16 / exceptions_for_fxerror.rb
6a3bc375-f65d-4a5f-9572-148c411aee7b/main

Tree @6a3bc375-f65d-4a5f-9572-148c411aee7b/main (Download .tar.gz)

exceptions_for_fxerror.rb @6a3bc375-f65d-4a5f-9572-148c411aee7b/mainraw · history · blame

module Fox
  FXWindow.subclasses.each do |klass|
    klass.send(:alias_method, :create_without_parent_created_check, :create)
    klass.send(:define_method, :create) do
      unless parent.created?
        raise RuntimeError, "trying to create window before creating parent window"
      end
      if owner && !owner.created?
        raise RuntimeError, "trying to create window before creating owner window"
      end
      if visual.nil?
        raise RuntimeError, "trying to create window without a visual"
      end
      create_without_parent_created_check
    end
  end
end