The amongGX toolbar is aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Ulto85/amongGX/llms.txt
Use this file to discover all available pages before exploring further.
QToolBar named "Navigation" that spans the top of the main window. It holds all navigation controls and quick-link buttons in a single horizontal strip, making every feature one click away.
Toolbar Construction
The toolbar is created and added to theMainWindow in __init__:
QLineEdit) is inserted as a widget — not an action — so it expands to fill the available horizontal space between the navigation actions on the left and the quick-link actions on the right.
Action Reference
Every clickable element in the toolbar is aQAction. The table below lists each action in toolbar order:
| Label | Status Tip | Method Called | Description |
|---|---|---|---|
Home | Return to the Skeld | go_home() | Loads the Among Us fan home page |
⤶ | Go Back | browser.back() | Navigates to the previous page in history |
⤷ | Go Forward | browser.forward() | Navigates to the next page in history |
⟳ | Reload | browser.reload() | Reloads the current page |
| (URL bar) | — | navigate_to_url() on Enter | Address input widget |
Discord | Socialize | discord() | Opens Discord in the browser |
♫ | Vibe Check | trap() | Opens a YouTube music link |
ඞ | Don’t Sue Me InnerSloth | get_amongus() | Opens the Among Us Steam page |
👍 | Sub to me plz | subscribe() | Opens the creator’s YouTube channel |
Full Toolbar Source
Below is the complete toolbar setup as it appears inbrowser.py:
Toolbar Layout at a Glance
The
QStatusBar at the bottom of the window displays each action’s status tip text whenever you hover over a toolbar button. For example, hovering over the ඞ button shows "Don't Sue Me InnerSloth" in the status bar. This is powered by Qt’s built-in status tip mechanism — no extra code is required beyond setStatusTip().