hs.drawing
DEPRECATED. Primitives for drawing on the screen in various ways.
hs.drawing is now deprecated and will be removed in a future release. Its functionality is now implemented by hs.canvas and you should migrate your code to using that directly. The API docs for hs.drawing remain here as a convenience.
Submodules
API Overview
- Constants - Useful values which cannot be changed
- Functions - API calls offered directly by the extension
- Constructors - API calls which return an object, typically one that offers API methods
- Methods - API calls which can only be made on an object returned by a constructor
API Documentation
Constants
Signature | hs.drawing.windowBehaviors[] |
Type | Constant |
Description |
Array of window behavior labels for determining how an hs.drawing object is handled in Spaces and Exposé |
Notes |
- This table has a __tostring() metamethod which allows listing it's contents in the Hammerspoon console by typing
hs.drawing.windowBehaviors . |
Source | extensions/drawing/drawing.lua line 690 |
Signature | hs.drawing.windowLevels |
Type | Constant |
Description |
A table of predefined window levels usable with hs.drawing:setLevel(...) |
Notes |
-
This table has a __tostring() metamethod which allows listing it's contents in the Hammerspoon console by typing hs.drawing.windowLevels . -
These key names map to the constants used in CoreGraphics to specify window levels and may not actually be used for what the name might suggest. For example, tests suggest that an active screen saver actually runs at a level of 2002, rather than at 1000, which is the window level corresponding to kCGScreenSaverWindowLevelKey. -
Each drawing level is sorted separately and hs.drawing:orderAbove(...) and hs.drawing:orderBelow(...)` only arrange windows within the same level. -
If you use Dock hiding (or in 10.11, Menubar hiding) please note that when the Dock (or Menubar) is popped up, it is done so with an implicit orderAbove, which will place it above any items you may also draw at the Dock (or MainMenu) level. -
A drawing object with a hs.drawing:setClickCallback function can only reliably receive mouse click events when its window level is at hs.drawing.windowLevels.desktopIcon + 1 or higher. |
Source | extensions/drawing/drawing.lua line 707 |
Functions
Signature | hs.drawing.defaultTextStyle() -> hs.styledtext attributes table |
Type | Function |
Description |
Returns a table containing the default font, size, color, and paragraphStyle used by hs.drawing for text drawing objects. |
Parameters |
|
Returns |
- a table containing the default style attributes
hs.drawing uses for text drawing objects in the hs.styledtext attributes table format. |
Notes |
- This method returns the default font, size, color, and paragraphStyle used by
hs.drawing for text objects. If you modify a drawing object's defaults with hs.drawing:setColor , hs.drawing:setTextFont , or hs.drawing:setTextSize , the changes will not be reflected by this function. |
Source | extensions/drawing/drawing.lua line 774 |
Signature | hs.drawing.disableScreenUpdates() -> None |
Type | Function |
Description |
Tells the OS X window server to pause updating the physical displays for a short while. |
Parameters |
|
Returns |
|
Notes |
- This method can be used to allow multiple changes which are being made to the users display appear as if they all occur simultaneously by holding off on updating the screen on the regular schedule.
- This method should always be balanced with a call to hs.drawing.enableScreenUpdates when your updates have been completed. Failure to do so will be logged in the system logs.
- The window server will only allow you to pause updates for up to 1 second. This prevents a rogue or hung process from locking the systems display completely. Updates will be resumed when hs.drawing.enableScreenUpdates is encountered or after 1 second, whichever comes first.
- The underlying OS function for disabling screen updates is deprecated.
|
Source | extensions/drawing/drawing.lua line 85 |
Signature | hs.drawing.enableScreenUpdates() -> None |
Type | Function |
Description |
Tells the OS X window server to resume updating the physical displays after a previous pause. |
Parameters |
|
Returns |
|
Notes |
- In conjunction with hs.drawing.disableScreenUpdates, this method can be used to allow multiple changes which are being made to the users display appear as if they all occur simultaneously by holding off on updating the screen on the regular schedule.
- The window server will only allow you to pause updates for up to 1 second. This prevents a rogue or hung process from locking the systems display completely. Updates will be resumed when this function is encountered or after 1 second, whichever comes first.
- The underlying OS function for enabling screen updates is deprecated.
|
Source | extensions/drawing/drawing.lua line 101 |
Signature | hs.drawing.getTextDrawingSize(styledTextObject or theText, [textStyle]) -> sizeTable | nil |
Type | Function |
Description |
Get the size of the rectangle necessary to fully render the text with the specified style so that is will be completely visible. |
Parameters |
- styledTextObject - an object created with the hs.styledtext module or its table representation (see
hs.styledtext ). - textStyle - an optional table containing one or more of the following keys to set for the text of the drawing object (if textStyle is nil or missing, the
hs.drawing defaults are used): |
Returns |
- sizeTable - a table containing the Height and Width necessary to fully display the text drawing object, or nil if an error occurred
|
Notes |
- This function assumes the default values specified for any key which is not included in the provided textStyle.
- The size returned is an approximation and may return a width that is off by about 4 points. Use the returned size as a minimum starting point. Sometimes using the "clip" or "truncateMiddle" lineBreak modes or "justified" alignment will fit, but its safest to add in your own buffer if you have the space in your layout.
- Multi-line text (separated by a newline or return) is supported. The height will be for the multiple lines and the width returned will be for the longest line.
- The following simplified style format is supported for use with
hs.drawing:setText and hs.drawing.setTextStyle . - theText - the text which is to be displayed.
- textStyle - a table containing one or more of the following keys to set for the text of the drawing object (if textStyle is nil or missing, the
hs.drawing defaults are used): - font - the name of the font to use (default: the system font)
- size - the font point size to use (default: 27.0)
- color - ignored, but accepted for compatibility with
hs.drawing:setTextStyle()
- alignment - a string of one of the following indicating the texts alignment within the drawing objects frame:
- "left" - the text is visually left aligned.
- "right" - the text is visually right aligned.
- "center" - the text is visually center aligned.
- "justified" - the text is justified
- "natural" - (default) the natural alignment of the text’s script
- lineBreak - a string of one of the following indicating how to wrap text which exceeds the drawing object's frame:
- "wordWrap" - (default) wrap at word boundaries, unless the word itself doesn’t fit on a single line
- "charWrap" - wrap before the first character that doesn’t fit
- "clip" - do not draw past the edge of the drawing object frame
- "truncateHead" - the line is displayed so that the end fits in the frame and the missing text at the beginning of the line is indicated by an ellipsis
- "truncateTail" - the line is displayed so that the beginning fits in the frame and the missing text at the end of the line is indicated by an ellipsis
- "truncateMiddle" - the line is displayed so that the beginning and end fit in the frame and the missing text in the middle is indicated by an ellipsis
|
Source | extensions/drawing/drawing.lua line 787 |
Constructors
Signature | hs.drawing.appImage(sizeRect, bundleID) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new image object with the icon of a given app |
Parameters |
- sizeRect - A rect-table containing the location/size of the image. If the size values are -1 then the image will be displayed at the icon's native size
- bundleID - A string containing the bundle identifier of an app (e.g. "com.apple.Safari")
|
Returns |
- An
hs.drawing object, or nil if an error occurs |
Source | extensions/drawing/drawing.lua line 38 |
Signature | hs.drawing.arc(centerPoint, radius, startAngle, endAngle) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new arc object |
Parameters |
- centerPoint - A point-table containing the center of the circle used to define the arc
- radius - The radius of the circle used to define the arc
- startAngle - The starting angle of the arc, measured in degrees clockwise from the y-axis.
- endAngle - The ending angle of the arc, measured in degrees clockwise from the y-axis.
|
Returns |
- An
hs.drawing object, or nil if an error occurs |
Notes |
- This constructor is actually a wrapper for the
hs.drawing.ellipticalArc constructor. |
Source | extensions/drawing/drawing.lua line 69 |
Signature | hs.drawing.circle(sizeRect) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new circle object |
Parameters |
- sizeRect - A rect-table containing the location/size of the circle
|
Returns |
- An
hs.drawing object, or nil if an error occurs |
Source | extensions/drawing/drawing.lua line 116 |
Signature | hs.drawing.ellipticalArc(sizeRect, startAngle, endAngle) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new elliptical arc object |
Parameters |
- sizeRect - A rect-table containing the location and size of the ellipse used to define the arc
- startAngle - The starting angle of the arc, measured in degrees clockwise from the y-axis.
- endAngle - The ending angle of the arc, measured in degrees clockwise from the y-axis.
|
Returns |
- An
hs.drawing object, or nil if an error occurs |
Source | extensions/drawing/drawing.lua line 126 |
Signature | hs.drawing.image(sizeRect, imageData) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new image object |
Parameters |
- sizeRect - A rect-table containing the location/size of the image
- imageData - This can be either:
- An
hs.image object - A string containing a path to an image file
- A string beginning with
ASCII: which signifies that the rest of the string is interpreted as a special form of ASCII diagram, which will be rendered to an image. See the notes below for information about the special format of ASCII diagram. |
Returns |
- An
hs.drawing object, or nil if an error occurs - Paths relative to the PWD of Hammerspoon (typically ~/.hammerspoon/) will work, but paths relative to the UNIX homedir character,
~ will not - Animated GIFs are supported. They're not super friendly on your CPU, but they work
|
Notes |
- To use the ASCII diagram image support, see http://cocoamine.net/blog/2015/03/20/replacing-photoshop-with-nsstring/ and be sure to preface your ASCII diagram with the special string
ASCII:
|
Source | extensions/drawing/drawing.lua line 170 |
Signature | hs.drawing.line(originPoint, endPoint) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new line object |
Parameters |
- originPoint - A point-table containing the co-ordinates of the starting point of the line
- endPoint - A point-table containing the co-ordinates of the end point of the line
|
Returns |
- An
hs.drawing object, or nil if an error occurs |
Source | extensions/drawing/drawing.lua line 148 |
Signature | hs.drawing.rectangle(sizeRect) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new rectangle object |
Parameters |
- sizeRect - A rect-table containing the location/size of the rectangle
|
Returns |
- An
hs.drawing object, or nil if an error occurs |
Source | extensions/drawing/drawing.lua line 138 |
Signature | hs.drawing.text(sizeRect, message) -> drawingObject or nil |
Type | Constructor |
Description |
Creates a new text object |
Parameters |
- sizeRect - A rect-table containing the location/size of the text
- message - A string containing the text to be displayed. May also be any of the types supported by
hs.styledtext . See hs.styledtext for more details. |
Returns |
- An
hs.drawing object, or nil if an error occurs |
Source | extensions/drawing/drawing.lua line 159 |
Methods
Signature | hs.drawing:alpha() -> number |
Type | Method |
Description |
Get the alpha level of the window containing the hs.drawing object. |
Parameters |
|
Returns |
- The current alpha level for the hs.drawing object
|
Source | extensions/drawing/drawing.lua line 650 |
Signature | hs.drawing:behavior() -> number |
Type | Method |
Description |
Returns the current behavior of the hs.drawing object with respect to Spaces and Exposé for the object. |
Parameters |
|
Returns |
- The numeric representation of the current behaviors for the hs.drawing object
|
Source | extensions/drawing/drawing.lua line 754 |
Signature | hs.drawing:behaviorAsLabels() -> table |
Type | Method |
Description |
Returns a table of the labels for the current behaviors of the object. |
Parameters |
|
Returns |
- Returns a table of the labels for the current behaviors with respect to Spaces and Exposé for the object.
|
Source | extensions/drawing/drawing.lua line 59 |
Signature | hs.drawing:bringToFront([aboveEverything]) -> drawingObject |
Type | Method |
Description |
Places the drawing object on top of normal windows |
Parameters |
- aboveEverything - An optional boolean value that controls how far to the front the drawing should be placed.
true to place the drawing on top of all windows (including the dock and menubar), false to place the drawing above normal windows, but below the dock and menubar. Defaults to false . |
Returns |
|
Notes |
- As of macOS Sierra and later, if you want a
hs.drawing object to appear above full-screen windows you must hide the Hammerspoon Dock icon first using: hs.dockicon.hide()
|
Source | extensions/drawing/drawing.lua line 627 |
Signature | hs.drawing:clickCallbackActivating([false]) -> drawingObject or current value |
Type | Method |
Description |
Get or set whether or not clicking on a drawing with a click callback defined should bring all of Hammerspoon's open windows to the front. |
Parameters |
- flag - an optional boolean indicating whether or not clicking on a drawing with a click callback function defined should activate Hammerspoon and bring its windows forward. Defaults to true.
|
Returns |
- If a setting value is provided, the drawing object is returned; if no argument is provided, the current setting is returned.
|
Notes |
- Setting this to false changes a drawing object's AXsubrole value and may affect the results of filters defined for hs.window.filter, depending upon how they are defined.
|
Source | extensions/drawing/drawing.lua line 567 |
Signature | hs.drawing:clippingRectangle([rect]) -> drawingObject or current value |
Type | Method |
Description |
Set the screen area in which the drawing contents are visible. |
Parameters |
- rect - an optional rectangle specifying the visible area of the screen where the drawing's contents are visible. If an explicit
nil is specified, no clipping rectangle is set. Defaults to nil |
Returns |
- if an argument is provided, returns the drawing object; otherwise the current value is returned.
|
Notes |
-
This method can be used to specify the area of the display where this drawing should be visible. If any portion of the drawing extends beyond this rectangle, the image is clipped so that only the portion within this rectangle is visible. -
The rectangle defined by this method is independent of the drawing's actual frame -- if you move the drawing with hs.drawing:setFrame or hs.drawing:setTopLeft, this rectangle retains its current value. -
This method does not work for image objects at present. |
Source | extensions/drawing/drawing.lua line 284 |
Signature | hs.drawing:delete() |
Type | Method |
Description |
Destroys the drawing object |
Parameters |
|
Returns |
|
Notes |
- This method immediately destroys the drawing object. If you want it to fade out, use
:hide() first, with some suitable time, and hs.timer.doAfter() to schedule the :delete() call |
Source | extensions/drawing/drawing.lua line 614 |
Signature | hs.drawing:frame() -> hs.geometry object |
Type | Method |
Description |
Gets the frame of a drawingObject in absolute coordinates |
Parameters |
|
Returns |
- An
hs.geometry object containing the frame of the drawing object |
Source | extensions/drawing/drawing.lua line 310 |
Signature | hs.drawing:getStyledText() -> hs.styledtext object |
Type | Method |
Description |
Gets the text of a drawing object as an hs.styledtext object |
Parameters |
|
Returns |
|
Notes |
- This method should only be used on text drawing objects
|
Source | extensions/drawing/drawing.lua line 216 |
Signature | hs.drawing:hide([fadeOutTime]) -> drawingObject |
Type | Method |
Description |
Hides the drawing object |
Parameters |
- fadeOut - An optional number of seconds over which to fade out the drawing object. Defaults to zero
|
Returns |
|
Source | extensions/drawing/drawing.lua line 604 |
Signature | hs.drawing:imageAlignment([type]) -> drawingObject or current value |
Type | Method |
Description |
Get or set the alignment of an image that doesn't fully fill the drawing objects frame. |
Parameters |
- type - an optional string value which should match one of the following (default is center):
- topLeft - the image's top left corner will match the drawing frame's top left corner
- top - the image's top match the drawing frame's top and will be centered horizontally
- topRight - the image's top right corner will match the drawing frame's top right corner
- left - the image's left side will match the drawing frame's left side and will be centered vertically
- center - the image will be centered vertically and horizontally within the drawing frame
- right - the image's right side will match the drawing frame's right side and will be centered vertically
- bottomLeft - the image's bottom left corner will match the drawing frame's bottom left corner
- bottom - the image's bottom match the drawing frame's bottom and will be centered horizontally
- bottomRight - the image's bottom right corner will match the drawing frame's bottom right corner
|
Returns |
- If a setting value is provided, the drawing object is returned; if no argument is provided, the current setting is returned.
|
Source | extensions/drawing/drawing.lua line 548 |
Signature | hs.drawing:imageAnimates([flag]) -> drawingObject or current value |
Type | Method |
Description |
Get or set whether or not an animated GIF image should cycle through its animation. |
Parameters |
- flag - an optional boolean flag indicating whether or not an animated GIF image should cycle through its animation. Defaults to true.
|
Returns |
- If a setting value is provided, the drawing object is returned; if no argument is provided, the current setting is returned.
|
Source | extensions/drawing/drawing.lua line 520 |
Signature | hs.drawing:imageFrame([type]) -> drawingObject or current value |
Type | Method |
Description |
Get or set what type of frame should be around the drawing frame of the image. |
Parameters |
- type - an optional string value which should match one of the following (default is none):
- none - no frame is drawing around the drawingObject's frameRect
- photo - a thin black outline with a white background and a dropped shadow.
- bezel - a gray, concave bezel with no background that makes the image look sunken.
- groove - a thin groove with a gray background that looks etched around the image.
- button - a convex bezel with a gray background that makes the image stand out in relief, like a button.
|
Returns |
- If a setting value is provided, the drawing object is returned; if no argument is provided, the current setting is returned.
|
Notes |
- Apple considers the photo, groove, and button style frames "stylistically obsolete" and if a frame is required, recommend that you use the bezel style or draw your own to more closely match the OS look and feel.
|
Source | extensions/drawing/drawing.lua line 530 |
Signature | hs.drawing:imageScaling([type]) -> drawingObject or current value |
Type | Method |
Description |
Get or set how an image is scaled within the frame of a drawing object containing an image. |
Parameters |
- type - an optional string value which should match one of the following (default is scaleProportionally):
- shrinkToFit - shrink the image, preserving the aspect ratio, to fit the drawing frame only if the image is larger than the drawing frame.
- scaleToFit - shrink or expand the image to fully fill the drawing frame. This does not preserve the aspect ratio.
- none - perform no scaling or resizing of the image.
- scaleProportionally - shrink or expand the image to fully fill the drawing frame, preserving the aspect ration.
|
Returns |
- If a setting value is provided, the drawing object is returned; if no argument is provided, the current setting is returned.
|
Source | extensions/drawing/drawing.lua line 506 |
Signature | hs.drawing:orderAbove([object2]) -> object |
Type | Method |
Description |
Moves drawing object above drawing object2, or all drawing objects in the same presentation level, if object2 is not provided. |
Parameters |
- Optional drawing object to place the drawing object above.
|
Returns |
|
Source | extensions/drawing/drawing.lua line 670 |
Signature | hs.drawing:orderBelow([object2]) -> object1 |
Type | Method |
Description |
Moves drawing object below drawing object2, or all drawing objects in the same presentation level, if object2 is not provided. |
Parameters |
- Optional drawing object to place the drawing object below.
|
Returns |
|
Source | extensions/drawing/drawing.lua line 680 |
Signature | hs.drawing:rotateImage(angle) -> drawingObject |
Type | Method |
Description |
Rotates an image clockwise around its center |
Parameters |
- angle - the angle in degrees to rotate the image around its center in a clockwise direction.
|
Returns |
|
Notes |
- This method works by rotating the image view within its drawing window. This means that an image which completely fills its viewing area will most likely be cropped in some places. Best results are achieved with images that have clear space around their edges or with
hs.drawing.imageScaling set to "none". |
Source | extensions/drawing/drawing.lua line 493 |
Signature | hs.drawing:sendToBack() -> drawingObject |
Type | Method |
Description |
Places the drawing object behind normal windows, between the desktop wallpaper and desktop icons |
Parameters |
|
Returns |
|
Source | extensions/drawing/drawing.lua line 640 |
Signature | hs.drawing:setAlpha(level) -> object |
Type | Method |
Description |
Sets the alpha level of the window containing the hs.drawing object. |
Parameters |
- level - the alpha level (0.0 - 1.0) to set the object to
|
Returns |
|
Source | extensions/drawing/drawing.lua line 660 |
Signature | hs.drawing:setArcAngles(startAngle, endAngle) -> drawingObject |
Type | Method |
Description |
Changes the starting and ending angles for an arc drawing object |
Parameters |
- startAngle - The starting angle of the arc, measured in degrees clockwise from the y-axis.
- endAngle - The ending angle of the arc, measured in degrees clockwise from the y-axis.
|
Returns |
|
Notes |
- This method should only be used on arc drawing objects
|
Source | extensions/drawing/drawing.lua line 377 |
Signature | hs.drawing:setBehavior(behavior) -> object |
Type | Method |
Description |
Sets the window behaviors represented by the number provided for the window containing the hs.drawing object. |
Parameters |
- behavior - the numeric representation of the behaviors to set for the window of the object
|
Returns |
|
Source | extensions/drawing/drawing.lua line 764 |
Signature | hs.drawing:setBehaviorByLabels(table) -> object |
Type | Method |
Description |
Sets the window behaviors based upon the labels specified in the table provided. |
Parameters |
- a table of label strings or numbers. Recognized values can be found in
hs.drawing.windowBehaviors . |
Returns |
|
Source | extensions/drawing/drawing.lua line 49 |
Signature | hs.drawing:setClickCallback(mouseUpFn, mouseDownFn) -> drawingObject |
Type | Method |
Description |
Sets a callback for mouseUp and mouseDown click events |
Parameters |
- mouseUpFn - A function, can be nil, that will be called when the drawing object is clicked on and the mouse button is released. If this argument is nil, any existing callback is removed.
- mouseDownFn - A function, can be nil, that will be called when the drawing object is clicked on and the mouse button is first pressed down. If this argument is nil, any existing callback is removed.
|
Returns |
|
Notes |
- No distinction is made between the left, right, or other mouse buttons -- they all invoke the same up or down function. If you need to determine which specific button was pressed, use
hs.eventtap.checkMouseButtons() within your callback to check. |
Source | extensions/drawing/drawing.lua line 580 |
Signature | hs.drawing:setFill(doFill) -> drawingObject |
Type | Method |
Description |
Sets whether or not to fill a drawing object |
Parameters |
- doFill - A boolean, true to fill the drawing object, false to not fill
|
Returns |
|
Notes |
- This method should only be used on line, rectangle, circle, or arc drawing objects
|
Source | extensions/drawing/drawing.lua line 444 |
Signature | hs.drawing:setFillColor(color) -> drawingObject |
Type | Method |
Description |
Sets the fill color of a drawing object |
Parameters |
- color - a color table as described in
hs.drawing.color
|
Returns |
|
Notes |
- This method should only be used on rectangle, circle, or arc drawing objects
- Calling this method will remove any gradient fill colors previously set with
hs.drawing:setFillGradient()
|
Source | extensions/drawing/drawing.lua line 363 |
Signature | hs.drawing:setFillGradient(startColor, endColor, angle) -> drawingObject |
Type | Method |
Description |
Sets the fill gradient of a drawing object |
Parameters |
- startColor - A table containing color component values between 0.0 and 1.0 for each of the keys:
- red (default 0.0)
- green (default 0.0)
- blue (default 0.0)
- alpha (default 1.0)
- endColor - A table containing color component values between 0.0 and 1.0 for each of the keys:
- red (default 0.0)
- green (default 0.0)
- blue (default 0.0)
- alpha (default 1.0)
- angle - A number representing the angle of the gradient, measured in degrees, counter-clockwise, from the left of the drawing object
|
Returns |
|
Notes |
- This method should only be used on rectangle, circle, or arc drawing objects
- Calling this method will remove any fill color previously set with
hs.drawing:setFillColor()
|
Source | extensions/drawing/drawing.lua line 391 |
Signature | hs.drawing:setFrame(rect) -> drawingObject |
Type | Method |
Description |
Sets the frame of the drawingObject in absolute coordinates |
Parameters |
- rect - A rect-table containing the co-ordinates and size that should be applied to the drawingObject
|
Returns |
|
Source | extensions/drawing/drawing.lua line 300 |
Signature | hs.drawing:setImage(image) -> drawingObject |
Type | Method |
Description |
Sets the image of a drawing object |
Parameters |
- image - An
hs.image object |
Returns |
|
Source | extensions/drawing/drawing.lua line 483 |
Signature | hs.drawing:setImageASCII(ascii) -> drawingObject |
Type | Method |
Description |
Sets the image of a drawing object from an ASCII representation |
Parameters |
- ascii - A string containing the ASCII image to render
|
Returns |
|
Notes |
- To use the ASCII diagram image support, see http://cocoamine.net/blog/2015/03/20/replacing-photoshop-with-nsstring
|
Source | extensions/drawing/drawing.lua line 25 |
Signature | hs.drawing:setImageFromPath(imagePath) -> drawingObject |
Type | Method |
Description |
Sets the image path of a drawing object |
Parameters |
- imagePath - A string containing the path to an image file
|
Returns |
|
Notes |
- This method should only be used on an image drawing object
- Paths relative to the PWD of Hammerspoon (typically ~/.hammerspoon/) will work, but paths relative to the UNIX homedir character,
~ will not - Animated GIFs are supported. They're not super friendly on your CPU, but they work
|
Source | extensions/drawing/drawing.lua line 10 |
Signature | hs.drawing:setLevel(theLevel) -> drawingObject |
Type | Method |
Description |
Sets the window level more precisely than sendToBack and bringToFront. |
Parameters |
- theLevel - the level specified as a number or as a string where this object should be drawn. If it is a string, it must match one of the keys in
hs.drawing.windowLevels . |
Returns |
|
Notes |
- see the notes for
hs.drawing.windowLevels
- These levels may be unable to explicitly place drawing objects around full-screen macOS windows
|
Source | extensions/drawing/drawing.lua line 740 |
Signature | hs.drawing:setRoundedRectRadii(xradius, yradius) -> drawingObject |
Type | Method |
Description |
Sets the radii of the corners of a rectangle drawing object |
Parameters |
- xradius - A number containing the radius of each corner along the x-axis
- yradius - A number containing the radius of each corner along the y-axis
|
Returns |
|
Notes |
- This method should only be used on rectangle drawing objects
- If either radius value is greater than half the width/height (as appropriate) of the rectangle, the value will be clamped at half the width/height
- If either (or both) radius values are 0, the rectangle will be drawn without rounded corners
|
Source | extensions/drawing/drawing.lua line 428 |
Signature | hs.drawing:setSize(size) -> drawingObject |
Type | Method |
Description |
Resizes a drawing object |
Parameters |
- size - A size-table containing the width and height the drawing object should be resized to
|
Returns |
|
Notes |
- If this is called on an
hs.drawing.text object, only its window will be resized. If you also want to change the font size, use :setTextSize()
|
Source | extensions/drawing/drawing.lua line 271 |
Signature | hs.drawing:setStroke(doStroke) -> drawingObject |
Type | Method |
Description |
Sets whether or not to stroke a drawing object |
Parameters |
- doStroke - A boolean, true to stroke the drawing object, false to not stroke
|
Returns |
|
Notes |
- This method should only be used on line, rectangle, circle, or arc drawing objects
|
Source | extensions/drawing/drawing.lua line 457 |
Signature | hs.drawing:setStrokeColor(color) -> drawingObject |
Type | Method |
Description |
Sets the stroke color of a drawing object |
Parameters |
- color - a color table as described in
hs.drawing.color
|
Returns |
|
Notes |
- This method should only be used on line, rectangle, circle, or arc drawing objects
|
Source | extensions/drawing/drawing.lua line 415 |
Signature | hs.drawing:setStrokeWidth(width) -> drawingObject |
Type | Method |
Description |
Sets the stroke width of a drawing object |
Parameters |
- width - A number containing the width in points to stroke a drawing object
|
Returns |
|
Notes |
- This method should only be used on line, rectangle, circle, or arc drawing objects
|
Source | extensions/drawing/drawing.lua line 470 |
Signature | hs.drawing:setStyledText(message) -> drawingObject |
Type | Method |
Description |
Sets the text of a drawing object from an hs.styledtext object |
Parameters |
- message - Any of the types supported by
hs.styledtext . See hs.styledtext for more details. |
Returns |
|
Notes |
- This method should only be used on text drawing objects
|
Source | extensions/drawing/drawing.lua line 203 |
Signature | hs.drawing:setText(message) -> drawingObject |
Type | Method |
Description |
Sets the text of a drawing object |
Parameters |
- message - A string containing the text to display
|
Returns |
|
Notes |
- This method should only be used on text drawing objects
- If the text of the drawing object is emptied (i.e. "") then style changes may be lost. Use a placeholder such as a space (" ") or hide the object if style changes need to be saved but the text should disappear for a while.
|
Source | extensions/drawing/drawing.lua line 189 |
Signature | hs.drawing:setTextColor(color) -> drawingObject |
Type | Method |
Description |
Sets the default text color for a drawing object |
Parameters |
- color - a color table as described in
hs.drawing.color
|
Returns |
|
Notes |
- This method should only be called on text drawing objects
- This method changes the font color for portions of an
hs.drawing text object which do not have a specific font set in their attributes list (see hs.styledtext for more details). |
Source | extensions/drawing/drawing.lua line 348 |
Signature | hs.drawing:setTextFont(fontname) -> drawingObject |
Type | Method |
Description |
Sets the default font for a drawing object |
Parameters |
- fontname - A string containing the name of the font to use
|
Returns |
|
Notes |
- This method should only be used on text drawing objects
- This method changes the font for portions of an
hs.drawing text object which do not have a specific font set in their attributes list (see hs.styledtext for more details). |
Source | extensions/drawing/drawing.lua line 320 |
Signature | hs.drawing:setTextSize(size) -> drawingObject |
Type | Method |
Description |
Sets the default text size for a drawing object |
Parameters |
- size - A number containing the font size to use
|
Returns |
|
Notes |
- This method should only be used on text drawing objects
- This method changes the font size for portions of an
hs.drawing text object which do not have a specific font set in their attributes list (see hs.styledtext for more details). |
Source | extensions/drawing/drawing.lua line 334 |
Signature | hs.drawing:setTextStyle([textStyle]) -> drawingObject |
Type | Method |
Description |
Sets some simple style parameters for the entire text of a drawing object. For more control over style including having multiple styles within a single text object, use hs.styledtext and hs.drawing:setStyledText instead. |
Parameters |
- textStyle - an optional table containing one or more of the following keys to set for the text of the drawing object (if the table is nil or left out, the style is reset to the
hs.drawing defaults): - font - the name of the font to use (default: the system font)
- size - the font point size to use (default: 27.0)
- color - a color table as described in
hs.drawing.color
- alignment - a string of one of the following indicating the texts alignment within the drawing objects frame: * "left" - the text is visually left aligned. * "right" - the text is visually right aligned. * "center" - the text is visually center aligned. * "justified" - the text is justified * "natural" - (default) the natural alignment of the text’s script
- lineBreak - a string of one of the following indicating how to wrap text which exceeds the drawing object's frame: * "wordWrap" - (default) wrap at word boundaries, unless the word itself doesn’t fit on a single line * "charWrap" - wrap before the first character that doesn’t fit * "clip" - do not draw past the edge of the drawing object frame * "truncateHead" - the line is displayed so that the end fits in the frame and the missing text at the beginning of the line is indicated by an ellipsis * "truncateTail" - the line is displayed so that the beginning fits in the frame and the missing text at the end of the line is indicated by an ellipsis * "truncateMiddle" - the line is displayed so that the beginning and end fit in the frame and the missing text in the middle is indicated by an ellipsis
|
Returns |
|
Notes |
- This method should only be used on text drawing objects
- If the text of the drawing object is currently empty (i.e. "") then style changes may be lost. Use a placeholder such as a space (" ") or hide the object if style changes need to be saved but the text should disappear for a while.
- Only the keys specified are changed. To reset an object to all of its defaults, call this method with an explicit nil as its only parameter (e.g.
hs.drawing:setTextStyle(nil)
- The font, font size, and font color can also be set by their individual specific methods as well; this method is provided so that style components can be stored and applied collectively, as well as used by
hs.drawing.getTextDrawingSize() to determine the proper rectangle size for a textual drawing object. |
Source | extensions/drawing/drawing.lua line 229 |
Signature | hs.drawing:setTopLeft(point) -> drawingObject |
Type | Method |
Description |
Moves the drawingObject to a given point |
Parameters |
- point - A point-table containing the absolute co-ordinates the drawing object should be moved to
|
Returns |
|
Source | extensions/drawing/drawing.lua line 261 |
Signature | hs.drawing:show([fadeInTime]) -> drawingObject |
Type | Method |
Description |
Displays the drawing object |
Parameters |
- fadeInTime - An optional number of seconds over which to fade in the drawing object. Defaults to zero
|
Returns |
|
Source | extensions/drawing/drawing.lua line 594 |