GithubHelp home page GithubHelp logo

huilib's Introduction

huilib (Houdini UI Library)

Python library for building native houdini user interfaces.

This library is a simple Python wrapper around the Houdini .ui scripting language. Although it doesn't cover even a half of all the available houdini UI controlls, it does provide most usefull of them, such as buttons, textFields, checkboxes, menus, etc. The coding style is very similar to PyQt.

It was written for fun. I hope someone finds it usefull.

See examples/all_gadgets.py

scrrenshot

Simple Import Dialog

from huilib import *

class SimpleImportDialog(HDialog):
    def __init__(self, name, title):
        super(SimpleImportDialog, self).__init__(name, title)
        self.setWindowLayout('vertical')

        # Column Layout
        col = HColumnLayout()
        self.filefield = HFileField('geo_field', 'Geo:', type_filter = 'geo')

        # Buttons in row Layout
        self.importButton = HButton('import', 'Import')
        self.closeButton = HButton('close', 'Close')
        row = HRowLayout()
        row.addGadget(self.importButton)
        row.addGadget(self.closeButton)

        # Add file field and buttons raw layout
        col.addGadget(self.filefield)
        col.addLayout(row)

        # Connect button signals
        self.closeButton.connect(self.close)
        self.importButton.connect(self.cb_import)
        self.addLayout(col)

        # This method should ALWAYS be called last!
        self.initUI()


    def cb_import(self):
        val = self.filefield.getValue()
        if not val:
            return
        geo = hou.node('/obj').createNode('geo')
        geo.node('file1').parm('file').set(val)


if __name__ == '__main__':
    ui = SimpleImportDialog(name = 'import_dlg', title = 'Import Dialog')
    ui.show()
    

huilib's People

Contributors

alexxbb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

huilib's Issues

Default Value of HCheckBox

I noticed HCheckBox's value is set to nothing at all despite being the state unticked - so it requires ticking and unticking to finally yield 0 when calling isChecked(). Note unticked corresponds with 0, and ticked corresponds with 1.

I assume this behavior isn't intended? I can attest that it's most definitely is helpful to have it set to 0 from the get go (and no doubt goes along with coding principles).

A quick and dirty fix is this if you want to add that:
image

To avoid meddling with the library, i'm currently doing it myself in my code, i.e.:
image

Anyway, thank you heaps for making this library!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.