Top Level Namespace
Defined Under Namespace
Modules: Geom, Layout, Sketchup, UI Classes: Array, LanguageHandler, Length, Numeric, SketchupExtension, String
Constant Summary #
- SB_PROMPT
- SB_VCB_LABEL
- SB_VCB_VALUE
- ORIGIN_2D
- ORIGIN
- X_AXIS_2D
- Y_AXIS_2D
- X_AXIS
- Y_AXIS
- Z_AXIS
- IDENTITY
- IDENTITY_2D
- MB_OK
- MB_OKCANCEL
- MB_ABORTRETRYIGNORE
- MB_YESNOCANCEL
- MB_YESNO
- MB_RETRYCANCEL
- MB_MULTILINE
- VK_SPACE
- VK_PRIOR
- VK_NEXT
- VK_END
- VK_HOME
- VK_LEFT
- VK_UP
- VK_RIGHT
- VK_DOWN
- VK_INSERT
- VK_DELETE
- MF_ENABLED
- MF_GRAYED
- MF_DISABLED
- MF_CHECKED
- MF_UNCHECKED
- VK_SHIFT
- VK_CONTROL
- VK_ALT
- VK_COMMAND
- VK_MENU
- ALT_MODIFIER_KEY
- ALT_MODIFIER_MASK
- COPY_MODIFIER_KEY
- COPY_MODIFIER_MASK
- CONSTRAIN_MODIFIER_KEY
- CONSTRAIN_MODIFIER_MASK
- IDOK
- IDCANCEL
- IDABORT
- IDRETRY
- IDIGNORE
- IDYES
- IDNO
- PAGE_USE_CAMERA
- PAGE_USE_RENDERING_OPTIONS
- PAGE_USE_SHADOWINFO
- PAGE_USE_SKETCHCS
- PAGE_USE_HIDDEN
- PAGE_USE_HIDDEN_GEOMETRY
- PAGE_USE_HIDDEN_OBJECTS
- PAGE_USE_LAYER_VISIBILITY
- PAGE_USE_SECTION_PLANES
- PAGE_USE_ALL
- PAGE_NO_CAMERA
- DimensionArrowNone
- DimensionArrowSlash
- DimensionArrowDot
- DimensionArrowClosed
- DimensionArrowOpen
- ALeaderNone
- ALeaderView
- ALeaderModel
- GL_POINTS
- GL_LINES
- GL_LINE_LOOP
- GL_LINE_STRIP
- GL_TRIANGLES
- GL_TRIANGLE_STRIP
- GL_TRIANGLE_FAN
- GL_QUADS
- GL_QUAD_STRIP
- GL_POLYGON
- LAYER_VISIBLE_BY_DEFAULT
- LAYER_HIDDEN_BY_DEFAULT
- LAYER_USES_DEFAULT_VISIBILITY_ON_NEW_PAGES
- LAYER_IS_VISIBLE_ON_NEW_PAGES
- LAYER_IS_HIDDEN_ON_NEW_PAGES
- CMD_SELECT
- CMD_PAINT
- CMD_ERASE
- CMD_RECTANGLE
- CMD_LINE
- CMD_CIRCLE
- CMD_ARC
- CMD_POLYGON
- CMD_FREEHAND
- CMD_PUSHPULL
- CMD_TEXT
- CMD_MOVE
- CMD_ROTATE
- CMD_EXTRUDE
- CMD_SCALE
- CMD_OFFSET
- CMD_MEASURE
- CMD_PROTRACTOR
- CMD_SKETCHCS
- CMD_SECTION
- CMD_DRAWOUTLINES
- CMD_DRAWCUTS
- CMD_ORBIT
- CMD_DOLLY
- CMD_ZOOM
- CMD_ZOOM_WINDOW
- CMD_ZOOM_EXTENTS
- CMD_CAMERA_UNDO
- CMD_WIREFRAME
- CMD_HIDDENLINE
- CMD_SHADED
- CMD_TEXTURED
- CMD_TRANSPARENT
- CMD_WALK
- CMD_PAN
- CMD_MAKE_COMPONENT
- CMD_DIMENSION
- CMD_VIEW_ISO
- CMD_VIEW_TOP
- CMD_VIEW_FRONT
- CMD_VIEW_RIGHT
- CMD_VIEW_BACK
- CMD_VIEW_LEFT
- CMD_VIEW_BOTTOM
- CMD_VIEW_PERSPECTIVE
- CMD_POSITION_CAMERA
- CMD_NEW
- CMD_OPEN
- CMD_SAVE
- CMD_CUT
- CMD_COPY
- CMD_PASTE
- CMD_DELETE
- CMD_UNDO
- CMD_REDO
- CMD_PRINT
- CMD_PAGE_NEW
- CMD_PAGE_DELETE
- CMD_PAGE_UPDATE
- CMD_PAGE_NEXT
- CMD_PAGE_PREVIOUS
- CMD_RUBY_CONSOLE
- CMD_SKETCHAXES
- CMD_SHOWHIDDEN
- CMD_SHOWHIDDENGEOMETRY
- CMD_SHOWHIDDENOBJECTS
- CMD_SHOWGUIDES
- CMD_SELECTION_ZOOM_EXT
- CMD_DISPLAY_FOV
- TB_HIDDEN
- TB_VISIBLE
- TB_NEVER_SHOWN
- TextAlignLeft
- TextAlignRight
- TextAlignCenter
- TextVerticalAlignBoundsTop
- TextVerticalAlignBaseline
- TextVerticalAlignCapHeight
- TextVerticalAlignCenter
- SKETCHUP_CONSOLE
- FILE_WRITE_OK
- FILE_WRITE_FAILED_INVALID_TYPE
- FILE_WRITE_FAILED_UNKNOWN
- SnapTo_Arbitrary
- SnapTo_Horizontal
- SnapTo_Vertical
- SnapTo_Sloped
Instance Method Summary # collapse
- #add_separator_to_menu(menu_name) ⇒ Object
-
#file_loaded(filename) ⇒ Object
Call this function at the end of a file that you are loading to let the system know that you have loaded it.
-
#file_loaded?(filename) ⇒ Boolean
Use in combination with #file_loaded to create load guards for code you don't want to reload.
-
#inputbox(*args) ⇒ Object
This is a wrapper for UI.inputbox.
-
#require_all(dirname) ⇒ Object
deprecated
Deprecated.
This adds the path given to $LOAD_PATH which can affect other extensions.
-
#show_ruby_panel ⇒ Object
deprecated
Deprecated.
Use
SKETCHUP_CONSOLE.show
instead.
Instance Method Details
↑ #add_separator_to_menu(menu_name) ⇒ Object
↑ #file_loaded(filename) ⇒ Object
Call this function at the end of a file that you are loading to let the system know that you have loaded it.
↑ #file_loaded?(filename) ⇒ Boolean
Use in combination with #file_loaded to create load guards for code you don't want to reload. Especially useful to protect your UI setup from creating duplicate menus and toolbars.
↑ #inputbox(*args) ⇒ Object
This is a wrapper for UI.inputbox. You call it exactly the same as UI.inputbox. UI.inputbox will raise an exception if it can't convert the string entered for one of the values into the right type. This method will trap the exception and display an error dialog and then prompt for the values again.
↑ #require_all(dirname) ⇒ Object
This adds the path given to $LOAD_PATH which can affect other extensions.
By default, SketchUp automatically loads (using require) all files with the .rb extension in the plugins directory. This function can be used to automatically load all .rb files from a different directory also. to use this add a call like the following to a file in the plugins directory require_all "MyRubyScripts"
↑ #show_ruby_panel ⇒ Object
Use SKETCHUP_CONSOLE.show
instead.
This global method is called by the Ruby Console menu item. We call this instead of directly calling Sketchup.send_action("showRubyPanel:")
so that other Ruby Console implementations can hijack this method.