Skip to content

Python convenience functions to control turtle window appearance and behaviour

License

Notifications You must be signed in to change notification settings

edbotstudio/turtlex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python 'turtlex' package

Python convenience functions to control turtle window appearance and behaviour.

Installation

Install the package using PIP with:

$ pip install turtlex

Usage

Let's just jump straight in to a turtle program using the turtlex front() function.

import turtle                                   # we'll need the turtle package
import turtlex                                  # utils for window appearance and behaviour

screen = turtle.Screen()                        # 'screen' is our window
screen.title("Just wanted to say..")
screen.setup(500, 400)                          # set the window size in pixels
screen.bgcolor("lightgreen")                    # set the window background color

# Say hello!
turtle.write("Hello world!", font=("Courier", 30, "italic"), align="center")
turtle.hideturtle()

turtlex.front(screen, True)                     # keep on top of existing windows
screen.mainloop()                               # process window events

Easy! Here's the full list of functions.

Functions in the turtlex package

Send the window to the top of the window stack. If 'alwaysAtFront' is true then keep the window at the front.

def front(screen, alwaysAtFront=False)

Setting 'full' to true will make the window fullscreen.

def fullscreen(screen, full=True)

Set the opacity of the window by setting the 'alpha' value (0 - 1).

def opacity(screen, alpha=0.5)

Set 'disabled' to true to disable window management functions including maximise, minimise, move & close.

def disabled(screen, disabled=True)

Setting 'tool' to true changes the title bar decoration to a toolbar.

def toolwindow(screen, tool=True)

Setting 'x' and 'y' to true prevents window resizing in the horizontal and vertical direction respectively.

def noresize(screen, x=False, y=False)

Setting 'nodecorate' to true removes the windows decoration including title bar.

def nodecorate(screen, nodecorate=True)

Set the minimum size of the window in pixels.

def minsize(screen, width=None, height=None)

Set the maximum size of the window in pixels.

def maxsize(screen, width=None, height=None)

Minimise the window.

def minimise(screen)
def minimize(screen)

Restore the window.

def restore(screen)

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Go to https://github.com/edbotstudio/turtlex.
  2. Fork the project.
  3. Create your feature branch (git checkout -b feature/AmazingFeature).
  4. Commit your changes (git commit -m 'Add some AmazingFeature').
  5. Push to the branch (git push origin feature/AmazingFeature).
  6. Open a pull request.

Licence

Distributed under the MIT Licence. See the LICENCE for more information.

About

Python convenience functions to control turtle window appearance and behaviour

Resources

License

Stars

Watchers

Forks

Packages

No packages published