[Pyzo] PyUNO Workspace

2017-08-10 Thread sasakelecevic
Hi, I created a new Pyzo tool - PyUNO Workspace. PyUNO Workspace is a modified version of Pyzo's Workspace, designed for Python and PyUno introspection. Features: - inspect Python and PyUNO objects - set arguments for methods to drill down - for examined objects: - find code examples -

[Pyzo] Access selected file/folder from FileBrowser plugin

2017-10-08 Thread sasakelecevic
I am looking for a way to access the currently selected file/folder in the FileBrowser plugin, from another plugin. I don't want to reinvent the wheel, since my plugin requires a file/folder to be selected and FileBrowser plugin is already built-in and was thinking of using it to achieve my go

Re: [Pyzo] Access selected file/folder from FileBrowser plugin

2017-10-08 Thread sasakelecevic
Hi Almar, Thanks for the quick reply, at first glance path() and setPath() approach seem to work. I'll try to look some more into it and keep you posted. Best regards Sasa -- You received this message because you are subscribed to the Google Groups "Pyzo" group. To unsubscribe from this grou

Re: [Pyzo] Access selected file/folder from FileBrowser plugin

2017-10-09 Thread sasakelecevic
Hi Almar, Thank you very much. It works. Code snippet: import pyzo file_browswer = pyzo.toolManager.getTool('pyzofilebrowser') browser = file_browswer.children()[0] browser_tree = browser.children()[2] # snip def setAppDirectory(self): path = browser_tree.selectedItems()[0].path() if

[Pyzo] Pyzo Advanced settings editor

2018-08-08 Thread sasakelecevic
Hi, I have working code for Pyzo Advanced settings editor :). The code is based on Workspace plugins and QTreeWidget. What is the best way to implement this: - as part of the Pyzo (Settings - Advanced settings editor) or - as plugins Advanced settings editor or - as separate plugins (not part of

[Pyzo] Pyzo plugins

2018-12-18 Thread sasakelecevic
Hi, I just created GitHub repo with pyzo plugins: pyzoLinter - pylint pyzoSnippetManager - based on Visual Studio Code snipetts pyzoToolbar pyzoOutline - based on Source Structure plugin, add sorting This is still Alpha - you have been warned! https://github.com/kelsa-pi/pyzo-plugins Best,

[Pyzo] FYI: Pyzo and LibreOffice

2019-09-25 Thread sasakelecevic
Hi, Pyzo is very useful when it comes to Python for Data Science, but there's a new users in the wild. Wiki page (Designing & Developing Python Applications ) for Python macros developers wishing to design LibreOffice