aboutsummaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2005-03-11 16:27:39 +0000
committerAaron Bentley <abentley@panoramicfeedback.com>2005-03-11 16:27:39 +0000
commit0620177b8b876765f1a39245fef4207266f5c2bc (patch)
tree428ccb2d4d7d7c3c156e7b8a577199a799dd026c /gui
parent0442791633e6df54ced2777dce9f3a5c01ec9300 (diff)
downloadbugseverywhere-0620177b8b876765f1a39245fef4207266f5c2bc.tar.gz
Moved guis out of the way
Diffstat (limited to 'gui')
-rwxr-xr-xgui/beg12
-rw-r--r--gui/table.py97
-rwxr-xr-xgui/wxbe43
3 files changed, 152 insertions, 0 deletions
diff --git a/gui/beg b/gui/beg
new file mode 100755
index 0000000..55e537d
--- /dev/null
+++ b/gui/beg
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+import table
+from Tkinter import *
+from libbe import bugdir
+
+tk = Tk()
+Label(tk, text="Bug list").pack()
+mlb = table.MultiListbox(tk, (('Severity', 4), ('Creator', 8), ('Summary', 40)))
+for bug in [b for b in bugdir.tree_root(".").list() if b.active]:
+ mlb.insert(END, (bug.severity, bug.creator, bug.summary))
+mlb.pack(expand=YES,fill=BOTH)
+tk.mainloop()
diff --git a/gui/table.py b/gui/table.py
new file mode 100644
index 0000000..2865f28
--- /dev/null
+++ b/gui/table.py
@@ -0,0 +1,97 @@
+from Tkinter import *
+
+class MultiListbox(Frame):
+ def __init__(self, master, lists):
+ Frame.__init__(self, master)
+ self.lists = []
+ for l,w in lists:
+ frame = Frame(self); frame.pack(side=LEFT, expand=YES, fill=BOTH)
+ Label(frame, text=l, borderwidth=1, relief=RAISED).pack(fill=X)
+ lb = Listbox(frame, width=w, borderwidth=0, selectborderwidth=0,
+ relief=FLAT, exportselection=FALSE)
+ lb.pack(expand=YES, fill=BOTH)
+ self.lists.append(lb)
+ lb.bind('<B1-Motion>', lambda e, s=self: s._select(e.y))
+ lb.bind('<Button-1>', lambda e, s=self: s._select(e.y))
+ lb.bind('<Leave>', lambda e: 'break')
+ lb.bind('<B2-Motion>', lambda e, s=self: s._b2motion(e.x, e.y))
+ lb.bind('<Button-2>', lambda e, s=self: s._button2(e.x, e.y))
+ frame = Frame(self); frame.pack(side=LEFT, fill=Y)
+ Label(frame, borderwidth=1, relief=RAISED).pack(fill=X)
+ sb = Scrollbar(frame, orient=VERTICAL, command=self._scroll)
+ sb.pack(expand=YES, fill=Y)
+ self.lists[0]['yscrollcommand']=sb.set
+
+ def _select(self, y):
+ row = self.lists[0].nearest(y)
+ self.selection_clear(0, END)
+ self.selection_set(row)
+ return 'break'
+
+ def _button2(self, x, y):
+ for l in self.lists: l.scan_mark(x, y)
+ return 'break'
+
+ def _b2motion(self, x, y):
+ for l in self.lists: l.scan_dragto(x, y)
+ return 'break'
+
+ def _scroll(self, *args):
+ for l in self.lists:
+ apply(l.yview, args)
+
+ def curselection(self):
+ return self.lists[0].curselection()
+
+ def delete(self, first, last=None):
+ for l in self.lists:
+ l.delete(first, last)
+
+ def get(self, first, last=None):
+ result = []
+ for l in self.lists:
+ result.append(l.get(first,last))
+ if last: return apply(map, [None] + result)
+ return result
+
+ def index(self, index):
+ self.lists[0].index(index)
+
+ def insert(self, index, *elements):
+ for e in elements:
+ i = 0
+ for l in self.lists:
+ l.insert(index, e[i])
+ i = i + 1
+
+ def size(self):
+ return self.lists[0].size()
+
+ def see(self, index):
+ for l in self.lists:
+ l.see(index)
+
+ def selection_anchor(self, index):
+ for l in self.lists:
+ l.selection_anchor(index)
+
+ def selection_clear(self, first, last=None):
+ for l in self.lists:
+ l.selection_clear(first, last)
+
+ def selection_includes(self, index):
+ return self.lists[0].selection_includes(index)
+
+ def selection_set(self, first, last=None):
+ for l in self.lists:
+ l.selection_set(first, last)
+
+if __name__ == '__main__':
+ tk = Tk()
+ Label(tk, text='MultiListbox').pack()
+ mlb = MultiListbox(tk, (('Subject', 40), ('Sender', 20), ('Date', 10)))
+ for i in range(1000):
+ mlb.insert(END, ('Important Message: %d' % i, 'John Doe', '10/10/%04d' % (1900+i)))
+ mlb.pack(expand=YES,fill=BOTH)
+ tk.mainloop()
+
diff --git a/gui/wxbe b/gui/wxbe
new file mode 100755
index 0000000..a83a896
--- /dev/null
+++ b/gui/wxbe
@@ -0,0 +1,43 @@
+#!/usr/bin/env python
+from wxPython.wx import *
+from wxPython.lib.mixins.listctrl import wxListCtrlAutoWidthMixin
+from libbe import bugdir
+
+class MyApp(wxApp):
+ def OnInit(self):
+ frame = wxFrame(NULL, -1, "Bug display")
+ frame.Show(true)
+ self.SetTopWindow(frame)
+ sizer = wxBoxSizer(wxVERTICAL)
+ bugs = BugList(frame)
+ bugs.SetSize((400, 65))
+# bugs.SetDimensions(-1, -1, -1, -1)
+ sizer.Add(bugs, wxGROW)
+ frame.SetSizer(sizer)
+ frame.Layout()
+ return true
+
+class BugList(wxListCtrl, wxListCtrlAutoWidthMixin):
+ def __init__(self, parent):
+ wxListCtrl.__init__(self, parent, -1,
+ style = wxLC_REPORT|wxLC_VRULES|wxLC_HRULES)
+ wxListCtrlAutoWidthMixin.__init__(self)
+ columns = ("Severity", "Creator", "Summary")
+ for x in range(len(columns)):
+ self.InsertColumn(x, columns[x])
+ self.SetColumnWidth(x, wxLIST_AUTOSIZE_USEHEADER)
+ for bug in [b for b in bugdir.tree_root(".").list() if b.active]:
+ id = self.InsertStringItem(self.GetItemCount(), bug.severity)
+ self.SetStringItem(id, 1, bug.creator)
+ self.SetStringItem(id, 2, bug.summary)
+ self.EnsureVisible(id)
+ for x in range(len(columns)):
+ self.SetColumnWidth(x, wxLIST_AUTOSIZE)
+ conts_width = self.GetColumnWidth(x)
+ self.SetColumnWidth(x, wxLIST_AUTOSIZE_USEHEADER)
+ if conts_width > self.GetColumnWidth(x):
+ self.SetColumnWidth(x, conts_width)
+
+
+app = MyApp(0)
+app.MainLoop()