Skip to main content

A modern QML component library inspired by Chakra UI

Project description

Chakra UI QML

A modern, accessible, and customizable QML component library inspired by Chakra UI.

English | 简体中文

Features

  • 🎨 40+ Components - Buttons, Inputs, Cards, Menus, Dialogs and more
  • 🌓 Dark Mode - Built-in theme system with light/dark modes
  • High Performance - Optimized rendering with minimal overhead
  • 🪟 Frameless Window - Native Windows DWM shadow and custom title bar
  • 🎯 Type Safe - Full PySide6 integration with type hints
  • 📱 Responsive - Adaptive layouts and sizing system
  • Accessible - ARIA-compliant components (where applicable)

Installation

pip install chakra-qml

Quick Start

Basic Usage

import sys
from PySide6.QtGui import QGuiApplication
from PySide6.QtQml import QQmlApplicationEngine
from PySide6.QtQuickControls2 import QQuickStyle
from chakra import init

QQuickStyle.setStyle("Basic")
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
init(engine)  # 注册 Chakra 组件
engine.load("main.qml")
sys.exit(app.exec())

QML Example

import QtQuick
import Chakra

CWindow {
    width: 800
    height: 600
    title: "My App"
    
    Column {
        spacing: 16
        anchors.centerIn: parent
        
        CButton {
            text: "Click Me"
            colorScheme: "blue"
            onClicked: console.log("Clicked!")
        }
        
        CInput {
            placeholderText: "Enter text..."
            variant: "outline"
        }
        
        CCard {
            title: "Welcome"
            description: "This is a Chakra UI component"
            width: 300
        }
    }
}

Available Components

Layout

  • CBox - Flexible container with styling props
  • CFlex - Flexbox layout container
  • CFlow - Flow layout for wrapping items
  • CCenter - Center alignment container
  • CContainer - Responsive container with max-width
  • CSpacer - Flexible spacer component

Forms

  • CButton - Versatile button with variants and sizes
  • CInput - Text input with validation states
  • CCheckbox - Checkbox with indeterminate state
  • CSwitch - Toggle switch with labels
  • CSelect - Dropdown select with search

Data Display

  • CCard - Content card with header/footer
  • CBadge - Small status indicator
  • CTag - Removable tag component
  • CProgress - Progress bar with variants
  • CSpinner - Loading spinner
  • CIcon - Icon component with 1000+ Phosphor icons

Feedback

  • CAlert - Alert messages with status
  • CTooltip - Hover tooltip
  • CHoverCard - Hover card with rich content

Overlay

  • CDialog - Modal dialog
  • CDrawer - Side drawer/panel
  • CMenu - Dropdown menu
  • CMenuGroup - Menu group container
  • CMenuItem - Menu item component
  • CMenuSeparator - Menu separator

Navigation

  • CPagination - Pagination controls
  • CSegmentedControl - Segmented picker

Scrolling

  • CScrollBar - Custom scrollbar
  • CScrollArea - Scrollable area
  • CListView - Optimized list view
  • CGridView - Optimized grid view

Other

  • CWindow - Frameless window with native shadow
  • CActionBar - Floating action bar

Theme Customization

The library uses a centralized AppStyle singleton for theming:

// Toggle theme
AppStyle.toggleTheme()

// Check current theme
if (AppStyle.isDark) {
    // Dark mode
}

// Access theme colors
color: AppStyle.primaryColor
color: AppStyle.textColor
color: AppStyle.backgroundColor

Component Props

CButton

CButton {
    text: "Button"
    variant: "solid"        // solid, outline, ghost, link
    colorScheme: "blue"     // blue, green, red, purple, etc.
    size: "md"              // sm, md, lg
    leftIcon: "check"
    rightIcon: "arrow-right"
    isLoading: false
    fullWidth: false
}

CInput

CInput {
    placeholderText: "Enter text"
    variant: "outline"      // outline, filled, flushed
    size: "md"              // sm, md, lg
    isInvalid: false
    isDisabled: false
    isClearable: true
    type: "text"            // text, password
}

CCard

CCard {
    title: "Card Title"
    description: "Card description"
    variant: "elevated"     // elevated, outline, filled, subtle
    size: "md"              // sm, md, lg
    
    // Custom content
    CButton { text: "Action" }
}

Frameless Window

Create modern frameless windows with native Windows shadow:

import Chakra

CWindow {
    width: 1280
    height: 800
    title: "My App"
    
    showTitleBar: true
    showThemeToggle: true
    showMinimize: true
    showMaximize: true
    showClose: true
    shadowEnabled: true     // Native DWM shadow on Windows
    
    // Your content here
}

Performance

This library is optimized for performance:

  • ✅ No unnecessary layer.effect usage
  • ✅ Efficient property bindings
  • ✅ Cached color mappings in AppStyle
  • ✅ Native Windows API for frameless window
  • ✅ Minimal animation overhead

Examples

Check the gallery folder for a complete component showcase, or the examples folder for usage examples:

  • Basic components showcase
  • Form validation
  • Icon browser
  • Dashboard layouts

Requirements

  • Python >= 3.8
  • PySide6 >= 6.5.0

Testing

This library includes a comprehensive test suite for both QML components and Python modules.

Running Tests

# Run QML component tests
python tests/run_qml_tests.py

# Run Python unit tests
python tests/run_python_tests.py

See tests/README.md for detailed testing documentation.

License

MIT License - see LICENSE file for details

Development

Building from Source

# Install dependencies
uv sync --group dev

# Build QML module (auto-generate qmldir)
uv run build-chakra

# Package for distribution
uv build

# Install locally for testing
uv add dist/chakra_qml-*.whl

The build-chakra command automatically:

  • Scans all .qml files in src/Chakra/
  • Detects singleton components (files with pragma Singleton)
  • Generates qmldir module definition

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Credits

Inspired by Chakra UI by Segun Adebayo.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chakra_qml-0.1.0.tar.gz (254.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chakra_qml-0.1.0-py3-none-any.whl (276.7 kB view details)

Uploaded Python 3

File details

Details for the file chakra_qml-0.1.0.tar.gz.

File metadata

  • Download URL: chakra_qml-0.1.0.tar.gz
  • Upload date:
  • Size: 254.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for chakra_qml-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b0692d5ac4d787dc5eacb28af63a9dae51e58737482244507aa95cce83f6d1b6
MD5 7a8cc20ef47252b4b856d81c811fbdbf
BLAKE2b-256 851b0f94ce4ff1f2046995577b0e1e5be96b3d7b5b99fb35b150489de9e0fed5

See more details on using hashes here.

File details

Details for the file chakra_qml-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: chakra_qml-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 276.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for chakra_qml-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8a55dd0362fe09a5ca6561b5d6325a108c33cf4f7111f674223baed56e04dc8b
MD5 c8edfbc9447225221c9010baf2ebef3f
BLAKE2b-256 50f2b7e77a28a841f16afba6295b20cdb8825cb11eef497cbf82d2331baaf20d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page