/head: changeset 96
Initial Tk work.
This commit is contained in:
parent
5cf5684feb
commit
6b40bf7973
@ -26,7 +26,8 @@ from threading import *
|
|||||||
if '-d' in sys.argv:
|
if '-d' in sys.argv:
|
||||||
imaplib.Debug = 5
|
imaplib.Debug = 5
|
||||||
|
|
||||||
ui = offlineimap.ui.TTY.TTYUI()
|
# ui = offlineimap.ui.TTY.TTYUI()
|
||||||
|
ui = offlineimap.ui.Tk.TkUI()
|
||||||
ui.init_banner()
|
ui.init_banner()
|
||||||
|
|
||||||
config = ConfigParser()
|
config = ConfigParser()
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
from threading import *
|
from threading import *
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
import sys, traceback
|
import sys, traceback, thread
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
# General utilities
|
# General utilities
|
||||||
@ -38,8 +38,8 @@ def semaphorewait(semaphore):
|
|||||||
semaphore.release()
|
semaphore.release()
|
||||||
|
|
||||||
def threadsreset(threadlist):
|
def threadsreset(threadlist):
|
||||||
for thread in threadlist:
|
for thr in threadlist:
|
||||||
thread.join()
|
thr.join()
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
# Exit-notify threads
|
# Exit-notify threads
|
||||||
@ -80,6 +80,7 @@ class ExitNotifyThread(Thread):
|
|||||||
exited and to provide for the ability for it to find out why."""
|
exited and to provide for the ability for it to find out why."""
|
||||||
def run(self):
|
def run(self):
|
||||||
global exitcondition, exitthread
|
global exitcondition, exitthread
|
||||||
|
self.threadid = thread.get_ident()
|
||||||
try:
|
try:
|
||||||
Thread.run(self)
|
Thread.run(self)
|
||||||
except:
|
except:
|
||||||
|
@ -16,3 +16,106 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
from Tkinter import *
|
||||||
|
from threading import *
|
||||||
|
import thread
|
||||||
|
from offlineimap import threadutil
|
||||||
|
from Queue import Queue
|
||||||
|
import UIBase
|
||||||
|
|
||||||
|
class PasswordDialog:
|
||||||
|
def __init__(self, accountname, config, master=None):
|
||||||
|
self.top = Toplevel(master)
|
||||||
|
self.label = Label(self.frame,
|
||||||
|
text = "%s: Enter password for %s on %s: " % \
|
||||||
|
(accountname, config.get(accountname, "remoteuser"),
|
||||||
|
config.get(accountname, "remotehost")))
|
||||||
|
self.label.pack()
|
||||||
|
|
||||||
|
self.entry = Entry(self.top, show='*')
|
||||||
|
self.entry.pack()
|
||||||
|
|
||||||
|
self.button = Button(self.top, text = "OK", command=self.ok)
|
||||||
|
self.button.pack()
|
||||||
|
|
||||||
|
self.top.wait_window(self.label)
|
||||||
|
|
||||||
|
def ok(self):
|
||||||
|
self.password = self.entry.get()
|
||||||
|
self.top.destroy()
|
||||||
|
|
||||||
|
def createwidgets(self):
|
||||||
|
self.text = Text
|
||||||
|
|
||||||
|
def getpassword(self):
|
||||||
|
return self.password
|
||||||
|
|
||||||
|
class ThreadFrame(Frame):
|
||||||
|
def __init__(self, master=None):
|
||||||
|
self.thread = currentThread()
|
||||||
|
self.threadid = thread.get_ident()
|
||||||
|
Frame.__init__(self, master)
|
||||||
|
self.pack()
|
||||||
|
self.threadlabel = Label(self, text ="Thread %d (%s)" % (self.threadid,
|
||||||
|
self.thread.getName()))
|
||||||
|
self.threadlabel.pack()
|
||||||
|
|
||||||
|
self.account = "Unknown"
|
||||||
|
self.mailbox = "Unknown"
|
||||||
|
self.loclabel = Label(self, text = "Account/mailbox information unknown")
|
||||||
|
self.loclabel.pack()
|
||||||
|
|
||||||
|
self.updateloclabel()
|
||||||
|
|
||||||
|
self.messages = Label(self, text="Messages will appear here.\n")
|
||||||
|
self.messages.pack()
|
||||||
|
|
||||||
|
def setaccount(self, account):
|
||||||
|
self.account = account
|
||||||
|
self.mailbox = "Unknown"
|
||||||
|
self.updateloclabel()
|
||||||
|
|
||||||
|
def setmailbox(self, mailbox):
|
||||||
|
self.mailbox = mailbox
|
||||||
|
self.updateloclabel()
|
||||||
|
|
||||||
|
def updateloclabel(self):
|
||||||
|
self.loclabel['text'] = "Processing %s: %s" % (self.account,
|
||||||
|
self.mailbox)
|
||||||
|
|
||||||
|
def appendmessage(self, newtext):
|
||||||
|
self.message['text'] += "\n" + newtext
|
||||||
|
|
||||||
|
def setmessage(self, newtext):
|
||||||
|
self.message['text'] = newtext
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class TkUI(UIBase):
|
||||||
|
def __init__(self):
|
||||||
|
self.top = Tk()
|
||||||
|
self.threadframes = {}
|
||||||
|
|
||||||
|
def getpass(s, accountname, config):
|
||||||
|
pd = PasswordDialog(accountname, config, Tk())
|
||||||
|
return pd.getpassword()
|
||||||
|
|
||||||
|
def gettf(s):
|
||||||
|
threadid = thread.get_ident()
|
||||||
|
if threadid in self.threadframes:
|
||||||
|
return s.threadframes[threadid]
|
||||||
|
tf = ThreadFrame(s.top)
|
||||||
|
s.threadframes[threadid] = tf
|
||||||
|
return tf
|
||||||
|
|
||||||
|
def _msg(s, msg):
|
||||||
|
s.gettf().setmessage(msg)
|
||||||
|
|
||||||
|
def threadExited(s, thread):
|
||||||
|
threadid = self.threadid
|
||||||
|
if threadid in self.threadframes:
|
||||||
|
tf = self.threadframes[threadid]
|
||||||
|
tf.destroy()
|
||||||
|
del tf[threadid]
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1 @@
|
|||||||
import TTY, UIBase
|
import TTY, UIBase, Tk
|
||||||
try:
|
|
||||||
import Tkinter
|
|
||||||
import Tk
|
|
||||||
except ImportError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user