Form Command List example

Form Command List

A Form Command List is a special use case of the UIValueHints class for when you need to create discrete controls in a form. For example, the Item Tags form shows edit fields for each of the selected items’ tags. The User Channels form does something similar, creating edit fields based on the datatype of each user channel on the selected items. In general, if all you need to do is create a pop-up list of choices in a form then you’d be better off implementing a command that defines a queriable string argument, and implementing a UIValueHints object with PopCount(), PopInternalName() and PopUserName() methods.

In order for your command to update the contents of the command list you would, additionally, need to use either an existing notifier or implement a new notifier that sends a DATATYPE invalidation (which will cause the form to rebuild the Form Command List from scratch) and associate the command with it so that forms will know to update itself when the list changes. Notifiers listen for events (usually selection changes, or external changes to a command’s value, such as when the same command is mapped to a key) and alert forms as to how it should refresh the control. The commands within the Form Command List will use their own notifiers to update as needed.

A simple (and somewhat trivial) example of a LXfVALHINT_FORM_COMMAND_LIST_(index)#C73 command

 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env python

################################################################################
#
# FormCommandList.py
#
#
# Description: A simple example of creating a 'Form Command List' custom command,
#              see http://modo.sdk.thefoundry.co.uk/wiki/LXfVALHINT_FORM_COMMAND_LIST_(index)#C73
#              for more info
#
#
# Usage: Enter the command name into a form as a query ie
#        replace.me ?
#
# Last Update: 22:41 30/04/13
#
################################################################################

import lx
import lxifc
import lxu.command

# This is our list of commands. You can generate this list any way you like
# including procedurally - in fact the most common use case for a Form Command
# List would be to generate a list of commands to show in a form procedurally.
cmdlist = ['item.name',
           # A string in the list that starts with a dash (hyphen) followed by
           # a space becomes a line divider in the form.
           '- ',
           'item.color',
           'item.comment',
           # A string in the list that starts with a dash (hyphen) followed by
           # a space and then a string becomes a labelled divider in the form.
           '- I am a Divider',
           'item.create',
           'item.tagAdd']


# The UIValueHints object that returns the items in the list of commands
# to the form.
class MycommandsList(lxifc.UIValueHints):
    def __init__(self, items):
        self._items = items

    def uiv_Flags(self):
        # This is a series of flags, although in this case we're only returning
        # ''fVALHINT_FORM_COMMAND_LIST'' to indicate that there's a Form Command
        # List implemented.
        return lx.symbol.fVALHINT_FORM_COMMAND_LIST

    def uiv_FormCommandListCount(self):
        return len(self._items)

    def uiv_FormCommandListByIndex(self,index):
        return self._items[index]


# This is the command that will be replaced by the commands in MyCommandsList
# in any form in which it's embedded as a query. It requires a queriable
# attribute/argument but neither of the command's ''cmd_Execute'' or ''cmd_Query'' methods
# need to be implemented as neither will be called when the argument is queried
# in a form.  You can still implement them, but they will only be used when
#executing/querying from scripts or CHist etc.
class CmdMyFormCommandsList(lxu.command.BasicCommand):
    def __init__(self):
        lxu.command.BasicCommand.__init__(self)
        # Add an integer attribute. The attribute is required
        self.dyna_Add('cmds', lx.symbol.sTYPE_INTEGER)
        # mark it as queriable
        self.basic_SetFlags(0, lx.symbol.fCMDARG_QUERY)

    def arg_UIValueHints(self, index):
        # create an instance of our commands list object passing it the
        # list of commands.
        if index == 0:
            return MycommandsList(cmdlist)

    def cmd_Execute(self,flags):
        # dummy execute method
        pass

    def cmd_Query(self,index,vaQuery):
        # dummy query method
        pass

# 'blessing' the class registers it as a plugin command. The command string, the
# string that you embed as a query in a form is the second argument to bless(), ie
# 'replace.me'
lx.bless(CmdMyFormCommandsList, "replace.me")