Skip to content

Finally, a native GUI application for NoneBot2 written in pure Python.

License

Notifications You must be signed in to change notification settings

nonedesktop/Nonebot-Desktop-Qt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nonebot-Desktop-Qt

Finally, a GUI program for Nonebot2

🧭 Development Roadmap

  • Instances management
    • Create instances
    • Open existing instances
    • Run instances
    • Remote Instance Management
  • Log console
  • Components management
    • Drivers install/uninstall/enable/disable
    • Adapters install/uninstall/enable/disable
    • Plugins install/uninstall/enable/disable
    • Built-in plugins enable/disable
  • Configuration editing
    • Visualized config editor
      • DotEnv
      • JSON
      • YAML
      • TOML
    • Bind with config model from components
  • Advanced
    • Import/export "botpack"
  • Performance
    • Monitor startup performance and try to optimize
    • If the startup or initialization takes too long, create a startup screen

👋 Contributing

Code structure to be followed

from typing import Optional, Protocol, TYPE_CHECKING

if TYPE_CHECKING:
    from PySide6.QtCore import QObject


class Interface(Protocol):
    def __init__(self, parent: Optional["QObject"] = None) -> None:
        # super().__init__(parent)
        # Instantiating Data Structures
        # Instantiating Widget Objects
        # Instantiating Layout Objects
        # Initialize Widgets & Layouts
        ...

    def __init_widget(self) -> None:
        # Set Object Name
        # Set Widget Option & Policy
        # Set Geometry
        ...

    def __init_sub_widget(self) -> None:
        # Set Object Name
        # Set Widget Option & Policy
        # Set Geometry
        ...

    def __init_layout(self) -> None:
        # Set Layout Options
        # Place layout widgets
        ...

    def __init_sub_widget(self) -> None:
        # Set Layout Options
        # Place layout widgets
        ...

About

Finally, a native GUI application for NoneBot2 written in pure Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages