Skip to content

fxgui

fxgui

FxGui - A modern Qt-based GUI framework for DCC applications.

This package provides customized Qt widgets and utilities for building consistent user interfaces across different Digital Content Creation (DCC) applications like Houdini, Maya, and Nuke.

Modules:

Name Description
fxconfig

Configuration and settings management.

fxcore

Core functionality and custom Qt classes.

fxdcc

DCC-specific utility functions.

fxicons

Icon management and utilities.

fxstyle

Styling, themes, and color management.

fxutils

General utility functions.

fxwidgets

Custom Qt widgets.

fxconstants

Package constants and paths.

Examples:

Basic usage with FXMainWindow:

>>> from fxgui import fxwidgets
>>> app = fxwidgets.FXApplication()
>>> window = fxwidgets.FXMainWindow(title="My App")
>>> window.show()
>>> app.exec_()