Skip to content
Snippets Groups Projects
Commit 305d252b authored by Anders H. Rebner's avatar Anders H. Rebner
Browse files

#87 Fikset merge conflicts mot master

parents 526a12ff 4e70cd9b
No related branches found
No related tags found
1 merge request!53#87 Subtraktorkoder
...@@ -13,12 +13,13 @@ def get_code(code_length, mode="ascii", space_interval=0, space_amount=1): ...@@ -13,12 +13,13 @@ def get_code(code_length, mode="ascii", space_interval=0, space_amount=1):
Parameters Parameters
---------- ----------
code_length : int code_length : int
The length of the code The length of the code.
mode : string mode : string
'ascii' for letters, 'digits' for digits and 'combo' for 'ascii' for letters, 'digits' for digits and 'combo' for
combination of letters and digits, by default 'ascii'. combination of letters and digits, by default 'ascii'.
space_interval : int space_interval : int
Spaces will be inserted to code each interval if not 0, by default 0. Spaces will be inserted into code each interval for readability if not
0, by default 0.
space_amount : int space_amount : int
Amount of spaces per interval, by default 1. Amount of spaces per interval, by default 1.
...@@ -40,12 +41,6 @@ def get_code(code_length, mode="ascii", space_interval=0, space_amount=1): ...@@ -40,12 +41,6 @@ def get_code(code_length, mode="ascii", space_interval=0, space_amount=1):
"Invalid value for argument 'mode': " "'{}'".format(mode) "Invalid value for argument 'mode': " "'{}'".format(mode)
) )
if not isinstance(space_interval, int):
raise ValueError(
"Invalid value for argument 'separate_interval': "
"'{}'".format(space_interval)
)
i = 0 i = 0
while i < code_length: while i < code_length:
letter = secrets.choice(characters) letter = secrets.choice(characters)
...@@ -75,7 +70,8 @@ def get_code_set( ...@@ -75,7 +70,8 @@ def get_code_set(
'ascii' for letters (default), 'digits' for digits and 'combo' 'ascii' for letters (default), 'digits' for digits and 'combo'
for combination of letters and digits. for combination of letters and digits.
space_interval : int space_interval : int
Spaces will be inserted to code each interval if not 0, by default 0. Spaces will be inserted into code each interval for readability if not
0, by default 0.
space_amount : int space_amount : int
Amount of spaces per interval, by default 1. Amount of spaces per interval, by default 1.
......
soitool/media/authenticationboardmodule.PNG

11.1 KiB | W: | H:

soitool/media/authenticationboardmodule.PNG

10.8 KiB | W: | H:

soitool/media/authenticationboardmodule.PNG
soitool/media/authenticationboardmodule.PNG
soitool/media/authenticationboardmodule.PNG
soitool/media/authenticationboardmodule.PNG
  • 2-up
  • Swipe
  • Onion skin
...@@ -8,12 +8,18 @@ from soitool.modules.code_table_base import CodeTableBase ...@@ -8,12 +8,18 @@ from soitool.modules.code_table_base import CodeTableBase
START_NO_OF_CODES = 10 # Maximum value is len(ROW_IDENTIFIERS) START_NO_OF_CODES = 10 # Maximum value is len(ROW_IDENTIFIERS)
CODE_LENGTH = 25 CODE_LENGTH = 25
CODE_CHARACTER_TYPE = "ascii" # Has to be 'ascii', 'digits' or 'combo'
# Has to be 'ascii', 'digits' or 'combo'
# Codes will consist of A-Z if 'ascii', 0-9 if 'digits' and A-Z+0-9 if 'combo'. # Codes will consist of A-Z if 'ascii', 0-9 if 'digits' and A-Z+0-9 if 'combo'.
ROW_IDENTIFIERS = string.ascii_uppercase # Characters for first column, CODE_CHARACTER_TYPE = "ascii"
# Characters for first column,
# it's length determines maximum number of codes (rows). # it's length determines maximum number of codes (rows).
SPACE_INTERVAL = 5 # Adds space between sets of characters, 0 => no spaces ROW_IDENTIFIERS = string.ascii_uppercase
# Adds space between sets of characters, 0 => no spaces
# If code is 123456 and interval is 2, code will be 12 34 56 # If code is 123456 and interval is 2, code will be 12 34 56
SPACE_INTERVAL = 5
SPACE_AMOUNT = 2 SPACE_AMOUNT = 2
HEADLINE_TEXT = "Autentiseringstavle" HEADLINE_TEXT = "Autentiseringstavle"
......
...@@ -162,19 +162,6 @@ class FreeTextModule(ModuleBase, QWidget, metaclass=Meta): ...@@ -162,19 +162,6 @@ class FreeTextModule(ModuleBase, QWidget, metaclass=Meta):
size = self.sizeHint() size = self.sizeHint()
return (size.width(), size.height()) return (size.width(), size.height())
def set_pos(self, pos):
"""Set position of widget.
Parameters
----------
pos : QPoint
Position (x, y).
"""
self.move(pos)
def render_onto_pdf(self):
"""Render onto pdf."""
def get_data(self): def get_data(self):
"""Return list containing module data. """Return list containing module data.
......
...@@ -50,7 +50,7 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -50,7 +50,7 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
self.setRowCount(START_ROWS) self.setRowCount(START_ROWS)
# Resize width and height of rows, columns and window # Resize width and height of rows, columns and window
resize_table(self) resize_table(self, resize_row=True, resize_column=True)
# Set header-items # Set header-items
for i in range(self.columnCount()): for i in range(self.columnCount()):
...@@ -74,7 +74,9 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -74,7 +74,9 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
self.setFixedWidth(size["width"]) self.setFixedWidth(size["width"])
self.setFixedHeight(size["height"]) self.setFixedHeight(size["height"])
self.cellChanged.connect(resize_table(self)) self.cellChanged.connect(
lambda: resize_table(self, resize_row=True, resize_column=True)
)
def keyPressEvent(self, event): def keyPressEvent(self, event):
"""Launch actions when specific combinations of keys are pressed. """Launch actions when specific combinations of keys are pressed.
...@@ -129,24 +131,24 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -129,24 +131,24 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
"""Add column to the right of selected column.""" """Add column to the right of selected column."""
self.insertColumn(self.currentColumn() + 1) self.insertColumn(self.currentColumn() + 1)
self.set_header_item(self.currentColumn() + 1, "") self.set_header_item(self.currentColumn() + 1, "")
resize_table(self) resize_table(self, resize_row=True, resize_column=True)
def remove_column(self): def remove_column(self):
"""Remove selected column if two or more columns exist.""" """Remove selected column if two or more columns exist."""
if self.columnCount() > 1: if self.columnCount() > 1:
self.removeColumn(self.currentColumn()) self.removeColumn(self.currentColumn())
resize_table(self) resize_table(self, resize_row=True, resize_column=True)
def add_row(self): def add_row(self):
"""Add row below selected row.""" """Add row below selected row."""
self.insertRow(self.currentRow() + 1) self.insertRow(self.currentRow() + 1)
resize_table(self) resize_table(self, resize_row=True, resize_column=True)
def remove_row(self): def remove_row(self):
"""Remove selected row if two or more rows exist (including header).""" """Remove selected row if two or more rows exist (including header)."""
if self.rowCount() > 2 and self.currentRow() != 0: if self.rowCount() > 2 and self.currentRow() != 0:
self.removeRow(self.currentRow()) self.removeRow(self.currentRow())
resize_table(self) resize_table(self, resize_row=True, resize_column=True)
def get_size(self): def get_size(self):
"""Return size of widget.""" """Return size of widget."""
......
...@@ -83,6 +83,11 @@ class TestDefaultAuthenticationBoardModule(unittest.TestCase): ...@@ -83,6 +83,11 @@ class TestDefaultAuthenticationBoardModule(unittest.TestCase):
self.module.show() self.module.show()
QTest.qWaitForWindowExposed(self.module) QTest.qWaitForWindowExposed(self.module)
# From experience it can happen that the widget is not fully
# initialized before the QTest.keyClicks below. By calling
# processEvents here we give Qt the opportunity to catch up with us
app.processEvents()
old_row_count = self.module.rowCount() old_row_count = self.module.rowCount()
# Use shortcut 'Ctrl + +' # Use shortcut 'Ctrl + +'
...@@ -111,6 +116,11 @@ class TestDefaultAuthenticationBoardModule(unittest.TestCase): ...@@ -111,6 +116,11 @@ class TestDefaultAuthenticationBoardModule(unittest.TestCase):
self.module.show() self.module.show()
QTest.qWaitForWindowExposed(self.module) QTest.qWaitForWindowExposed(self.module)
# From experience it can happen that the widget is not fully
# initialized before the QTest.keyClicks below. By calling
# processEvents here we give Qt the opportunity to catch up with us
app.processEvents()
old_row_count = self.module.rowCount() old_row_count = self.module.rowCount()
# First row is selected on startup, it contains headline # First row is selected on startup, it contains headline
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment