2019-03-03 13:59:34 +01:00
|
|
|
from TextDesign import TextDesign
|
2019-03-05 22:10:33 +01:00
|
|
|
from TextWraper import wrap_text_with_font
|
2019-03-03 13:59:34 +01:00
|
|
|
|
2019-03-03 16:44:11 +01:00
|
|
|
class TableTextDesign (TextDesign):
|
2019-03-03 13:59:34 +01:00
|
|
|
"""Gets a matrix with text that is than
|
|
|
|
displayed in a table without borders."""
|
2019-03-05 22:10:33 +01:00
|
|
|
def __init__ (self, size, text_matrix, max_col_size = None, max_row_size = None, font = None, fontsize = 12, column_horizontal_alignments = [], mask = True, line_spacing = 0, col_spacing = 0, truncate_rows = True, truncate_cols = True, wrap = False):
|
2019-03-03 18:13:25 +01:00
|
|
|
super(TableTextDesign, self).__init__(size, font=font, fontsize=fontsize, mask=mask)
|
2019-03-03 13:59:34 +01:00
|
|
|
self.matrix = text_matrix
|
|
|
|
self.max_col_size = max_col_size
|
2019-03-05 22:10:33 +01:00
|
|
|
self.max_row_size = max_row_size
|
2019-03-03 14:53:54 +01:00
|
|
|
self.line_spacing = line_spacing
|
|
|
|
self.col_spacing = col_spacing
|
2019-03-03 16:44:11 +01:00
|
|
|
self.truncate_rows = truncate_rows
|
|
|
|
self.truncate_cols = truncate_cols
|
|
|
|
self.max_row = None
|
|
|
|
self.max_col = None
|
2019-03-03 18:13:25 +01:00
|
|
|
self.column_horizontal_alignments = column_horizontal_alignments
|
2019-03-05 22:10:33 +01:00
|
|
|
self.wrap = wrap
|
2019-03-03 13:59:34 +01:00
|
|
|
|
2019-03-03 16:44:11 +01:00
|
|
|
def __finish_image__ (self):
|
2019-03-09 22:03:00 +01:00
|
|
|
if len(self.matrix) is 0:
|
|
|
|
return
|
2019-03-03 13:59:34 +01:00
|
|
|
self.__reform_col_size__()
|
2019-03-05 22:10:33 +01:00
|
|
|
self.__reform_row_size__()
|
2019-03-03 13:59:34 +01:00
|
|
|
self.cell_sizes = self.__get_cell_sizes__()
|
2019-03-03 16:44:11 +01:00
|
|
|
self.max_col, self.max_row = self.__get_truncated_counts__()
|
2019-03-03 13:59:34 +01:00
|
|
|
self.__print_table__(self.matrix)
|
|
|
|
|
2019-03-03 16:44:11 +01:00
|
|
|
def __reform_col_size__ (self):
|
2019-03-03 13:59:34 +01:00
|
|
|
if self.max_col_size is not None:
|
|
|
|
return
|
|
|
|
|
2019-03-05 22:10:33 +01:00
|
|
|
partial_col_spacing = int(self.col_spacing * (len(self.matrix[0]) - 1) / len(self.matrix[0]))
|
2019-03-03 13:59:34 +01:00
|
|
|
font = self.__get_font__()
|
|
|
|
col_sizes = []
|
|
|
|
for c in range(len(self.matrix[0])): #amout of columns
|
|
|
|
for r in range(len(self.matrix)):
|
|
|
|
row_col_size = font.getsize(self.matrix[r][c])[0] #get width of text in that row/col
|
|
|
|
if len(col_sizes) - 1 < c:
|
|
|
|
col_sizes.append(row_col_size)
|
|
|
|
elif row_col_size > col_sizes[c]:
|
|
|
|
col_sizes[c] = row_col_size
|
2019-03-09 21:53:58 +01:00
|
|
|
col_sizes[-1] = col_sizes[-1] - partial_col_spacing
|
2019-03-05 22:10:33 +01:00
|
|
|
|
|
|
|
for index, size in enumerate(col_sizes):
|
|
|
|
preceding_size = sum(col_sizes[:index])
|
|
|
|
if preceding_size + size > self.size[0]:
|
|
|
|
col_sizes[index] = self.size[0] - preceding_size
|
|
|
|
break
|
|
|
|
|
|
|
|
self.max_col_size = col_sizes
|
|
|
|
|
|
|
|
def __reform_row_size__ (self):
|
|
|
|
if self.max_row_size is not None:
|
|
|
|
return
|
|
|
|
|
|
|
|
font = self.__get_font__()
|
|
|
|
row_sizes = []
|
|
|
|
for r in range(len(self.matrix)):
|
|
|
|
for c in range(len(self.matrix[0])): #amout of columns
|
|
|
|
cell_text = self.matrix[r][c]
|
|
|
|
if self.wrap:
|
|
|
|
cell_text = wrap_text_with_font(cell_text, self.max_col_size[c], font)
|
|
|
|
col_row_size = font.getsize_multiline(cell_text)[1] #get height of text in that col/row
|
|
|
|
if len(row_sizes) - 1 < r:
|
|
|
|
row_sizes.append(col_row_size)
|
|
|
|
elif col_row_size > row_sizes[r]:
|
|
|
|
row_sizes[r] = col_row_size
|
2019-03-03 18:22:41 +01:00
|
|
|
|
2019-03-05 22:10:33 +01:00
|
|
|
self.max_row_size = row_sizes
|
2019-03-03 13:59:34 +01:00
|
|
|
|
2019-03-03 16:44:11 +01:00
|
|
|
def __get_truncated_counts__ (self):
|
|
|
|
max_col = 0
|
|
|
|
if self.truncate_cols:
|
2019-03-09 19:51:31 +01:00
|
|
|
while max_col < len(self.matrix[0]) and self.__get_cell_pos__(0, max_col + 1)[0] - self.col_spacing <= self.size[0]:
|
2019-03-03 16:44:11 +01:00
|
|
|
max_col += 1
|
|
|
|
else:
|
|
|
|
max_col = len(self.matrix[0])
|
|
|
|
|
|
|
|
max_row = 0
|
|
|
|
if self.truncate_rows:
|
2019-03-09 19:51:31 +01:00
|
|
|
while max_row < len(self.matrix) and self.__get_cell_pos__(max_row + 1,0)[1] - self.line_spacing <= self.size[1]:
|
2019-03-03 16:44:11 +01:00
|
|
|
max_row += 1
|
|
|
|
else:
|
|
|
|
max_row = len(self.matrix)
|
|
|
|
|
|
|
|
return (max_col, max_row)
|
|
|
|
|
|
|
|
def __print_table__ (self, matrix):
|
|
|
|
for r in range(self.max_row):
|
|
|
|
for c in range(self.max_col):
|
2019-03-03 13:59:34 +01:00
|
|
|
size = self.cell_sizes[r][c]
|
|
|
|
pos = self.__get_cell_pos__(r,c)
|
2019-03-03 18:13:25 +01:00
|
|
|
self.__draw_text__(pos, size, r, c)
|
2019-03-03 13:59:34 +01:00
|
|
|
|
2019-03-03 18:13:25 +01:00
|
|
|
def __draw_text__ (self, pos, size, row, col):
|
2019-03-05 22:10:33 +01:00
|
|
|
design = TextDesign(size, text=self.matrix[row][col], font=self.font_family, fontsize=self.font_size, horizontalalignment=self.__get_col_hori_alignment__(col), wrap=self.wrap)
|
2019-03-03 13:59:34 +01:00
|
|
|
design.pos = pos
|
|
|
|
self.draw_design(design)
|
|
|
|
|
2019-03-03 16:44:11 +01:00
|
|
|
def __get_cell_pos__ (self, row, col):
|
2019-03-03 13:59:34 +01:00
|
|
|
xpos, ypos = (0, 0)
|
|
|
|
for c in range(col):
|
|
|
|
xpos += self.cell_sizes[row][c][0]
|
2019-03-03 14:53:54 +01:00
|
|
|
xpos += self.col_spacing
|
2019-03-03 13:59:34 +01:00
|
|
|
for r in range(row):
|
|
|
|
ypos += self.cell_sizes[r][col][1]
|
2019-03-03 14:53:54 +01:00
|
|
|
ypos += self.line_spacing
|
2019-03-03 13:59:34 +01:00
|
|
|
return (xpos, ypos)
|
|
|
|
|
2019-03-03 16:44:11 +01:00
|
|
|
def __get_cell_sizes__ (self):
|
2019-03-03 13:59:34 +01:00
|
|
|
size_matrix = []
|
|
|
|
for r in range(len(self.matrix)):
|
|
|
|
size_matrix.append([])
|
|
|
|
for c in range(len(self.matrix[0])):
|
2019-03-05 22:10:33 +01:00
|
|
|
size = (self.max_col_size[c], int(self.max_row_size[r]))
|
2019-03-03 13:59:34 +01:00
|
|
|
size_matrix[r].append(size)
|
2019-03-03 18:13:25 +01:00
|
|
|
return size_matrix
|
|
|
|
|
|
|
|
def __get_col_hori_alignment__ (self, c):
|
|
|
|
if len(self.column_horizontal_alignments) <= c:
|
|
|
|
return "left"
|
|
|
|
return self.column_horizontal_alignments[c]
|