HPS::Sketchup::ImportOptionsKit

class HPS::Sketchup::ImportOptionsKit : public HPS::SprocketKit

The ImportOptionsKit class is a user space object. It contains settings controlling what and how data is imported via Sketchup.

Public Functions

virtual bool Empty() const

Indicates whether this ImportOptionsKit has any values set on it.

Returns

true if no values are set on this ImportOptionsKit, false otherwise.

bool Equals(ImportOptionsKit const &in_kit) const

Check if the source ImportOptionsKit is equivalent to this ImportOptionsKit.

Parameters

in_kit – The source ImportOptionsKit to compare to this ImportOptionsKit.

Returns

true if the objects are equivalent, false otherwise.

ImportOptionsKit()

The default constructor creates an empty ImportOptionsKit object.

ImportOptionsKit(ImportOptionsKit &&in_that)

The move constructor creates an ImportOptionsKit by transferring the underlying impl of the rvalue reference to this ImportOptionsKit thereby avoiding a copy and allocation.

Parameters

in_that – An rvalue reference to an ImportOptionsKit to take the impl from.

ImportOptionsKit(ImportOptionsKit const &in_kit)

The copy constructor creates a new ImportOptionsKit object that contains the same settings as the source ImportOptionsKit.

Parameters

in_kit – The source ImportOptionsKit to copy.

inline virtual HPS::Type ObjectType() const

This function returns the type the object, as declared (if the object is derived, this does not give the true type of the derived object).

Returns

The declared type of the object in question, which may differ from the true, underlying type.

bool operator!=(ImportOptionsKit const &in_kit) const

Check if the source ImportOptionsKit is not equivalent to this ImportOptionsKit.

Parameters

in_kit – The source ImportOptionsKit to compare to this ImportOptionsKit.

Returns

true if the objects are not equivalent, false otherwise.

ImportOptionsKit &operator=(ImportOptionsKit &&in_that)

The move assignment operator transfers the underlying impl of the rvalue reference to this ImportOptionsKit thereby avoiding a copy.

Parameters

in_that – An rvalue reference to an ImportOptionsKit to take the impl from.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &operator=(ImportOptionsKit const &in_kit)

Copies the source ImportOptionsKit into this ImportOptionsKit.

Parameters

in_kit – The source ImportOptionsKit to copy.

Returns

A reference to this ImportOptionsKit.

bool operator==(ImportOptionsKit const &in_kit) const

Check if the source ImportOptionsKit is equivalent to this ImportOptionsKit.

Parameters

in_kit – The source ImportOptionsKit to compare to this ImportOptionsKit.

Returns

true if the objects are equivalent, false otherwise.

void Set(ImportOptionsKit const &in_kit)

Copies the source ImportOptionsKit into this ImportOptionsKit.

Parameters

in_kit – The source ImportOptionsKit to copy.

ImportOptionsKit &SetHiddenData(bool in_state)

Sets whether to import hidden data from the SketchUp file. Defaults to false.

Parameters

in_state – Whether to import hidden data from the SketchUp file.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &SetMetaData(bool in_state)

Sets whether to import metadata from the SketchUp file. Defaults to false.

Parameters

in_state – Whether to import metadata data from the SketchUp file.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &SetPortfolio(PortfolioKey const &in_portfolio)

Sets the PortfolioKey where the SketchUp data will be imported into. If no segments are specified, root segments will be created for this purpose during import.

Parameters

in_portfolio – Portfolio the SketchUp data will be imported into.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &SetTarget(Model const &in_model)

Uses the Model to set the root segment, library segment, and portfolio where the SketchUp data will be imported into.

Parameters

in_modelModel to use to implicitly set Segment, Library and Portfolio the SketchUp data will be imported into.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &SetTarget(SegmentKey const &in_target, SegmentKey const &in_library)

Sets the root and library segments where the SketchUp data will be imported into. If no segments are specified, root segments will be created for this purpose during import.

Parameters
  • in_target – Segment the SketchUp data will be imported into.

  • in_library – Segment the SketchUp includes data will be imported into.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &SetView(View const &in_view)

Sets the View where the default SketchUp camera will be imported into. If no View provided, camera can be retrieved via ImportResultsKit::ShowMainCamera.

Parameters

in_viewView where SketchUp camera will be imported into.

Returns

A reference to this ImportOptionsKit.

void Show(ImportOptionsKit &out_kit) const

Copies this ImportOptionsKit into the given ImportOptionsKit.

Parameters

out_kit – The ImportOptionsKit to populate with the contents of this ImportOptionsKit.

bool ShowHiddenData(bool &out_state) const

Shows whether to import hidden data from the SketchUp file. Defaults to false.

Parameters

out_state – Whether to import hidden data from the SketchUp file.

Returns

A reference to this ImportOptionsKit.

bool ShowMetaData(bool &out_state) const

Shows whether to import metadata from the SketchUp file. Defaults to false.

Parameters

out_state – Whether to import metadata data from the SketchUp file.

Returns

A reference to this ImportOptionsKit.

bool ShowPortfolio(PortfolioKey &out_portfolio) const

Shows the PortfolioKey where the SketchUp data will be imported into. If no segments are specified, root segments will be created for this purpose during import.

Parameters

out_portfolio – Portfolio the SketchUp data will be imported into.

Returns

A reference to this ImportOptionsKit.

bool ShowTarget(Model &out_model) const

Shows the root and library segments and portfolio where the SketchUp data will be imported into. If no segments are specified, root segments will be created for this purpose during import.

Parameters

out_modelModel to use to implicitly set Segment, Library and Portfolio the SketchUp data will be imported into.

Returns

A reference to this ImportOptionsKit.

bool ShowTarget(SegmentKey &out_target, SegmentKey &out_library) const

Shows the root and library segments where the SketchUp data will be imported into. If no segments are specified, root segments will be created for this purpose during import.

Parameters
  • out_target – Segment the SketchUp data will be imported into.

  • out_library – Segment the SketchUp includes data will be imported into.

Returns

A reference to this ImportOptionsKit.

bool ShowView(View &out_view) const

Shows the view where the SketchUp camera will be imported into.

Parameters

out_viewView where SketchUp camera will be imported into.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &UnsetEverything()

Removes all settings from this ImportOptionsKit.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &UnsetHiddenData()

Removes the Hidden data import state.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &UnsetMetaData()

Removes the metadata import state.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &UnsetPortfolio()

Removes the Portfolio import state.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &UnsetTarget()

Removes the target and library segments, and Model import state.

Returns

A reference to this ImportOptionsKit.

ImportOptionsKit &UnsetView()

Removes the View import state.

Returns

A reference to this ImportOptionsKit.

virtual ~ImportOptionsKit()

Public Static Functions

static ImportOptionsKit GetDefault()

Creates an ImportOptionsKit which contains the default settings. The returned object will not necessarily have values set for every option, but it will have settings for those options where it is reasonable to have a default. These values will be used for import unless an option is overridden by the options passed to File::Import.

Returns

An ImportOptionsKit with the default settings.

Public Static Attributes

static const HPS::Type staticType = HPS::Type::SketchupImportOptionsKit