diff options
author | Thomas Keck <thomas@macbook.macbook> | 2010-03-13 14:00:42 +0100 |
---|---|---|
committer | Thomas Keck <thomas@macbook.macbook> | 2010-03-13 14:00:42 +0100 |
commit | a0297c212e5a9a4c2c478e538c23ddd0e96ac56e (patch) | |
tree | 68889de4a1e23048d546478ae25a0138136203ed | |
parent | 619dca5ac40418af00b9a4acb954b56701d74299 (diff) | |
download | magicproxy-a0297c212e5a9a4c2c478e538c23ddd0e96ac56e.tar.gz magicproxy-a0297c212e5a9a4c2c478e538c23ddd0e96ac56e.zip |
First mockup of an gui
-rw-r--r-- | gui.py | 56 | ||||
-rwxr-xr-x | proxy.py | 5 |
2 files changed, 61 insertions, 0 deletions
@@ -0,0 +1,56 @@ +#!/usr/bin/python -t +from threading import Thread +import gtk, sys, proxy, time + +gtk.gdk.threads_init() + +class ProxyGUI(gtk.Window): + def __init__(self): + super(ProxyGUI, self).__init__(gtk.WINDOW_TOPLEVEL) + + self.set_border_width(8) + self.set_title("Magicproxy GUI client") + self.set_resizable(False) + + table = gtk.Table(rows=2, columns=2, homogeneous=False); + + b_endpoints = gtk.Button("Configure Endpoints") + b_start = gtk.Button("Start") + b_stop = gtk.Button("Stop") + b_settings = gtk.Button("Configure Settings") + b_quit = gtk.Button("Quit") + + b_endpoints.connect("clicked", self.on_endpoints) + b_start.connect("clicked", self.on_start) + b_settings.connect("clicked", self.on_settings) + b_quit.connect("clicked", self.on_quit) + self.connect("destroy", self.on_quit) + + table.attach(b_endpoints, 0, 1, 0, 1) + table.attach(b_start, 1, 2, 0, 1) + table.attach(b_settings, 0, 1, 1, 2) + table.attach(b_quit, 1, 2, 1, 2) + + + self.add(table) + self.show_all() + + self.proxy = None + + def on_endpoints(self, widget): + pass + def on_start(self, widget): + if not self.proxy: + self.proxy = proxy.HTTPProxyServer() + Thread(target=proxy.asyncore.loop).start() + + def on_settings(self, widget): + pass + def on_quit(self, widget): + if self.proxy: + self.proxy.shutdown() + gtk.main_quit(widget) + +ProxyGUI() +gtk.main() + @@ -217,6 +217,11 @@ class HTTPProxyServer(asyncore.dispatcher): self.bind(("", 8080)) self.listen(5) + def shutdown(self): + #TODO Hier Proxy sauber beenden + #self.channel.close_when_done() + sys.exit() + def handle_accept(self): conn, addr = self.accept() HTTPChannel(self, conn, addr) |