#!/usr/bin/env python # -*- coding: utf-8 -*- """tkinter (Python 3.x)""" # pytkapp.cpr: tkinter py3 # # Copyright (c) 2013 Paul "Mid.Tier" # Author e-mail: mid.tier@gmail.com # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. ################################### ## import ################################### import tkinter as cpr_tkinter import tkinter.constants as cpr_tkconstants import tkinter.scrolledtext as cpr_tkscrolledtext import tkinter.colorchooser as cpr_tkcolorchooser import tkinter.commondialog as cpr_tkcommondialog import tkinter.filedialog as cpr_tkfiledialog import tkinter.font as cpr_tkfont import tkinter.messagebox as cpr_tkmessagebox import tkinter.simpledialog as cpr_tksimpledialog import tkinter.ttk as cpr_ttk