1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# -*- coding: utf-8 -*-
import guidata
import guidata.dataset as gds
# Note: the following line is not required if a QApplication has already been created
_app = guidata.qapplication()
class Processing(
gds.DataSet,
title="Processing Parameters",
comment="This comment concerns this class of parameters, and may be overriden "
"when calling the constructor by passing a comment argument. That is the same for "
"the title.",
):
"""Example"""
a = gds.FloatItem("Parameter #1", default=2.3)
b = gds.IntItem("Parameter #2", min=0, max=10, default=5)
type = gds.ChoiceItem("Processing algorithm", ("type 1", "type 2", "type 3"))
param = Processing() # Default title and comment are used if not provided here
param.edit()
print(param) # Showing param contents
param.b = 4 # Modifying item value
param.view()
# Alternative way for creating a DataSet instance:
param = Processing.create(a=7.323, b=4)
print(param)
|