Moved UI related files all into the bitmessageqt folder
This commit is contained in:
parent
28f9144113
commit
aeeb7c9878
|
@ -64,146 +64,147 @@ class outgoingSynSender(threading.Thread):
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
global alreadyAttemptedConnectionsListResetTime
|
global alreadyAttemptedConnectionsListResetTime
|
||||||
while True:
|
while True:
|
||||||
if len(selfInitiatedConnections[self.streamNumber]) >= 8: # maximum number of outgoing connections = 8
|
while len(selfInitiatedConnections[self.streamNumber]) >= 8: # maximum number of outgoing connections = 8
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
else:
|
if shared.shutdown:
|
||||||
random.seed()
|
break
|
||||||
HOST, = random.sample(shared.knownNodes[self.streamNumber], 1)
|
random.seed()
|
||||||
alreadyAttemptedConnectionsListLock.acquire()
|
HOST, = random.sample(shared.knownNodes[self.streamNumber], 1)
|
||||||
while HOST in alreadyAttemptedConnectionsList or HOST in shared.connectedHostsList:
|
alreadyAttemptedConnectionsListLock.acquire()
|
||||||
alreadyAttemptedConnectionsListLock.release()
|
while HOST in alreadyAttemptedConnectionsList or HOST in shared.connectedHostsList:
|
||||||
# print 'choosing new sample'
|
|
||||||
random.seed()
|
|
||||||
HOST, = random.sample(shared.knownNodes[
|
|
||||||
self.streamNumber], 1)
|
|
||||||
time.sleep(1)
|
|
||||||
# Clear out the alreadyAttemptedConnectionsList every half
|
|
||||||
# hour so that this program will again attempt a connection
|
|
||||||
# to any nodes, even ones it has already tried.
|
|
||||||
if (time.time() - alreadyAttemptedConnectionsListResetTime) > 1800:
|
|
||||||
alreadyAttemptedConnectionsList.clear()
|
|
||||||
alreadyAttemptedConnectionsListResetTime = int(
|
|
||||||
time.time())
|
|
||||||
alreadyAttemptedConnectionsListLock.acquire()
|
|
||||||
alreadyAttemptedConnectionsList[HOST] = 0
|
|
||||||
alreadyAttemptedConnectionsListLock.release()
|
alreadyAttemptedConnectionsListLock.release()
|
||||||
PORT, timeNodeLastSeen = shared.knownNodes[
|
# print 'choosing new sample'
|
||||||
|
random.seed()
|
||||||
|
HOST, = random.sample(shared.knownNodes[
|
||||||
|
self.streamNumber], 1)
|
||||||
|
time.sleep(1)
|
||||||
|
# Clear out the alreadyAttemptedConnectionsList every half
|
||||||
|
# hour so that this program will again attempt a connection
|
||||||
|
# to any nodes, even ones it has already tried.
|
||||||
|
if (time.time() - alreadyAttemptedConnectionsListResetTime) > 1800:
|
||||||
|
alreadyAttemptedConnectionsList.clear()
|
||||||
|
alreadyAttemptedConnectionsListResetTime = int(
|
||||||
|
time.time())
|
||||||
|
alreadyAttemptedConnectionsListLock.acquire()
|
||||||
|
alreadyAttemptedConnectionsList[HOST] = 0
|
||||||
|
alreadyAttemptedConnectionsListLock.release()
|
||||||
|
PORT, timeNodeLastSeen = shared.knownNodes[
|
||||||
|
self.streamNumber][HOST]
|
||||||
|
sock = socks.socksocket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
# This option apparently avoids the TIME_WAIT state so that we
|
||||||
|
# can rebind faster
|
||||||
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||||
|
sock.settimeout(20)
|
||||||
|
if shared.config.get('bitmessagesettings', 'socksproxytype') == 'none' and verbose >= 2:
|
||||||
|
shared.printLock.acquire()
|
||||||
|
print 'Trying an outgoing connection to', HOST, ':', PORT
|
||||||
|
shared.printLock.release()
|
||||||
|
# sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
elif shared.config.get('bitmessagesettings', 'socksproxytype') == 'SOCKS4a':
|
||||||
|
if verbose >= 2:
|
||||||
|
shared.printLock.acquire()
|
||||||
|
print '(Using SOCKS4a) Trying an outgoing connection to', HOST, ':', PORT
|
||||||
|
shared.printLock.release()
|
||||||
|
proxytype = socks.PROXY_TYPE_SOCKS4
|
||||||
|
sockshostname = shared.config.get(
|
||||||
|
'bitmessagesettings', 'sockshostname')
|
||||||
|
socksport = shared.config.getint(
|
||||||
|
'bitmessagesettings', 'socksport')
|
||||||
|
rdns = True # Do domain name lookups through the proxy; though this setting doesn't really matter since we won't be doing any domain name lookups anyway.
|
||||||
|
if shared.config.getboolean('bitmessagesettings', 'socksauthentication'):
|
||||||
|
socksusername = shared.config.get(
|
||||||
|
'bitmessagesettings', 'socksusername')
|
||||||
|
sockspassword = shared.config.get(
|
||||||
|
'bitmessagesettings', 'sockspassword')
|
||||||
|
sock.setproxy(
|
||||||
|
proxytype, sockshostname, socksport, rdns, socksusername, sockspassword)
|
||||||
|
else:
|
||||||
|
sock.setproxy(
|
||||||
|
proxytype, sockshostname, socksport, rdns)
|
||||||
|
elif shared.config.get('bitmessagesettings', 'socksproxytype') == 'SOCKS5':
|
||||||
|
if verbose >= 2:
|
||||||
|
shared.printLock.acquire()
|
||||||
|
print '(Using SOCKS5) Trying an outgoing connection to', HOST, ':', PORT
|
||||||
|
shared.printLock.release()
|
||||||
|
proxytype = socks.PROXY_TYPE_SOCKS5
|
||||||
|
sockshostname = shared.config.get(
|
||||||
|
'bitmessagesettings', 'sockshostname')
|
||||||
|
socksport = shared.config.getint(
|
||||||
|
'bitmessagesettings', 'socksport')
|
||||||
|
rdns = True # Do domain name lookups through the proxy; though this setting doesn't really matter since we won't be doing any domain name lookups anyway.
|
||||||
|
if shared.config.getboolean('bitmessagesettings', 'socksauthentication'):
|
||||||
|
socksusername = shared.config.get(
|
||||||
|
'bitmessagesettings', 'socksusername')
|
||||||
|
sockspassword = shared.config.get(
|
||||||
|
'bitmessagesettings', 'sockspassword')
|
||||||
|
sock.setproxy(
|
||||||
|
proxytype, sockshostname, socksport, rdns, socksusername, sockspassword)
|
||||||
|
else:
|
||||||
|
sock.setproxy(
|
||||||
|
proxytype, sockshostname, socksport, rdns)
|
||||||
|
|
||||||
|
try:
|
||||||
|
sock.connect((HOST, PORT))
|
||||||
|
rd = receiveDataThread()
|
||||||
|
rd.daemon = True # close the main program even if there are threads left
|
||||||
|
objectsOfWhichThisRemoteNodeIsAlreadyAware = {}
|
||||||
|
rd.setup(sock, HOST, PORT, self.streamNumber,
|
||||||
|
objectsOfWhichThisRemoteNodeIsAlreadyAware)
|
||||||
|
rd.start()
|
||||||
|
shared.printLock.acquire()
|
||||||
|
print self, 'connected to', HOST, 'during an outgoing attempt.'
|
||||||
|
shared.printLock.release()
|
||||||
|
|
||||||
|
sd = sendDataThread()
|
||||||
|
sd.setup(sock, HOST, PORT, self.streamNumber,
|
||||||
|
objectsOfWhichThisRemoteNodeIsAlreadyAware)
|
||||||
|
sd.start()
|
||||||
|
sd.sendVersionMessage()
|
||||||
|
|
||||||
|
except socks.GeneralProxyError as err:
|
||||||
|
if verbose >= 2:
|
||||||
|
shared.printLock.acquire()
|
||||||
|
print 'Could NOT connect to', HOST, 'during outgoing attempt.', err
|
||||||
|
shared.printLock.release()
|
||||||
|
PORT, timeLastSeen = shared.knownNodes[
|
||||||
self.streamNumber][HOST]
|
self.streamNumber][HOST]
|
||||||
sock = socks.socksocket(socket.AF_INET, socket.SOCK_STREAM)
|
if (int(time.time()) - timeLastSeen) > 172800 and len(shared.knownNodes[self.streamNumber]) > 1000: # for nodes older than 48 hours old if we have more than 1000 hosts in our list, delete from the shared.knownNodes data-structure.
|
||||||
# This option apparently avoids the TIME_WAIT state so that we
|
shared.knownNodesLock.acquire()
|
||||||
# can rebind faster
|
del shared.knownNodes[self.streamNumber][HOST]
|
||||||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
shared.knownNodesLock.release()
|
||||||
sock.settimeout(20)
|
|
||||||
if shared.config.get('bitmessagesettings', 'socksproxytype') == 'none' and verbose >= 2:
|
|
||||||
shared.printLock.acquire()
|
shared.printLock.acquire()
|
||||||
print 'Trying an outgoing connection to', HOST, ':', PORT
|
print 'deleting ', HOST, 'from shared.knownNodes because it is more than 48 hours old and we could not connect to it.'
|
||||||
shared.printLock.release()
|
shared.printLock.release()
|
||||||
# sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
except socks.Socks5AuthError as err:
|
||||||
elif shared.config.get('bitmessagesettings', 'socksproxytype') == 'SOCKS4a':
|
shared.UISignalQueue.put((
|
||||||
if verbose >= 2:
|
'updateStatusBar', _translate(
|
||||||
shared.printLock.acquire()
|
"MainWindow", "SOCKS5 Authentication problem: %1").arg(str(err))))
|
||||||
print '(Using SOCKS4a) Trying an outgoing connection to', HOST, ':', PORT
|
except socks.Socks5Error as err:
|
||||||
shared.printLock.release()
|
pass
|
||||||
proxytype = socks.PROXY_TYPE_SOCKS4
|
print 'SOCKS5 error. (It is possible that the server wants authentication).)', str(err)
|
||||||
sockshostname = shared.config.get(
|
except socks.Socks4Error as err:
|
||||||
'bitmessagesettings', 'sockshostname')
|
print 'Socks4Error:', err
|
||||||
socksport = shared.config.getint(
|
except socket.error as err:
|
||||||
'bitmessagesettings', 'socksport')
|
if shared.config.get('bitmessagesettings', 'socksproxytype')[0:5] == 'SOCKS':
|
||||||
rdns = True # Do domain name lookups through the proxy; though this setting doesn't really matter since we won't be doing any domain name lookups anyway.
|
print 'Bitmessage MIGHT be having trouble connecting to the SOCKS server. ' + str(err)
|
||||||
if shared.config.getboolean('bitmessagesettings', 'socksauthentication'):
|
else:
|
||||||
socksusername = shared.config.get(
|
if verbose >= 1:
|
||||||
'bitmessagesettings', 'socksusername')
|
|
||||||
sockspassword = shared.config.get(
|
|
||||||
'bitmessagesettings', 'sockspassword')
|
|
||||||
sock.setproxy(
|
|
||||||
proxytype, sockshostname, socksport, rdns, socksusername, sockspassword)
|
|
||||||
else:
|
|
||||||
sock.setproxy(
|
|
||||||
proxytype, sockshostname, socksport, rdns)
|
|
||||||
elif shared.config.get('bitmessagesettings', 'socksproxytype') == 'SOCKS5':
|
|
||||||
if verbose >= 2:
|
|
||||||
shared.printLock.acquire()
|
|
||||||
print '(Using SOCKS5) Trying an outgoing connection to', HOST, ':', PORT
|
|
||||||
shared.printLock.release()
|
|
||||||
proxytype = socks.PROXY_TYPE_SOCKS5
|
|
||||||
sockshostname = shared.config.get(
|
|
||||||
'bitmessagesettings', 'sockshostname')
|
|
||||||
socksport = shared.config.getint(
|
|
||||||
'bitmessagesettings', 'socksport')
|
|
||||||
rdns = True # Do domain name lookups through the proxy; though this setting doesn't really matter since we won't be doing any domain name lookups anyway.
|
|
||||||
if shared.config.getboolean('bitmessagesettings', 'socksauthentication'):
|
|
||||||
socksusername = shared.config.get(
|
|
||||||
'bitmessagesettings', 'socksusername')
|
|
||||||
sockspassword = shared.config.get(
|
|
||||||
'bitmessagesettings', 'sockspassword')
|
|
||||||
sock.setproxy(
|
|
||||||
proxytype, sockshostname, socksport, rdns, socksusername, sockspassword)
|
|
||||||
else:
|
|
||||||
sock.setproxy(
|
|
||||||
proxytype, sockshostname, socksport, rdns)
|
|
||||||
|
|
||||||
try:
|
|
||||||
sock.connect((HOST, PORT))
|
|
||||||
rd = receiveDataThread()
|
|
||||||
rd.daemon = True # close the main program even if there are threads left
|
|
||||||
objectsOfWhichThisRemoteNodeIsAlreadyAware = {}
|
|
||||||
rd.setup(sock, HOST, PORT, self.streamNumber,
|
|
||||||
objectsOfWhichThisRemoteNodeIsAlreadyAware)
|
|
||||||
rd.start()
|
|
||||||
shared.printLock.acquire()
|
|
||||||
print self, 'connected to', HOST, 'during an outgoing attempt.'
|
|
||||||
shared.printLock.release()
|
|
||||||
|
|
||||||
sd = sendDataThread()
|
|
||||||
sd.setup(sock, HOST, PORT, self.streamNumber,
|
|
||||||
objectsOfWhichThisRemoteNodeIsAlreadyAware)
|
|
||||||
sd.start()
|
|
||||||
sd.sendVersionMessage()
|
|
||||||
|
|
||||||
except socks.GeneralProxyError as err:
|
|
||||||
if verbose >= 2:
|
|
||||||
shared.printLock.acquire()
|
shared.printLock.acquire()
|
||||||
print 'Could NOT connect to', HOST, 'during outgoing attempt.', err
|
print 'Could NOT connect to', HOST, 'during outgoing attempt.', err
|
||||||
shared.printLock.release()
|
shared.printLock.release()
|
||||||
PORT, timeLastSeen = shared.knownNodes[
|
PORT, timeLastSeen = shared.knownNodes[
|
||||||
self.streamNumber][HOST]
|
self.streamNumber][HOST]
|
||||||
if (int(time.time()) - timeLastSeen) > 172800 and len(shared.knownNodes[self.streamNumber]) > 1000: # for nodes older than 48 hours old if we have more than 1000 hosts in our list, delete from the shared.knownNodes data-structure.
|
if (int(time.time()) - timeLastSeen) > 172800 and len(shared.knownNodes[self.streamNumber]) > 1000: # for nodes older than 48 hours old if we have more than 1000 hosts in our list, delete from the knownNodes data-structure.
|
||||||
shared.knownNodesLock.acquire()
|
shared.knownNodesLock.acquire()
|
||||||
del shared.knownNodes[self.streamNumber][HOST]
|
del shared.knownNodes[self.streamNumber][HOST]
|
||||||
shared.knownNodesLock.release()
|
shared.knownNodesLock.release()
|
||||||
shared.printLock.acquire()
|
shared.printLock.acquire()
|
||||||
print 'deleting ', HOST, 'from shared.knownNodes because it is more than 48 hours old and we could not connect to it.'
|
print 'deleting ', HOST, 'from knownNodes because it is more than 48 hours old and we could not connect to it.'
|
||||||
shared.printLock.release()
|
shared.printLock.release()
|
||||||
except socks.Socks5AuthError as err:
|
except Exception as err:
|
||||||
shared.UISignalQueue.put((
|
sys.stderr.write(
|
||||||
'updateStatusBar', _translate(
|
'An exception has occurred in the outgoingSynSender thread that was not caught by other exception types: %s\n' % err)
|
||||||
"MainWindow", "SOCKS5 Authentication problem: %1").arg(str(err))))
|
time.sleep(0.1)
|
||||||
except socks.Socks5Error as err:
|
|
||||||
pass
|
|
||||||
print 'SOCKS5 error. (It is possible that the server wants authentication).)', str(err)
|
|
||||||
except socks.Socks4Error as err:
|
|
||||||
print 'Socks4Error:', err
|
|
||||||
except socket.error as err:
|
|
||||||
if shared.config.get('bitmessagesettings', 'socksproxytype')[0:5] == 'SOCKS':
|
|
||||||
print 'Bitmessage MIGHT be having trouble connecting to the SOCKS server. ' + str(err)
|
|
||||||
else:
|
|
||||||
if verbose >= 1:
|
|
||||||
shared.printLock.acquire()
|
|
||||||
print 'Could NOT connect to', HOST, 'during outgoing attempt.', err
|
|
||||||
shared.printLock.release()
|
|
||||||
PORT, timeLastSeen = shared.knownNodes[
|
|
||||||
self.streamNumber][HOST]
|
|
||||||
if (int(time.time()) - timeLastSeen) > 172800 and len(shared.knownNodes[self.streamNumber]) > 1000: # for nodes older than 48 hours old if we have more than 1000 hosts in our list, delete from the knownNodes data-structure.
|
|
||||||
shared.knownNodesLock.acquire()
|
|
||||||
del shared.knownNodes[self.streamNumber][HOST]
|
|
||||||
shared.knownNodesLock.release()
|
|
||||||
shared.printLock.acquire()
|
|
||||||
print 'deleting ', HOST, 'from knownNodes because it is more than 48 hours old and we could not connect to it.'
|
|
||||||
shared.printLock.release()
|
|
||||||
except Exception as err:
|
|
||||||
sys.stderr.write(
|
|
||||||
'An exception has occurred in the outgoingSynSender thread that was not caught by other exception types: %s\n' % err)
|
|
||||||
time.sleep(0.1)
|
|
||||||
|
|
||||||
# Only one singleListener thread will ever exist. It creates the
|
# Only one singleListener thread will ever exist. It creates the
|
||||||
# receiveDataThread and sendDataThread for each incoming connection. Note
|
# receiveDataThread and sendDataThread for each incoming connection. Note
|
||||||
|
|
118
src/bitmessageqt/addpeer.ui
Normal file
118
src/bitmessageqt/addpeer.ui
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>Dialog</class>
|
||||||
|
<widget class="QDialog" name="Dialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>362</width>
|
||||||
|
<height>136</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Dialog</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0" colspan="4">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="text">
|
||||||
|
<string>When you opened this dialog box, you had X peers in your list of peers.</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0" colspan="4">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>You can manually add a peer here:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="text">
|
||||||
|
<string>IP</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QLabel" name="label_4">
|
||||||
|
<property name="text">
|
||||||
|
<string>Port</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLineEdit" name="lineEdit"/>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QLineEdit" name="lineEdit_2"/>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="2">
|
||||||
|
<widget class="QPushButton" name="pushButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>Add</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="3">
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>47</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0" colspan="4">
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Close</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>Dialog</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>248</x>
|
||||||
|
<y>254</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>Dialog</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>316</x>
|
||||||
|
<y>260</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
217
src/bitmessageqt/wanlan.ui
Normal file
217
src/bitmessageqt/wanlan.ui
Normal file
|
@ -0,0 +1,217 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>Dialog</class>
|
||||||
|
<widget class="QDialog" name="Dialog">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>338</width>
|
||||||
|
<height>225</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Dialog</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QRadioButton" name="radioButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>Connect on the Internet with everyone else</string>
|
||||||
|
</property>
|
||||||
|
<property name="checked">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QRadioButton" name="radioButton_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>Ignore Internet nodes. Only try to connect to these hosts:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLineEdit" name="lineEdit">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>example.domain.local:8444</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLineEdit" name="lineEdit_2">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>10.244.30.70:8080</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Note that you can still receive incoming connections from anyone unless they are blocked by a firewall.</string>
|
||||||
|
</property>
|
||||||
|
<property name="wordWrap">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="0">
|
||||||
|
<widget class="QCheckBox" name="checkBox">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Store network objects for two months rather than two days</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="6" column="0">
|
||||||
|
<widget class="QCheckBox" name="checkBox_2">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Forgo the proof of work</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="7" column="0">
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>Dialog</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>227</x>
|
||||||
|
<y>201</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>218</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>Dialog</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>295</x>
|
||||||
|
<y>207</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>218</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>radioButton_2</sender>
|
||||||
|
<signal>toggled(bool)</signal>
|
||||||
|
<receiver>checkBox</receiver>
|
||||||
|
<slot>setEnabled(bool)</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>127</x>
|
||||||
|
<y>40</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>93</x>
|
||||||
|
<y>146</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>radioButton_2</sender>
|
||||||
|
<signal>toggled(bool)</signal>
|
||||||
|
<receiver>checkBox_2</receiver>
|
||||||
|
<slot>setEnabled(bool)</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>160</x>
|
||||||
|
<y>38</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>135</x>
|
||||||
|
<y>169</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>radioButton_2</sender>
|
||||||
|
<signal>toggled(bool)</signal>
|
||||||
|
<receiver>lineEdit</receiver>
|
||||||
|
<slot>setEnabled(bool)</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>63</x>
|
||||||
|
<y>41</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>68</x>
|
||||||
|
<y>74</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>radioButton_2</sender>
|
||||||
|
<signal>toggled(bool)</signal>
|
||||||
|
<receiver>lineEdit_2</receiver>
|
||||||
|
<slot>setEnabled(bool)</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>43</x>
|
||||||
|
<y>38</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>50</x>
|
||||||
|
<y>98</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>radioButton_2</sender>
|
||||||
|
<signal>toggled(bool)</signal>
|
||||||
|
<receiver>label</receiver>
|
||||||
|
<slot>setEnabled(bool)</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>161</x>
|
||||||
|
<y>44</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>160</x>
|
||||||
|
<y>120</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
Loading…
Reference in New Issue
Block a user