Examples ======== This section contains various examples demonstrating how to use CuteWindow. Available Examples ------------------ * :doc:`demo` - Basic usage example * :doc:`demo_custom_title_bar` - Custom title bar implementation * :doc:`demo_login_dialog` - Login dialog example * :doc:`demo_title_bar_style` - Title bar styling example Running Examples ---------------- To run any example, use: .. code-block:: bash python examples/demo.py Demo ---- Basic usage example showing how to create a simple CuteWindow. .. literalinclude:: ../../examples/demo.py :language: python :lines: 1- Custom Title Bar ---------------- Example showing how to implement a custom title bar. .. literalinclude:: ../../examples/demo_custom_title_bar.py :language: python :lines: 1- Login Dialog ------------ Example showing how to create a login dialog using QuteDialog. .. literalinclude:: ../../examples/demo_login_dialog.py :language: python :lines: 1- Title Bar Style --------------- Example showing different title bar styling options. .. literalinclude:: ../../examples/demo_title_bar_style.py :language: python :lines: 1-