-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.py
144 lines (113 loc) · 5.47 KB
/
about.py
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
"""
Janela responsável pela classe da janela Sobre.
about.py
"""
import wx
import wx.richtext as rt
import webbrowser
class About(wx.Dialog):
def __init__(self, parent):
style = wx.DEFAULT_FRAME_STYLE & (~wx.MAXIMIZE_BOX) & (~wx.MINIMIZE_BOX) & (~wx.RESIZE_BORDER)
super().__init__(parent, style=style)
self.parent = parent
self.SetIcon(wx.Icon('images/icons/app_logo.ico'))
self.SetTitle('Sobre')
self.SetSize((350, 350))
self.CenterOnParent()
self.initUI()
self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
def initUI(self):
''' Inicializa a UI. '''
master = wx.BoxSizer(wx.VERTICAL)
logo = wx.StaticBitmap(self, -1, wx.Bitmap('images/icons/app_logo.ico'))
name = wx.StaticText(self, -1, 'Laboratório Virtual de Bombas Hidráulicas')
ver = wx.StaticText(self, -1, f'Versão: {self.parent.version}')
pyVer = wx.StaticText(self, -1, 'Python: 3.9.2')
wxVer = wx.StaticText(self, -1, 'wxPython: 4.1.1 msw (phoenix)')
self.rtc = rt.RichTextCtrl(self, -1, size=(300, 150), style=wx.TE_READONLY)
self.rtc.GetCaret().Hide()
self.rtc.Bind(wx.EVT_TEXT_URL, self.OnURL)
self.rtc.WriteText('Este projeto foi desenvolvido no âmbito do Edital UFRGS EaD 28 (')
self.writeInURL('http://www.ufrgs.br/sead', 'SEAD/UFRGS', False)
self.rtc.WriteText(').')
self.rtc.Newline()
self.rtc.Newline()
self.writeInBold('Equipe:')
self.rtc.Newline()
self.rtc.AppendText('Leandro Arruda Monteiro (Programador)')
self.rtc.Newline()
self.rtc.AppendText('Mauricio Dai Prá (Autor/Orientador)')
self.rtc.Newline()
self.rtc.AppendText('Luiz Augusto Magalhães Endres (Autor/Revisor)')
self.rtc.Newline()
self.rtc.AppendText('Marcos Vinícius Fernandes Trindade (Diagramador)')
self.rtc.Newline()
self.rtc.AppendText('Pedro Guido Mottes Bassegio (Autor)')
self.rtc.Newline()
self.rtc.AppendText('Guilherme Santanna Castiglio (Autor)')
self.rtc.Newline()
self.rtc.AppendText('Gustavo Diefenbach (Ilustrador)')
self.rtc.Newline()
self.rtc.Newline()
self.writeInBold('Link de acesso:')
self.rtc.Newline()
self.rtc.AppendText('Laboratório de Obras Hidráulicas: ')
self.writeInURL('http://www.ufrgs.br/loh', 'LOH')
self.rtc.Newline()
self.writeInBold('Email do LENHS:')
self.rtc.Newline()
self.writeBlueUnderlined('lenhs-iph@ufrgs.br')
self.rtc.Newline()
self.rtc.Newline()
self.writeInBold('Ícones:')
self.rtc.Newline()
self.writeInURL('https://www.flaticon.com/authors/roundicons', 'roundicons')
self.writeInURL('https://www.flaticon.com/authors/alfredo-hernandez', 'alfredo-hernandez')
self.writeInURL('https://www.flaticon.com/authors/good-ware', 'good-ware')
self.writeInURL('https://www.flaticon.com/authors/monkik', 'monkik')
self.writeInURL('https://www.flaticon.com/authors/freepik', 'freepik')
self.writeInURL('https://www.flaticon.com/authors/icongeek26', 'icongeek26')
self.writeInURL('https://www.flaticon.com/authors/vitaly-gorbachev', 'vitaly-gorbachev')
self.writeInURL('https://www.iconfinder.com/encoderxsolutions', 'encoderxsolutions')
self.writeInURL('https://www.iconfinder.com/mystockicons', 'mystockicons')
self.rtc.Newline()
self.rtc.BeginAlignment(wx.TEXT_ALIGNMENT_CENTER)
self.rtc.WriteImage(wx.Bitmap('images/lab_logo_50.png'))
self.rtc.Newline()
self.rtc.AppendText('Laboratório de Eficiência Energética e Hidráulica no Saneamento')
master.Add(logo, flag=wx.ALL | wx.ALIGN_CENTER, border=10)
master.Add(name, flag=wx.LEFT | wx.RIGHT | wx.TOP | wx.ALIGN_CENTER, border=10)
master.Add(ver, flag=wx.ALIGN_CENTER)
master.Add(pyVer, flag=wx.ALIGN_CENTER)
master.Add(wxVer, flag=wx.ALIGN_CENTER)
master.Add(self.rtc, flag=wx.TOP | wx.BOTTOM | wx.ALIGN_CENTER, border=15)
self.SetSizer(master)
def writeInBold(self, text):
''' Escreve `text` em self.rtc em negrito e depois muda para o estilo padrão. '''
self.rtc.ApplyBoldToSelection()
self.rtc.WriteText(text)
self.rtc.SetDefaultStyle(wx.TextAttr())
def writeInURL(self, url, text, appendNewLine=True):
''' Escreve `text` em self.rtc no estilo URL e depois muda para o estilo padrão. '''
self.rtc.BeginTextColour(wx.BLUE)
self.rtc.BeginUnderline()
self.rtc.BeginURL(url)
self.rtc.WriteText(text)
if appendNewLine: self.rtc.AppendText('')
self.rtc.EndTextColour()
self.rtc.EndUnderline()
self.rtc.EndURL()
def OnURL(self, event):
''' Chamada quando algum link é clicado. Abre o link no browser padrão da máquina. '''
webbrowser.open_new(event.GetString())
def writeBlueUnderlined(self, text):
''' Escreve `text` em azul com sublinhado. '''
self.rtc.BeginTextColour(wx.BLUE)
self.rtc.BeginUnderline()
self.rtc.WriteText(text)
self.rtc.EndTextColour()
self.rtc.EndUnderline()
def OnCloseWindow(self, event):
''' Fecha a janela. '''
self.parent.aboutWindow = None
self.Destroy()