thandialogosn.py :  » Business-Application » ThanCad » thancad-0.0.9 » thantkdia » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Business Application » ThanCad 
ThanCad » thancad 0.0.9 » thantkdia » thandialogosn.py
##############################################################################
# ThanCad 0.0.9 "DoesSomething": 2dimensional CAD with raster support for engineers.
# 
# Copyright (c) 2001-2009 Thanasis Stamos,  August 23, 2009
# URL:     http://thancad.sourceforge.net
# e-mail:  cyberthanasis@excite.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 2 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 (www.gnu.org/licenses/gpl.html).
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
##############################################################################

"""\
ThanCad 0.0.9 "DoesSomething": 2dimensional CAD with raster support for engineers.

This module displays a dialog for the user to enter object snap values.
It also has the routine to get the osnap values from the config files.
"""

from Tkinter import *
import p_ggen, p_gtkuti
from thandefs.thanatt import ThanAttCol
from thanopt import thancadconf
from thandefs.thanatt import ThanAttCol
from thanvar import thanicon
S = p_ggen.ThanStub

#############################################################################
#############################################################################

class ThanTkOsnap(p_gtkuti.ThanDialog):
    "Dialog for object snap settings."

    def __init__(self, master, val, BOSN, *args, **kw):
        "Extract initial drafting settings."
  self.__val = str(val)
  self.BOSN = BOSN
  p_gtkuti.ThanDialog.__init__(self, master, *args, **kw)

    def body(self, fra):
        "Create dialog widgets."
        self.__objectChooser(fra, 0, 0)
        f = self.__osnapTab(fra, 1, 0)
        self.__tabObj = (f, f, f)
  self.thanOsnapValSet(self.__val)
  del self.__val
  self.__selObj(2)

    def __objectChooser(self, fra, ir, ic):
        "Shows common colors."
  f = Frame(fra, bd=2, relief=GROOVE); f.grid(row=ir, column=ic, sticky="we", ipady=4, pady=4)
  f.columnconfigure(10, weight=1)
  w = Frame(f, width=5); w.grid(row=0, column=0)
  self.__butObj = [None]*3
  for i,t in enumerate(("Snap and Grid", "Polar Tracking", "Object Snap")):
      self.__butObj[i] = Button(f, text=t,  command=S(self.__selObj, i))
      self.__butObj[i].grid(row=0, column=i+1)

        self.__ibutObj = -1
  w = Frame(f); w.grid(row=0, column=4)

    def __selObj(self, i):
        "Selects the object tab to show on the window."
  if self.__ibutObj != -1:
      j = self.__ibutObj
      if j == i: return
      self.__butObj[j].config(default=NORMAL)
      self.__tabObj[j].grid_forget()
  self.__butObj[i].config(default=ACTIVE)
  self.__tabObj[i].grid(row=1, column=0, sticky="we", ipady=4, pady=4)
  self.__ibutObj = i

    def __osnapTab(self, fra, ir, ic):
        "Shows drafting settings."
  modescol = 7               # number of modes per column
  f = Frame(fra, bd=2, relief=GROOVE)
  f.columnconfigure(3, weight=1)
  w = Frame(f, width=5); w.grid(row=0, column=0)
  w = Label(f, text=" Object Snap Modes")
  w.grid(row=0, column=1, columnspan=4, sticky="w")

#  w = Frame(f, width=5); w.grid(row=0, column=3)
#        self.p = PhotoImage(file="/home/a12/th.gif")
        self.p = thanicon.get("andste4")
  w = Label(f, image=self.p)
  w.grid(row=1, column=3, rowspan=modescol)
  w = Frame(f, width=5); w.grid(row=0, column=7)

        self.__osnapVal = []
        bgc = ThanAttCol((0,50,0)).thanTk
        bgc = ThanAttCol((0,75,0)).thanTk
  for i,(mode,t) in enumerate(thancadconf.thanOsnapModesText):
      if mode == "ena":                          # Enabled is not really a mode
          ii = -1; j = 1
      else:
          if i >= modescol: j=3; ii = i-modescol
          else: j = 0; ii = i
          w = Canvas(f, width=28, height=28, bg=bgc)
          w.grid(row=ii+1, column=j+1, pady=4, sticky="w")
          self.__drawMode(w, mode)
      self.__osnapVal.append(IntVar())
      w = Checkbutton(f, text=t, variable=self.__osnapVal[i])
      w.grid(row=ii+1, column=j+2, sticky="w")

  w = Button(f, text="Select All", command=self.__selectAll)
  w.grid(row=1, column=6, sticky="we")
  w = Button(f, text="Clear All", command=self.__clearAll)
  w.grid(row=2, column=6, sticky="we")
  return f

    def __drawMode(self, dc, t):
        "Draws the symbol of mode."
        x = 14; y = 14
  b = h = self.BOSN/2
  tcol = ThanAttCol(thancadconf.thanColOsn).thanTk
  if t == "end":
            items = \
      ( dc.create_rectangle(x-b, y-h, x+b, y+h, width=3, outline=tcol, fill=""),
      )
  elif t == "mid":
            items = \
            ( dc.create_polygon(x-b, y-b, x+b, y-b, x, y+b, width=3, outline=tcol, fill=""),
      )
  elif t == "cen":
            items = \
            ( dc.create_oval(x-b, y-b, x+b, y+b, width=3, outline=tcol, fill=""),
      )
  elif t == "nod":
            items = \
            ( dc.create_oval(x-b, y-b, x+b, y+b, width=3, outline=tcol, fill=""),
              dc.create_line(x-b, y-b, x+b, y+b, width=2, fill=tcol),
              dc.create_line(x-b, y+b, x+b, y-b, width=2, fill=tcol),
      )
  elif t == "qua":
            items = \
      ( dc.create_polygon(x-b,y, x,y+b, x+b,y, x,y-b, width=2, outline=tcol, fill=""),
      )
  elif t == "int":
            items = \
            ( dc.create_line(x-b, y-b, x+b, y+b, width=2, fill=tcol),
              dc.create_line(x-b, y+b, x+b, y-b, width=2, fill=tcol),
      )
  elif t == "tan":
      bb = 0.8*b
            items = \
            ( dc.create_oval(x-bb, y-bb, x+bb, y+bb, width=3, outline=tcol, fill=""),
        dc.create_line(x-b, y-b, x+b, y-b, width=2, fill=tcol),
      )
  elif t == "nea":
            items = \
      ( dc.create_polygon(x-b, y-b, x+b, y+b, x-b, y+b, x+b, y-b, width=2, outline=tcol, fill=""),
      )
        elif t == "per":
            items = \
            ( dc.create_line(x-b, y-b, x-b, y+b, x+b, y+b, width=3, fill=tcol),
              dc.create_line(x-b, y, x, y, x, y+b, width=2, fill=tcol),
            )

    def __selectAll(self):
        "Sets all modes on."
  for iv in self.__osnapVal: iv.set(True)

    def __clearAll(self):
        "Sets all modes off."
  for iv in self.__osnapVal: iv.set(False)

    def thanOsnapValSet(self, modes):
        "Set the values of widgets according to dict modes."
  for iv in self.__osnapVal: iv.set(False)
  for i,(mode,t) in enumerate(thancadconf.thanOsnapModesText):
      if mode in modes: self.__osnapVal[i].set(True)

    def thanOsnapValGet(self):
        "Get the modes checked in the widgets."
  modes = {}
  for i,(mode,t) in enumerate(thancadconf.thanOsnapModesText):
      if self.__osnapVal[i].get(): modes[mode] = True
  return modes

    def validate(self):
        self.result = self.thanOsnapValGet()
        return True

    def destroy(self):
        "Deletes references to widgets, so that it breaks circular references."
  del self.__tabObj, self.__butObj, self.__osnapVal
  p_gtkuti.ThanDialog.destroy(self)

    def __del__(self):
        print "ThanOsnap ThanDialog", self, "dies.."


if __name__ == "__main__":
    root = Tk()
    o = {"mid":1}
    a = ThanTkOsnap(root, o, title="Drafting Settings")
    print a.result
    del a
    print "The End."
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.