Skip to main content

A Pygame library of a button class with properly-centered text!

Project description

Pygame

TRULY CENTERED BUTTON CLASS

Sick and tired of Pygame's uncentered text on your buttons? Look no further!

my_button = Button(params)

Required parameters

  • screen: pygame.Surface
  • text: str
  • color: tuple (r, g, b)
  • center: tuple (x, y)
  • dim: tuple (w, h)

Optional parameters

  • thickness: int
  • radius: int
  • font_size: int

Additional Attributes

  • real_rect: Actual surrounding border seen on screen
  • font_rect: Invisible border that wraps the text
  • screen_color: Screen color behind the button
  • clicked: Returns whether the button has been clicked

Methods

  • draw(): Draws the button (recommended to run immediately after instantiation)
  • is_hovered(): Checks if button is hovered (does not update visual state)
  • is_clicked(): Updates visual state of button and returns whether the button was just clicked

Quickstart

shell

pip install pygame-truly-centered-button

python

#example.py

import pygame
from pgcenteredbutton import Button, BadButton 

if __name__ == "__main__":
    
    pygame.init()
    clock = pygame.time.Clock()

    screen = pygame.display.set_mode((1000, 1000))
    button_color = (200, 200, 200)
    button_center = (350, 500)
    button_dim = (300, 100)
    
    good_button = Button(screen = screen, text = 'GOOD', color = button_color, center = button_center, dim = button_dim)
    good_button.draw()

    bad_button_center = (650, 500)
    bad_button = BadButton(screen = screen, text = 'BAD', color = button_color, center = bad_button_center, dim = button_dim)
    bad_button.draw()

    while good_button.clicked is False:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                exit()

            if good_button.is_clicked(event):
                print('goodbye world')
                
        clock.tick(60)
        pygame.display.update()
    
    pygame.quit()
    exit()

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

pygame-truly-centered-button-2.1.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file pygame-truly-centered-button-2.1.tar.gz.

File metadata

File hashes

Hashes for pygame-truly-centered-button-2.1.tar.gz
Algorithm Hash digest
SHA256 27f74da579ae842d58ff9baaa8e9a5253b8ee4124d929cb10b313c439a0cfd42
MD5 c0294227f1f9e3e3bdffaede8b69cb9c
BLAKE2b-256 890a00924a5fb929e73887fe1837a912d6008afd417f8ef99101cd93c1bd257f

See more details on using hashes here.

Supported by

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