Class: Wx::XmlResourceFlags

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/xml_resource.rb

Overview

Flags which can be used with Wx::XmlResource::XmlResource.

Requires:

  • USE_XRC

Constant Summary collapse

XRC_USE_LOCALE =

Translatable strings will be translated via _.

Wx::XmlResourceFlags.new(1)
XRC_NO_SUBCLASSING =

Subclass property of object nodes will be ignored (useful for previews in XRC editors).

Wx::XmlResourceFlags.new(2)
XRC_NO_RELOADING =

Prevent the XRC files from being reloaded from disk in case they have been modified there since being last loaded (may slightly speed up loading them).

Wx::XmlResourceFlags.new(4)
XRC_USE_ENVVARS =

Expand environment variables for paths in XRC (such as bitmaps or icons).

Wx::XmlResourceFlags.new(8)