pluginsTest.py :  » Development » Leo » Leo-4.7.1-final » leo » plugins » 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 » Development » Leo 
Leo » Leo 4.7.1 final » leo » plugins » pluginsTest.py
#@+leo-ver=4-thin
#@+node:EKR.20040517080555.25:@thin pluginsTest.py
"""Test file for Plugins menu protocols"""

#@@language python
#@@tabwidth -4

#@<< imports >>
#@+node:ekr.20050101090207.11:<< imports >>
import leo.core.leoGlobals as g
import leo.core.leoPlugins as leoPlugins

Tk = g.importExtension('Tkinter',pluginName=__name__,verbose=True)

import os
#@nonl
#@-node:ekr.20050101090207.11:<< imports >>
#@nl

__version__ = "1.1"

#@+others
#@+node:ekr.20100128091412.5384:init
def init():

    ok = Tk and not g.app.unitTesting

    if ok: # Register the handlers...

        if g.app.gui is None:
            g.app.createTkGui(__file__)

        ok = g.app.gui.guiName() == "tkinter"
        if ok:
            leoPlugins.registerHandler("select2", onSelect)
            leoPlugins.registerHandler("unselect1", onUnselect)
            g.plugin_signon(__name__)

    return ok
#@-node:ekr.20100128091412.5384:init
#@+node:EKR.20040517080555.26:applyConfiguration
def applyConfiguration(config):

    sections = config.sections()
    sections.sort()

    for section in sections:
        options = config.options(section)
        options.sort()
        for option in options:
            g.pr(section, option, config.get(section, option))
#@-node:EKR.20040517080555.26:applyConfiguration
#@+node:EKR.20040517080555.27:cmd_fn1/2/3
def cmd_fn1(event=None):
    g.es("Fn1",color="blue")

def cmd_fn2(event=None):
    g.es("Fn2",color="blue")

def cmd_fn3(event=None):
    g.es("Fn3",color="blue")
#@-node:EKR.20040517080555.27:cmd_fn1/2/3
#@+node:EKR.20040517080555.28:onSelect
def onSelect (tag,keywords):

    new_v = keywords.get("new_v")
    h = new_v.h
    if h[:7] == "@image ":
        filename = h[7:]
        #@        << Select Image >>
        #@+node:EKR.20040517080555.29:<< Select Image >>
        # Display the image file in the text pane, if you can find the file
        a = g.app
        c = keywords.get("c")
        if not c: return

        body = c.frame.body

        if os.path.isfile(filename):
            try:
                # Note that Tkinter only understands GIF
                photo = Tk.PhotoImage(master=a.root, file=filename)
            except:
                g.es("error: cannot load image")
                return
            # Nicely display the image at the center top and push the text below.
            a.gsphoto = photo # This is soooo important.
            photoWidth = photo.width()
            bodyWidth = body.bodyCtrl.winfo_width()
            padding = int((bodyWidth - photoWidth - 16) / 2)
            padding = max(0,padding)
            a.gsimage = body.bodyCtrl.image_create("1.0",image=photo,padx=padding)
        else:
            g.es("warning: missing image file")
        #@nonl
        #@-node:EKR.20040517080555.29:<< Select Image >>
        #@nl
#@nonl
#@-node:EKR.20040517080555.28:onSelect
#@+node:EKR.20040517080555.30:onUnselect
def onUnselect (tag,keywords):

    a = g.app
    c = keywords.get("c")
    if not c: return

    old_v = keywords.get("old_v")

    if old_v:
        h = old_v.h
        if h[:7] == "@image ":
            #@            << Unselect Image >>
            #@+node:EKR.20040517080555.31:<< Unselect Image >>
            # Erase image if it was previously displayed
            if a.gsimage:
                try:
                    c.frame.body.bodyCtrl.delete(a.gsimage)
                except:
                    g.es("info: no image to erase")

            # And forget about it
            a.gsimage = None
            a.gsphoto = None
            #@-node:EKR.20040517080555.31:<< Unselect Image >>
            #@nl
    else: # Leo is initializing.
        a.gsphoto = None # Holds our photo file
        a.gsimage = None # Holds our image instance within the text pane
#@nonl
#@-node:EKR.20040517080555.30:onUnselect
#@-others
#@-node:EKR.20040517080555.25:@thin pluginsTest.py
#@-leo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.