代码搜索:master
找到约 10,000 项符合「master」的源代码
代码结果 10,000
www.eeworm.com/read/101005/6262808
c jcmaster.c
/*
* jcmaster.c
*
* Copyright (C) 1991-1996, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying READ
www.eeworm.com/read/100127/6274011
py not-what-you-might-think-1.py
from Tkinter import *
class Test(Frame):
def createWidgets(self):
self.Gpanel = Frame(self, width='1i', height='1i',
background='green')
self.Gpanel.pack(side=LEFT)
# a QUIT button
www.eeworm.com/read/100127/6274012
py canvas-demo-simple.py
from Tkinter import *
# this program creates a canvas and puts a single polygon on the canvas
class Test(Frame):
def printit(self):
print "hi"
def createWidgets(self):
self.QUIT = Button(
www.eeworm.com/read/100127/6274017
py window-creation-w-location.py
from Tkinter import *
import sys
##sys.path.append("/users/mjc4y/projects/python/tkinter/utils")
##from TkinterUtils import *
# this shows how to create a new window with a button in it that
# can
www.eeworm.com/read/100127/6274031
py animation-simple.py
from Tkinter import *
# This program shows how to use the "after" function to make animation.
class Test(Frame):
def printit(self):
print "hi"
def createWidgets(self):
self.QUIT = Button(
www.eeworm.com/read/100127/6274042
py not-what-you-might-think-2.py
from Tkinter import *
class Test(Frame):
def createWidgets(self):
self.Gpanel = Frame(self, width='1i', height='1i',
background='green')
# this line turns off the recalculation of geo
www.eeworm.com/read/100127/6274049
py redemo.py
"""Basic regular expression demostration facility (Perl style syntax)."""
from Tkinter import *
import re
class ReDemo:
def __init__(self, master):
self.master = master
self.promptdisplay =
www.eeworm.com/read/100127/6274057
py attrdialog.py
# The options of a widget are described by the following attributes
# of the Pack and Widget dialogs:
#
# Dialog.current: {name: value}
# -- changes during Widget's lifetime
#
# Dialog.options: {name
www.eeworm.com/read/100127/6274060
py sortvisu.py
#! /usr/bin/env python
"""Sorting algorithms visualizer using Tkinter.
This module is comprised of three ``components'':
- an array visualizer with methods that implement basic sorting
operations (
www.eeworm.com/read/100127/6274073
py www12.py
#! /usr/bin/env python
# www12.py -- display the contents of a URL in a Text widget
# - set window title
# - make window resizable
# - update display while reading
# - vertical scroll bar
# - rewritt