Class: Sketchup::ModelObserver Abstract
Relationships | |
Inherits: | Object |
Overview
To implement this observer, create a Ruby class of this type, override the desired methods, and add an instance of the observer to the model.
This observer interface is implemented to react to model events.
Note that the observers related to transactions (aka undoable operations) are primarily for reporting and debugging. Performing any edit operations of your own (such as modifying the model) inside the observer callback should be avoided, as it could cause crashes or model corruption. The most common use for these callbacks is to help debug problems where your Ruby script’s Model#start_operation and Model#commit_operation calls are somehow conflicting with SketchUp’s native undo operations. You can set up an observer set to watch precisely what is going on.
Instance Method Summary
-
#onActivePathChanged(model) ⇒ nil
The #onActivePathChanged method is invoked when the user opens or closes a
ComponentInstance
orGroup
for editing. -
#onAfterComponentSaveAs(model) ⇒ nil
The #onAfterComponentSaveAs method is invoked when the user context-clicks > Save As on a component instance.
-
#onBeforeComponentSaveAs(model) ⇒ nil
The #onBeforeComponentSaveAs method is invoked when the user context-clicks > Save As on a component instance.
-
#onDeleteModel(model) ⇒ nil
The #onDeleteModel method is invoked when a model is deleted.
-
#onEraseAll(model) ⇒ nil
The #onEraseAll method is invoked when everything in a model is erased.
-
#onExplode(model) ⇒ nil
The method is invoked whenever a component anywhere in this model is exploded.
-
#onPidChanged(model, old_pid, new_pid) ⇒ nil
The #onPidChanged method is invoked when a persistent id in the model changes.
-
#onPlaceComponent(model) ⇒ nil
The #onPlaceComponent method is invoked when a component is “placed” into the model, meaning it is dragged from the Component Browser.
-
#onPostSaveModel(model) ⇒ nil
The #onPostSaveModel method is invoked after a model has been saved to disk.
-
#onPreSaveModel(model) ⇒ nil
The #onPreSaveModel method is invoked before a model is saved to disk.
-
#onSaveModel(model) ⇒ nil
The #onSaveModel method is invoked after a model has been saved to disk.
-
#onTransactionAbort(model) ⇒ nil
The #onTransactionAbort method is invoked when a transaction is aborted.
-
#onTransactionCommit(model) ⇒ nil
The #onTransactionCommit method is invoked when a transaction is completed.
-
#onTransactionEmpty(model) ⇒ nil
The #onTransactionEmpty method is invoked when a transaction (aka an undoable operation) starts and then is committed without anything being altered in between.
-
#onTransactionRedo(model) ⇒ nil
The #onTransactionRedo method is invoked when the user “redoes” a transaction (aka undo operation.) You can programmatically fire a redo by calling Sketchup.sendAction(“editRedo”).
-
#onTransactionStart(model) ⇒ nil
The #onTransactionStart method is invoked when a transaction (aka an undoable operation) starts.
-
#onTransactionUndo(model) ⇒ nil
The method is invoked when the user “undoes” a transaction (aka undo operation.) You can programmatically fire an undo by calling Sketchup.sendAction(“editUndo”).
Instance Method Details
#onActivePathChanged(model) ⇒ nil
The #onActivePathChanged
method is invoked when the user opens or closes a ComponentInstance
or Group
for editing.
When the user opens an instance for editing the positions and transformations of the entities in the opened instance will be relative to global world coordinates instead of the local coordinates relative to their parent.
See Model#active_path and Model#edit_transform for methods that report the current edit origin vs. the global origin, etc.
By using this observer callback, you can keep track of the various nested transformations as your users double click to drill into and out of component edits.
#onAfterComponentSaveAs(model) ⇒ nil
The #onAfterComponentSaveAs
method is invoked when the user context-clicks > Save As on a component instance. It is called just after the component is written to disk, so you can restore the component to some state before returning control to the user.
#onBeforeComponentSaveAs(model) ⇒ nil
The #onBeforeComponentSaveAs
method is invoked when the user context-clicks > Save As on a component instance. It is called just before the component is written to disk, so you can make changes within the handler and it will make it into the save.
For example, you may decide that you want to add some attribute to every component that is saved out, but you do not want that attribute sticking around inside the current model. Within #onBeforeComponentSaveAs
you could add the attribute, and within #onAfterComponentSaveAs you could delete that attribute.
The callback is not sent the component that is to be saved, but the model’s selection will contain it.
#onDeleteModel(model) ⇒ nil
The #onDeleteModel
method is invoked when a model is deleted.
#onEraseAll(model) ⇒ nil
The #onEraseAll
method is invoked when everything in a model is erased.
#onExplode(model) ⇒ nil
The #onExplode
is invoked whenever a component anywhere in this model is exploded. This is an easier way to watch explode events vs. attaching an InstanceObserver
to every instance in the model.
Since the callback does not return what was exploded, one solution is to place a selection observer that keeps track of which entities whose explosion you are interested in are in the selection. Since SketchUp’s user interface only provides a means of exploding the selection, this method is a reliable way to know what was just exploded.
Another method would be to watch Sketchup::ComponentDefinition.count_instances
to determine what just changed, as any components that were exploded will now be less an instance.
#onPidChanged(model, old_pid, new_pid) ⇒ nil
The #onPidChanged
method is invoked when a persistent id in the model changes. For example when entities are grouped.
#onPlaceComponent(model) ⇒ nil
The #onPlaceComponent
method is invoked when a component is “placed” into the model, meaning it is dragged from the Component Browser.
#onPostSaveModel(model) ⇒ nil
The #onPostSaveModel
method is invoked after a model has been saved to disk.
#onPreSaveModel(model) ⇒ nil
The #onPreSaveModel
method is invoked before a model is saved to disk.
#onSaveModel(model) ⇒ nil
The #onSaveModel
method is invoked after a model has been saved to disk.
#onTransactionAbort(model) ⇒ nil
The #onTransactionAbort
method is invoked when a transaction is aborted.
#onTransactionCommit(model) ⇒ nil
The #onTransactionCommit
method is invoked when a transaction is completed.
#onTransactionEmpty(model) ⇒ nil
The #onTransactionEmpty
method is invoked when a transaction (aka an undoable operation) starts and then is committed without anything being altered in between.
#onTransactionRedo(model) ⇒ nil
The #onTransactionRedo
method is invoked when the user “redoes” a transaction (aka undo operation.) You can programmatically fire a redo by calling Sketchup.sendAction(“editRedo”).
#onTransactionStart(model) ⇒ nil
The #onTransactionStart
method is invoked when a transaction (aka an undoable operation) starts.
#onTransactionUndo(model) ⇒ nil
The #onTransactionUndo
is invoked when the user “undoes” a transaction (aka undo operation.) You can programmatically fire an undo by calling Sketchup.sendAction(“editUndo”).