Skip to main content

Dialogs for use with the Textual package.

Project description

textual-cogs

Framework: Textual

A collection of Textual dialogs.

screenshot

Dialogs included so far:

  • Generic MessageDialog - shows messages to the user
  • OpenFileDialog - gives the user a way to select a file to open
  • QuitDialog - ask the user if they want to quit the application
  • SaveFileDialog - gives the user a way to select a location to save a file
  • SingleChoiceDialog - gives the user a series of choices to pick from
  • SingleColorPickerDialog - gives the user a way to select a color
  • TextEntryDialog - ask the user a question and get their answer using an Input widget

Installation

You can install textual-cog using pip:

python -m pip install textual-cogs

You also need Textual to run these dialogs.

Example Usage

Here is an example of creating a small application that opens the MessageDialog immediately. You would normally open the dialog in response to a message or event that has occurred, such as when the application has an error or you need to tell the user something.

from textual.app import App
from textual.app import App, ComposeResult

from textual_cogs.dialogs import MessageDialog
from textual_cogs import icons


class DialogApp(App):
    def on_mount(self) -> ComposeResult:
        def my_callback(value: None | bool) -> None:
            self.exit()

        self.push_screen(
            MessageDialog(
                "What is your favorite language?",
                icon=icons.ICON_QUESTION,
                title="Warning",
            ),
            my_callback,
        )


if __name__ == "__main__":
    app = DialogApp()
    app.run()

When you run this code, you will get something like the following:

screenshot

Creating a TextEntryDialog

Here is how you would create a TextEntryDialog:

from textual.app import App
from textual.app import App, ComposeResult

from textual_cogs.dialogs import TextEntryDialog


class DialogApp(App):
    def on_mount(self) -> ComposeResult:
        def my_callback(value: str | bool) -> None:
            self.exit()

        self.push_screen(
            TextEntryDialog("What is your name?", "Information"), my_callback
        )


if __name__ == "__main__":
    app = DialogApp()
    app.run()

When you run this code, you will see the following:

screenshot

Creating a SaveFileDialog

The following code demonstrates how to create a SaveFileDialog:

from textual.app import App
from textual.app import App, ComposeResult

from textual_cogs.dialogs import SaveFileDialog


class DialogApp(App):
    def on_mount(self) -> ComposeResult:
        self.push_screen(SaveFileDialog())

if __name__ == "__main__":
    app = DialogApp()
    app.run()

When you run this code, you will see the following:

screenshot

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

textual_cogs-0.0.4.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

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

textual_cogs-0.0.4-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file textual_cogs-0.0.4.tar.gz.

File metadata

  • Download URL: textual_cogs-0.0.4.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for textual_cogs-0.0.4.tar.gz
Algorithm Hash digest
SHA256 d59fd16bb69c1304c570da9caaa5feba7f9e82b8de2ca6cc586e2bd46bbfbfab
MD5 a03aa55f998b78b419b2156acdd0147f
BLAKE2b-256 9a6cf1bb42a81619b3d52090d9a56ae1dc77d5d2cfc9df8c0e882c1574c3cae2

See more details on using hashes here.

File details

Details for the file textual_cogs-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: textual_cogs-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for textual_cogs-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e868305e794e7229923a1306281944f0d00aacc0a3ff21066c35924a123b4bd3
MD5 261a705f2a17f8df077c176c5ad55c93
BLAKE2b-256 12975e77917d79a3808a286cdda09ee3f5610b59eeba245040f455ceeab7dd92

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