Compare commits
1 Commits
870a4559f8
...
master
Author | SHA1 | Date | |
---|---|---|---|
4298d8da16 |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
@ -1,66 +1,36 @@
|
|||||||
import glob
|
import glob
|
||||||
import wx
|
import wx
|
||||||
|
import wx.lib.buttons as buttons
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class ServerPanel(wx.Panel):
|
class ServerPanel(wx.Panel):
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
super().__init__(parent)
|
super().__init__(parent)
|
||||||
main_sizer = wx.BoxSizer(wx.VERTICAL)
|
main_sizer = wx.BoxSizer(wx.VERTICAL)
|
||||||
|
secondary_sizer = wx.BoxSizer(wx.HORIZONTAL)
|
||||||
toolbar1 = wx.ToolBar(self)
|
|
||||||
toolbar1.AddTool(wx.ID_ANY, '', wx.Bitmap('pigeonLOGO.png'))
|
|
||||||
toolbar1.Realize()
|
|
||||||
main_sizer.Add(toolbar1, 0, wx.EXPAND)
|
|
||||||
self.Bind(wx.EVT_TOOL, self.OnQuit)
|
|
||||||
|
|
||||||
self.SetSizer(main_sizer)
|
|
||||||
|
|
||||||
self.SetSize((350, 250))
|
|
||||||
self.Centre()
|
|
||||||
|
|
||||||
self.row_obj_dict = {}
|
self.row_obj_dict = {}
|
||||||
|
|
||||||
self.list_ctrl = wx.ListCtrl(
|
self.list_ctrl = wx.ListCtrl(
|
||||||
self, size=(-1, 100),
|
self, size=(-1, 100),
|
||||||
style=wx.LC_REPORT | wx.BORDER_SUNKEN
|
style=wx.LC_REPORT | wx.BORDER_SUNKEN
|
||||||
)
|
)
|
||||||
self.list_ctrl.InsertColumn(0, 'PID', width=140)
|
# self.pnl1.SetBackgroundColour(wx.BLACK)
|
||||||
self.list_ctrl.InsertColumn(1, 'Local Address', width=140)
|
self.list_ctrl.InsertColumn(0, 'Server name', width=140)
|
||||||
self.list_ctrl.InsertColumn(2, 'Timestamp', width=140)
|
self.list_ctrl.InsertColumn(1, 'Port number', width=140)
|
||||||
self.list_ctrl.InsertColumn(3, 'Proto', width=140)
|
self.list_ctrl.InsertColumn(2, 'Status', width=200)
|
||||||
self.list_ctrl.InsertColumn(4, 'Recv-Q', width=140)
|
|
||||||
self.list_ctrl.InsertColumn(5, 'Send-Q', width=140)
|
|
||||||
self.list_ctrl.InsertColumn(6, 'Foreign Address', width=140)
|
|
||||||
self.list_ctrl.InsertColumn(7, 'Block', width=60)
|
|
||||||
self.list_ctrl.InsertColumn(8, 'State', width=140)
|
|
||||||
self.list_ctrl.InsertColumn(9, 'Duration', width=140)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## To add checkboxes for whether or not something is blocked
|
|
||||||
##idx = 0
|
|
||||||
##for i in varNameForBlock:
|
|
||||||
|
|
||||||
## index = self.list.InsertItem(idx, i[0])
|
|
||||||
## self.list.SetItem(index, 1, i[1])
|
|
||||||
## self.list.SetItem(index, 2, i[2])
|
|
||||||
## idx += 1
|
|
||||||
|
|
||||||
main_sizer.Add(self.list_ctrl, 0, wx.ALL | wx.EXPAND, 5)
|
main_sizer.Add(self.list_ctrl, 0, wx.ALL | wx.EXPAND, 5)
|
||||||
start_button = wx.Button(self, label='Start')
|
start_button = wx.Button(self, label='Start')
|
||||||
|
start_button.SetBackgroundColour((205, 215, 206))
|
||||||
start_button.Bind(wx.EVT_BUTTON, self.on_edit)
|
start_button.Bind(wx.EVT_BUTTON, self.on_edit)
|
||||||
stop_button = wx.Button(self, label='Stop')
|
stop_button = wx.Button(self, label='Stop')
|
||||||
|
stop_button.SetBackgroundColour('#F08080')
|
||||||
|
# wx.BORDER(stop_button, wx.BORDER_NONE)
|
||||||
stop_button.Bind(wx.EVT_BUTTON, self.on_edit)
|
stop_button.Bind(wx.EVT_BUTTON, self.on_edit)
|
||||||
main_sizer.Add(start_button, 0, wx.ALL | 100, 5)
|
main_sizer.Add(start_button, 0, wx.CENTER | wx.ALL | 100, 5)
|
||||||
main_sizer.Add(stop_button, 0, wx.ALL | 100, 5)
|
main_sizer.Add(stop_button, 0, wx.CENTER | 100, 5)
|
||||||
|
# start_button.SetWindowStyleFlag(wx.SIMPLE_BORDER)
|
||||||
|
# stop_button.SetWindowStyleFlag(wx.SIMPLE_BORDER)
|
||||||
|
# wx.StaticBitmap(self, -1, png, (500, 300), (png.GetWidth(), png.GetHeight()))
|
||||||
self.SetSizer(main_sizer)
|
self.SetSizer(main_sizer)
|
||||||
|
|
||||||
def OnQuit(self, e):
|
|
||||||
self.Close()
|
|
||||||
|
|
||||||
def on_edit(self, event):
|
def on_edit(self, event):
|
||||||
print('in on_edit')
|
print('in on_edit')
|
||||||
|
|
||||||
@ -71,12 +41,13 @@ class ServerFrame(wx.Frame):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(parent=None,
|
super().__init__(parent=None,
|
||||||
title='Server Dashboard')
|
title='Server Dashboard')
|
||||||
|
self.SetBackgroundColour((44, 51, 51))
|
||||||
self.panel = ServerPanel(self)
|
self.panel = ServerPanel(self)
|
||||||
|
# image = wx.StaticBitmap(self, wx.ID_ANY)
|
||||||
|
# image.SetBitmap(wx.Bitmap('WXPython.png'))
|
||||||
self.Show()
|
self.Show()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app = wx.App(False)
|
app = wx.App(False)
|
||||||
frame = ServerFrame()
|
frame = ServerFrame()
|
||||||
|
|
||||||
app.MainLoop()
|
app.MainLoop()
|
Reference in New Issue
Block a user