Module: UI

Defined in:
lib/sketchup-api-stubs/stubs/ui.rb

Overview

The UI module contains a number of methods for creating simple UI elements from a SketchUp Ruby script.

Version:

  • SketchUp 6.0

Defined Under Namespace

Classes: Command, HtmlDialog, Notification, Toolbar, WebDialog

Class Method Summary collapse

Class Method Details

.add_context_menu_handler {|menu| ... } ⇒ Integer

The add_context_menu_handler method is used to register a block of code with SketchUp that will be called when a context menu is to be displayed. The context menu handler can then display the context menu with the items that you have added.

Be careful with what you do in a context menu handler. If you perform an operation takes take a long time, such as traversing the model or selection in a large model it will delay the menu.

See the contextmenu.rb script in the Plugins/examples directory for an example.

Examples:

# Right click on anything to see a Hello World item.
UI.add_context_menu_handler do |context_menu|
  context_menu.add_item("Hello World") {
    UI.messagebox("Hello world")
  }
end

Yields:

  • (menu)

    A block of code that takes a menu as its only as its only argument.

Returns:

  • (Integer)

    the number of context handlers that are registered

Version:

  • SketchUp 6.0



39
40
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 39

def self.add_context_menu_handler
end

.beepnil

The beep method plays a system beep sound.

The beep method does not accept any arguments nor return any values.

Examples:

UI.beep

Returns:

  • (nil)

Version:

  • SketchUp 6.0



52
53
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 52

def self.beep
end

.create_cursor(path, hot_x, hot_y) ⇒ Integer

The create_cursor method is used to create a cursor from an image file at the specified location. This must be called from within a custom Tool. See the Tool class for a complete example.

Since SketchUp 2016 it is possible to provide vector images for the cursors. SVG format for Windows and PDF format for OS X.

Examples:

cursor_id = nil
cursor_path = Sketchup.find_support_file("Pointer.png", "Plugins/")
if cursor_path
  cursor_id = UI.create_cursor(cursor_path, 0, 0)
end

def onSetCursor
  UI.set_cursor(cursor_id)
end

Parameters:

  • path (String)

    File path to an image.

  • hot_x (Integer)

    An x coordinate that is the “hotpoint” for the cursor computed from the left edge of your cursor image.

  • hot_y (Integer)

    A y coordinate that is the “hotpoint” for the cursor computed from the top edge of the of your cursor image. For example, a value of (hot_x, hot_y) = (5,10) would identify the hotpoint of the cursor at 5 pixels from the left edge of your cursor image and 10 pixels from the top edge of your cursor image.

Returns:

  • (Integer)

    ID associated with the cursor

Version:

  • SketchUp 6.0



91
92
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 91

def self.create_cursor(path, hot_x, hot_y)
end

.inputbox(prompts, defaults, title) ⇒ Array<String>, false .inputbox(prompts, defaults, list, title) ⇒ Array<String>, false

Creates a dialog box for inputting user information. The dialog box contains input fields with static text prompts, optional default values, optional drop down selections, and optional title.

You can also use this method to display drop down lists of options, by passing an optional param.

Examples:

# With three params, it shows all text boxes:
prompts = ["What is your Name?", "What is your Age?", "Gender"]
defaults = ["Enter name", "", "Male"]
input = UI.inputbox(prompts, defaults, "Tell me about yourself.")

# With four params, it shows a drop down box for prompts that have
# pipe-delimited lists of options. In this case, the Gender prompt
# is a drop down instead of a text box.
prompts = ["What is your Name?", "What is your Age?", "Gender"]
defaults = ["Enter name", "", "Male"]
list = ["", "", "Male|Female"]
input = UI.inputbox(prompts, defaults, list, "Tell me about yourself.")

Overloads:

  • .inputbox(prompts, defaults, title) ⇒ Array<String>, false

    Parameters:

    • prompts (Array<String>)

      An array of prompt names appearing in the input box adjacent to input fields.

    • defaults (Array<String>)

      An array of default values for the input fields.

    • title (String)

      The title for the input box.

  • .inputbox(prompts, defaults, list, title) ⇒ Array<String>, false

    Parameters:

    • prompts (Array<String>)

      An array of prompt names appearing in the input box adjacent to input fields.

    • defaults (Array<String>)

      An array of default values for the input fields.

    • list (String, Array<String>)

      An array containing pipe-separated strings of options.

    • title (String)

      The title for the input box.

Returns:

  • (Array<String>, false)

    An array of returned values if the user did not cancel the dialog. If the user canceled the dialog, false is returned. The returned values in the array will be in the same order as the input fields.

Version:

  • SketchUp 6.0



145
146
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 145

def self.inputbox(*args)
end

.inspector_namesArray<String>

The inspector_names method is used to returns the names of all the inspectors. Inspectors are another name for the various floating dialog windows that you can activate from withing SketchUp, such as the Materials window.

Examples:

inspectors = UI.inspector_names

Returns:

  • (Array<String>)

    an array of strings containing the names of inspectors.

Version:

  • SketchUp 6.0



160
161
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 160

def self.inspector_names
end
Note:

The “Extensions” menu was named “Plugins” prior to SketchUp 2015. For backward compatibility “Plugins” still works.

Note:

In versions prior to SketchUp 2018 this would crash if you passed an empty string.

The menu method retrieves a SketchUp’s menu object with a given name. This is the first step toward adding your own custom items to the bottom of SketchUp’s menus.

Valid menu names are: “File”, “Edit”, “View”, “Camera”, “Draw”, “Tools”, “Window”, “Extensions”, “Help” and “Developer”.

Examples:

tool_menu = UI.menu("Tools")
tool_menu.add_item("Cheese Tool") {
  UI.messagebox("Cheese activated.")
}

Parameters:

  • menu_name (defaults to: "Plugins")

    The name of an existing top level menu.

Returns:

Version:

  • SketchUp 6.0



188
189
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 188

def self.menu(menu_name = "Plugins")
end

.messagebox(message, type = MB_OK) ⇒ Integer

Creates a dialog box containing static text with a series of buttons for the user to choose from.

Valid message box types are:

  • MB_OK - Contains an OK button.

  • MB_OKCANCEL - Contains OK and Cancel buttons.

  • MB_ABORTRETRYIGNORE - Contains Abort, Retry, and Ignore buttons.

  • MB_YESNOCANCEL - Contains Yes, No, and Cancel buttons.

  • MB_YESNO - Contains Yes and No buttons.

  • MB_RETRYCANCEL - Contains Retry and Cancel buttons.

  • MB_MULTILINE - Contains and OK button.

Return values can be any of following:

  • IDOK

  • IDCANCEL

  • IDABORT

  • IDRETRY

  • IDIGNORE

  • IDYES

  • IDNO

In an MB_MULTILINE message box, the message is displayed as a multi-line message with scrollbars (as needed). MB_MULTILNE also allows a third string argument that will be used as the title for the messagebox.

Examples:

result = UI.messagebox('Do you like cheese?', MB_YESNO)
if result == IDYES
  UI.messagebox('SketchUp likes cheese too!')
end

Parameters:

  • message (String)

    The message that you want to display.

  • type (Integer) (defaults to: MB_OK)

    The message box type, which will be a constant from the list in the method comments.

Returns:

  • (Integer)

    A number corresponding to what the user selected.

Version:

  • SketchUp 6.0



232
233
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 232

def self.messagebox(message, type = MB_OK)
end

.model_info_pagesArray<String>

The model_info_pages method is used to returns the names of all the available model info pages. These include UI windows such as Components, Credits, and Units.

Examples:

mypages = UI.model_info_pages

Returns:

  • (Array<String>)

    an array of strings containing the names of model info pages.

Version:

  • SketchUp 6.0



246
247
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 246

def self.model_info_pages
end

.openpanel(title, directory, filename) ⇒ String

The openpanel method is used to display the Open dialog box. The path that is returned can then be used inside code to open a text or image file. See the standard Ruby class File for examples of reading and writing from disk.

Bug Fixed in SketchUp 2014: Wildcards were not working properly from SU7 to SU2013. Wildcard filters did not populate the file type dropdown. The filter string would be shown in the file name field with ‘*’ characters converted to ‘_’ characters. Note, the format of a wildcard filter string has been changed.

See the description of the filename parameter below for details.

Examples:

chosen_image = UI.openpanel("Open SKP File", "c:/", "model.skp")
chosen_image = UI.openpanel("Open Image File", "c:/", "Image Files|*.jpg;*.png;||")
chosen_image = UI.openpanel("Open CAD File", "c:/", "DXF|*.dxf|DWG|*.dwg||")

Parameters:

  • title (String)

    The title to apply to the open dialog box.

  • directory (String)

    The default directory for the open panel.

  • filename (String)

    The default filename for the open panel. On Windows, you can alternatively pass a wildcard filter using this format: UIname|wildcard||. Additional filter dropdown list items can be added by adding additional pairs of filter name and filter like this: UIname1|wildcard1|UIname2|wildcard2||. Also multiple wildcard filters can be combined into a single line using a semicolon-separated list in the filter field: ui_name|wildcard1;wildcard2||.

Returns:

  • (String)

    the full path and name of the file selected, or nil if the dialog was canceled.

Version:

  • SketchUp 6.0



306
307
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 306

def self.openpanel(title, directory, filename)
end

.openURL(url) ⇒ Boolean

The openURL method is used to open the default browser to a URL.

Examples:

status = UI.openURL("http://www.sketchup.com")

Parameters:

Returns:

  • (Boolean)

Version:

  • SketchUp 6.0



266
267
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 266

def self.openURL(url)
end

.play_sound(filename) ⇒ nil

The play_sound method is used to play a sound file. Valid sound files include .wav and .mp3 files on the Mac and .wav files on the PC.

Examples:

UI.play_sound "Plugins/mediadiscussion.wav"

Parameters:

  • filename (String)

    the relative path to the filename from the SketchUp install directory, or an absolute path to the file. (See Sketchup.find_support_file for a way to search for a specific file.)

Returns:

  • (nil)

Version:

  • SketchUp 6.0



324
325
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 324

def self.play_sound(filename)
end

.preferences_pagesArray<String>

The preferences_pages method is used to returns the names of all the preferences pages. These include windows like Templates.

SketchUp 2017

"Extensions" page was removed.

Examples:

prefs = UI.preferences_pages

Returns:

  • (Array<String>)

    an array of strings containing the names of preference pages.

Version:

  • SketchUp 6.0



339
340
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 339

def self.preferences_pages
end

.refresh_inspectorsnil

Tells SketchUp to refresh all inspectors such as the Component Browser and the Outliner. This is useful when you need to manually force a refresh after you’ve made a change to the document via Ruby. Generally, SketchUp will keep these in sync for you, but occasionally it does not, such as when model.start_operation has disabled UI updates.

Examples:

UI.refresh_inspectors

Returns:

  • (nil)

Version:

  • SketchUp 7.0



354
355
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 354

def self.refresh_inspectors
end

.refresh_toolbarsnil

Tells SketchUp to refresh all floating toolbars. This is useful when you need to manually force a refresh after you’ve made a change to the document via Ruby. Generally, SketchUp will keep these in sync for you, but occasionally it does not, such as when Sketchup::Model#start_operation has disabled UI updates. This only affects macOS, on Windows the toolbars are always refreshing.

Examples:

UI.refresh_toolbars

Returns:

  • (nil)

Version:

  • SketchUp 2018



370
371
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 370

def self.refresh_toolbars
end

.savepanel(title, directory, filename) ⇒ String

The savepanel method is used to display the Save dialog box. The path that is returned can then be used inside code to save out a text or image file. See the standard Ruby class File for examples of reading and writing from disk.

Bug Fixed in SketchUp 2014: Wildcards were not working properly from SU7 to SU2013. Semicolon-separated lists of wildcards did not populate the file type dropdown. The filter string would be shown in the file name field with ‘*’ characters converted to ‘_’ characters.

Examples:

path_to_save_to = UI.savepanel("Save Image File", "c:\\", "Shapes.jpg")

Parameters:

  • title (String)

    The title to apply to the save dialog box.

  • directory (String)

    The default directory for the save panel.

  • filename (String)

    The default filename for the save panel. On Windows, you can alternatively pass a mask, like “*.txt”, to have all the .txt files display. If you want multiple file types to display, you can supply multiple masks for the filename and separate them with a semicolon, like this: “.txt;.doc”.

Returns:

  • (String)

    the full path and name of the file selected or nil if the dialog was canceled.

Version:

  • SketchUp 6.0



404
405
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 404

def self.savepanel(title, directory, filename)
end

.scale_factorFloat

Note:

SU2017M0 will automatically scale up line width and text size, but will not scale up the points provided to Sketchup::View#draw2d.

Returns the scaling factor SketchUp uses on high DPI monitors. Useful for things like Sketchup::View#draw2d.

Examples:

# Scale a set of points representing 2d screen points to account for high
# DPI monitors.
points2d = [
  Geom::Point3d.new(0, 0, 0),
  Geom::Point3d.new(8, 0, 0),
  Geom::Point3d.new(8, 4, 0),
  Geom::Point3d.new(0, 4, 0)
]
tr = Geom::Transformation.scaling(UI.scale_factor)
points2d.each { |point| point.transform!(tr)

Returns:

  • (Float)

Version:

  • SketchUp 2017



428
429
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 428

def self.scale_factor
end

.select_directory(options = {}) ⇒ String, ...

The select_directory method is used to display the OS dialog for selecting one or several directories from the file system.

Examples:

# Default title and folder:
chosen_folder = UI.select_directory

# Custom dialog title:
chosen_folder = UI.select_directory(title: "Select Image Directory")

# Force a start folder:
chosen_folder = UI.select_directory(directory: "C:/images")

# Allow multiple items to the selected:
chosen_folder = UI.select_directory(select_multiple: true)

# Custom dialog title and force a start folder:
chosen_folder = UI.select_directory(
  title: "Select Image Directory",
  directory: "C:/images"
)

Parameters:

  • options (Hash) (defaults to: {})

    The dialog can be customized by providing a hash or named arguments of options.

Options Hash (options):

  • :title (String) — default: nil

    The title for the dialog.

  • :directory (String) — default: nil

    Force the starting directory for the dialog. If not specified the last chosen directory will be used.

  • :select_multiple (Boolean) — default: false

    Set to true to allow multiple items to be selected.

Returns:

  • (String, Array<String>, nil)

    A string with the full path of the directory selected when :select_multiple option is set to false otherwise an array of strings or nil if the user cancelled.

Version:

  • SketchUp 2015



471
472
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 471

def self.select_directory(options = {})
end

.set_cursor(cursor_id) ⇒ Boolean

The set_cursor method is used to change the cursor to a new cursor with a given cursor id. See UI.create_cursor and the Tool class for details on creating your own tools with arbitrary cursors.

If you call this while a standard SketchUp tool is active, you will not see your custom cursor, as these tools are constantly setting their own cursors to indicate SketchUp’s state.

Examples:

def onSetCursor
  UI.set_cursor(cursor_id)
end

Parameters:

  • cursor_id (Integer)

    The id of the cursor you want to display.

Returns:

  • (Boolean)

Version:

  • SketchUp 6.0



493
494
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 493

def self.set_cursor(cursor_id)
end

.set_toolbar_visible(name, visible) ⇒ Boolean

The set_toolbar_visible method is used to set whether a given toolbar is visible. Note that the toolbars and their names are different on the Mac vs. PC, so be careful and be sure to test when using this method in a cross-platform script.

Examples:

status = UI.set_toolbar_visible("Camera", true)

Parameters:

  • name (String)

    The name of a Ruby toolbar.

  • visible (Boolean)

    True to make the toolbar visible, false to hide it.

Returns:

  • (Boolean)

    true if successful, false if not.

Version:

  • SketchUp 6.0



513
514
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 513

def self.set_toolbar_visible(name, visible)
end

.show_extension_managernil

The show_extension_manager method is used to display the Extension Manager dialog.

Examples:

UI.show_extension_manager

Returns:

  • (nil)

Version:

  • SketchUp 2017



525
526
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 525

def self.show_extension_manager
end

.show_inspector(name) ⇒ Boolean

The show_inspector method is used to display the inspector with the given name. You can get the list of valid inspectors with UI.inspector_names.

Examples:

status = UI.show_inspector("Components")

Parameters:

  • name (String)

    The name of inspector that you want to display.

Returns:

  • (Boolean)

    true if successful, false if unsuccessful

Version:

  • SketchUp 6.0



540
541
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 540

def self.show_inspector(name)
end

.show_model_info(page_name) ⇒ Boolean

The show_model_info method is used to display the model info dialog for a specific page. You can get the list of valid page names with model_info_pages.

SketchUp 2014

"Classifications" page was added.

Examples:

UI.show_model_info('Credits')

Parameters:

  • page_name (String)

    The name of the model info dialog you want to display.

Returns:

  • (Boolean)

Version:

  • SketchUp 6.0



562
563
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 562

def self.show_model_info(page_name)
end

.show_preferences(page_name) ⇒ Boolean

The show_preferences method is used to display a SketchUp preferences dialog. You can get the list of valid dialogs with preferences_pages.

Examples:

status = UI.show_preferences('GraphicsCard')

Parameters:

  • page_name (String)

    The name of the preferences dialog you want to display.

Returns:

  • (Boolean)

    true

Version:

  • SketchUp 6.0



579
580
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 579

def self.show_preferences(page_name)
end

.start_timer(seconds, repeat = false) {|procedure| ... } ⇒ Integer

The start_timer method is used to start a timer. This is an effective method to create a repeating snippet of code for arbitrary animation.

See this blog post for an detailed example of custom animation using timers: sketchupapi.blogspot.com/2008/10/animate-yo-cheese.html

Note that there is a bug that if you open a modal window in a non-repeating timer the timer will repeat until the window is closed.

Examples:

# Beep once after 10 seconds.
id = UI.start_timer(10, false) { UI.beep }

Parameters:

  • seconds (Numeric)

    The time in seconds before your code should be called.

  • repeat (Boolean) (defaults to: false)

    true if you want the timer to repeat, false (or omit) if you do not want it to repeat.

Yields:

  • (procedure)

    The procedure you want to execute after seconds has expired.

Returns:

  • (Integer)

    a timer ID

Version:

  • SketchUp 6.0



608
609
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 608

def self.start_timer(seconds, repeat = false)
end

.stop_timer(id) ⇒ nil

The stop_timer method is used to stop a timer based on its id.

Examples:

# Stop timer before it triggers.
id = UI.start_timer(10) { UI.beep }
UI.stop_timer(id)

Parameters:

  • id (Integer)

    The timer id for the timer that you want to stop.

Returns:

  • (nil)

Version:

  • SketchUp 6.0



624
625
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 624

def self.stop_timer(id)
end

.toolbar(name) ⇒ UI::Toolbar

The toolbar method is used to get a Ruby toolbar by name. If the toolbar doesn’t exist a new one will be created.

Examples:

toolbar = UI.toolbar('Test')

Parameters:

  • name (String)

    The name of the Ruby toolbar.

Returns:

Version:

  • SketchUp 6.0



639
640
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 639

def self.toolbar(name)
end

.toolbar_namesArray<String>

The toolbar_names method is used to return the name of all the available native toolbars (this differs between PC and Mac). These toolbar names do not include Ruby toolbars.

Examples:

names = UI.toolbar_names

Returns:

  • (Array<String>)

    Array of strings representing toolbar names.

Version:

  • SketchUp 6.0



652
653
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 652

def self.toolbar_names
end

.toolbar_visible?(name) ⇒ Boolean

The toolbar_visible? method is used to determine whether a given toolbar is visible. Note that the toolbars and their names are different on the Mac vs. PC, so be careful and be sure to test when using this method in a cross-platform script.

Examples:

status = UI.toolbar_visible?("Camera")

Parameters:

  • name (String)

    The name of a native toolbar.

Returns:

  • (Boolean)

Version:

  • SketchUp 6.0



669
670
# File 'lib/sketchup-api-stubs/stubs/ui.rb', line 669

def self.toolbar_visible?(name)
end