org.flameshot.Flameshot.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
  2. <node>
  3. <interface name="org.flameshot.Flameshot">
  4. <!--
  5. attachPin:
  6. @data: Byte array containing the screenshot and geometry information.
  7. Attach a pinned screenshot widget to the daemon.
  8. -->
  9. <method name="attachPin">
  10. <arg name="data" type="ay" direction="in"/>
  11. </method>
  12. <!--
  13. attachScreenshotToClipboard:
  14. @screenshot: Byte array containing the screenshot pixmap.
  15. Copy the screenshot to the daemon's clipboard, to prevent losing the
  16. clipboard when a flameshot subcommand exits.
  17. -->
  18. <method name="attachScreenshotToClipboard">
  19. <arg name="screenshot" type="ay" direction="in"/>
  20. </method>
  21. <!--
  22. attachTextToClipboard:
  23. @text: Text to be copied to the clipboard.
  24. @notification: Optional notification to send.
  25. Copy the text to the daemon's clipboard, to prevent losing the
  26. clipboard when a flameshot subcommand exits.
  27. -->
  28. <method name="attachTextToClipboard">
  29. <arg name="text" type="s" direction="in"/>
  30. <arg name="notification" type="s" direction="in"/>
  31. </method>
  32. </interface>
  33. </node>