1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
# Copyright (C) 2005 by Magnus Therning
# 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.
# 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
import pygtk
pygtk.require('2.0')
import gtk, gtk.glade, gobject
import os.path
import libkeysafe
import cfg
import ctrl
class MainWinGui(object):
def __init__(self):
object.__init__(self)
self.gui = gtk.glade.XML(os.path.join(libkeysafe.glade_path, 'keysafe.glade'))
self.gui.signal_autoconnect(self)
completion = gtk.EntryCompletion()
self.gui.liststore = gtk.ListStore(str)
completion.set_model(self.gui.liststore)
self.gui.get_widget('entryKeyId').set_completion(completion)
completion.set_text_column(0)
self.ctrl = ctrl.MainWinCtrl(self.gui)
self.gui.get_widget('btnCopyUN').set_sensitive(0)
self.gui.get_widget('btnCopyExit').set_sensitive(0)
self.gui.get_widget('winMain').show_all()
self.gui.get_widget('winMain').set_position(gtk.WIN_POS_MOUSE)
try:
gtk.main()
except:
# no matter what exception, clear the clipboard
self.ctrl.clear_clipboard()
# Main window callbacks
def on_winMain_destroy(self, widget):
self.quit()
def timeout_quit(self):
self.quit()
def on_entryKeyId_changed(self, widget):
un, info = self.ctrl.get_from_entry(widget.get_text())
if un:
self.gui.get_widget('lblUserName').set_text(un)
self.gui.get_widget('lblInfo').set_text(info)
self.gui.get_widget('btnCopyUN').set_sensitive(1)
self.gui.get_widget('btnCopyUN').grab_focus()
self.gui.get_widget('entryPwd').set_sensitive(1)
self.gui.get_widget('btnCopyExit').set_sensitive(1)
else:
self.gui.get_widget('lblUserName').set_text('')
self.gui.get_widget('lblInfo').set_text('')
self.gui.get_widget('btnCopyUN').set_sensitive(0)
self.gui.get_widget('entryPwd').set_sensitive(0)
self.gui.get_widget('btnCopyExit').set_sensitive(0)
def on_btnCopyUN_clicked(self, widget):
self.gui.get_widget('entryPwd').grab_focus()
self.ctrl.copy_text_to_clipboard(
self.gui.get_widget('lblUserName').get_text())
def on_btnCopyExit_clicked(self, widget):
try:
self.ctrl.copy_pw_to_clipboard(
self.gui.get_widget('entryKeyId').get_text(),
self.gui.get_widget('entryPwd').get_text())
gobject.timeout_add(cfg.get_config()['timeout'], self.timeout_quit)
self.gui.get_widget('winMain').hide_all()
except Exception, e:
print e
# quitting must be handled
def quit(self):
self.ctrl.clear_clipboard()
gtk.main_quit()
def main():
MainWinGui()
|