Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
0ecd99bb
Commit
0ecd99bb
authored
8 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Plugin development doc
parent
0dc9db36
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/install_for_developers.md
+0
-0
0 additions, 0 deletions
doc/install_for_developers.md
doc/plugin_development.md
+82
-0
82 additions, 0 deletions
doc/plugin_development.md
with
82 additions
and
0 deletions
doc/install_for_develop
p
ers.md
→
doc/install_for_developers.md
+
0
−
0
View file @
0ecd99bb
File moved
This diff is collapsed.
Click to expand it.
doc/plugin_development.md
+
82
−
0
View file @
0ecd99bb
# Developing a plugin for sakia
## Prepare dev environment
Follow the doc file
[
Install for developers
](
https://github.com/duniter/sakia/doc/install_for_developers.md
)
.
You can use the same pyenv environment to develop your plugin.
## Plugin structure
The plugin source code should follow the structure below :
```
/
[plugin_pkg_name]/
images/ # The directory containing images used in the widget
images.qrc # The qt resources .qrc file describing available images
[image1.png] # The list of images
[image2.png]
__init__.py # The __init__ file of the plugin
[script_1.py] # Some scripts imported in the __init__ file
[script_2.py]
[ui_file.ui] # ui files designed using QtDesigner
```
The
`__init__.py`
file must set the following global constants :
```
python
PLUGIN_NAME
=
"
Title of the plugin
"
PLUGIN_DESCRIPTION
=
"
Description of the plugin
"
PLUGIN_VERSION
=
"
0.1
"
```
The function below must be present in the
`__init__.py`
file to initialize the plugin on Sakia startup :
```
python
def
plugin_exec
(
app
,
main_window
):
"""
:param sakia.app.Application app:
:param sakia.gui.main_window.controller.MainWindowController main_window:
"""
# Place your init code here
pass
```
icons
## Building your plugin
To build the plugin, you need :
### To generate resources (images, qrc, ...)
Generating resources uses
[
pyrcc5
](
http://pyqt.sourceforge.net/Docs/PyQt5/resources.html
)
.
To help you generate your resources, you should copy the
`gen_resources.py`
file from sakia sources and configure the
variable
`gen_resources`
. Replace
`'src'`
by the name of your plugin package.
### To import your resources in your code
The generation of the resources build the following python files :
-
`filename.ui`
->
`filename_uic.py`
-
`filename.qrc`
->
`filename_rc.py`
The
`filename_uic.py`
file should be imported in the file using the designed widget. See the
[
dialog of the example plugin
](
https://github.com/Insoleet/sakia-plugin-example/blob/master/plugin_example/main_dialog.py
)
The
`filename_rc.py`
file should be imported in the
`__init__.py`
file, on the last line. See the
[
__init__.py of the example plugin
](
https://github.com/Insoleet/sakia-plugin-example/blob/master/plugin_example/__init__.py#L28
)
### To generate your plugin
To generate your plugin, you must zip everything (generated resources) in a zip file respecting the structure below :
```
[plugin_name].zip\
[plugin_name]\
__init__.py
[generated files...]
```
The
[
setup.py
](
https://github.com/Insoleet/sakia-plugin-example/blob/master/setup.py
)
file from the
example plugin is available to help you generate correctly the plugin.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment