Skip to content Skip to sidebar Skip to footer

How To Make Python Text Into A Button In Python Turtle?

I want to make the word 'CAT' into a button, so when it's clicked it says 'CAT'. Also, the button I want should be in the position that the word is right now when it's not a button

Solution 1:

You could use turtle do draw rectangle which could look like button. And you can useonscreenclick(check_button)to run functioncheck_button` when you click screen. If you clicked in rectangle then it could run function which does something.

import turtle

def show_cat():
    turtle.ht()
    turtle.penup()
    turtle.goto (15, 220)
    turtle.color("black")
    turtle.write("CAT", move=False, align="center", font=("Times New Roman", 120, "bold"))

def check_button(x, y):
    if -300 < x < 300 and 200 < y < 400:
        show_cat()

screen = turtle.Screen()
screen.setup(800,800)

turtle.penup()
turtle.goto(-300, 200)
turtle.pendown()
turtle.begin_fill()
turtle.fillcolor('red')
turtle.fd(600)
turtle.left(90)
turtle.fd(300)
turtle.left(90)
turtle.fd(600)
turtle.left(90)
turtle.fd(300)
turtle.left(90)
turtle.end_fill()

turtle.onscreenclick(check_button)

turtle.mainloop()

Or you can use tk.Button with canvas.master as its parent, and put it on canvas using create_window(x, y, window=widget)

import turtle
import tkinter as tk

def show_cat():
    turtle.ht()
    turtle.penup()
    turtle.goto (15, 220)
    turtle.color("black")
    turtle.write("CAT", move=False, align="center", font=("Times New Roman", 120, "bold"))

screen = turtle.Screen()
screen.setup(800,800)

canvas = screen.getcanvas()

button = tk.Button(canvas.master, text="Click Me", command=show_cat)
canvas.create_window(0, 0, window=button)

#canvas.create_rectangle((100, 100, 700, 300))

turtle.mainloop()

The same way you can put other tkinter's widgets on canvas

EDIT: example with more widgets

import turtle
import tkinter as tk

def show_cat():
    label = tk.Label(canvas.master, text="Cat", font=("Times New Roman", 120, "bold"))
    canvas.create_window(0, -300, window=label)

    canvas.create_text(0, 300, text="HELLO", fill="red", font=("Times New Roman", 120, "bold"))

#-------------------------------------------

screen = turtle.Screen()
screen.setup(800,800)

canvas = screen.getcanvas()

button = tk.Button(canvas.master, text="Click Me", command=show_cat)
canvas.create_window(0, 0, window=button)

turtle.mainloop()

Solution 2:

We could take advantage of the object-oriented nature of turtle to define our own reusable button class for generating multiple buttons:

from turtle import Screen, Turtle

classButton(Turtle):
    FONT_NAME, FONT_SIZE, FONT_TYPE = 'Arial', 18, 'normal'

    HORIZONTAL_PAD, VERTICAL_PAD = 1.05, 1.15def__init__(self, text, position, command=None):
        super().__init__(visible=False)
        self.speed('fastest')
        self.penup()

        self.text = text
        self.position = position
        self.command = command

        self.width, self.height = self.drawButton()

    defdrawButton(self):
        x, y = self.position
        self.setposition(x, y - self.FONT_SIZE/2)
        button_font = (self.FONT_NAME, self.FONT_SIZE, self.FONT_TYPE)
        self.write(self.text, align='center', move=True, font=button_font)

        width = 2 * (self.xcor() - x) * self.HORIZONTAL_PAD
        height = self.FONT_SIZE * self.VERTICAL_PAD

        self.setposition(x - width/2, y - height/2)
        self.pendown()

        for _ inrange(2):
            self.forward(width)
            self.left(90)
            self.forward(height)
            self.left(90)

        self.penup()

        return width, height

    defclickButton(self, x, y):
        c_x, c_y = self.position
        half_w, half_h = self.width/2, self.height/2if c_x - half_w < x < c_x + half_w and c_y - half_h < y < c_y + half_h:
            (self.command)(x, y)

screen = Screen()

cyan = Button("Cyan Background", (100, 100), lambda x, y: screen.bgcolor('cyan'))

screen.onclick(cyan.clickButton, add=True)

yellow = Button("Yellow Background", (-100, -100), lambda x, y: screen.bgcolor('yellow'))

screen.onclick(yellow.clickButton, add=True)

screen.mainloop()

Embellish as you see fit.

Post a Comment for "How To Make Python Text Into A Button In Python Turtle?"