summaryrefslogtreecommitdiffstats
path: root/examples2/table.py
blob: f9db886a1eeedec8cabacd24ea08be7c614ab15c (plain)
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
#!/usr/bin/env python

import sys
from python_tqt.qt import *

class Table(TQTableView):
  def __init__(self, numRows, numCols, parent=None, name=''):
    TQTableView.__init__(self, parent, name)
    self.curRow = self.curCol = 0
    self.setFocusPolicy(TQWidget.StrongFocus)
    self.setBackgroundMode(TQWidget.PaletteBase)
    self.setNumCols(numCols)
    self.setNumRows(numRows)
    self.setCellWidth(100)
    self.setCellHeight(30)
    self.setTableFlags(Tbl_vScrollBar |
                       Tbl_hScrollBar |
                       Tbl_clipCellPainting)
    self.resize(400,200)
    self.contents = [''] * (numRows * numCols)
  
  def cellContent(self, row, col):
    return self.contents[self.indexOf(row,col)]

  def setCellContent(self, row, col, c):
    self.contents[self.indexOf(row,col)] = c
    self.updateCell(row, col)

  def paintCell(self, p, row, col):
    w = self.cellWidth(col)
    h = self.cellHeight(row)
    x2 = w-1
    y2 = h-1

    p.drawLine(x2,0,x2,y2)
    p.drawLine(0,y2,x2,y2)

    if row == self.curRow and col == self.curCol:
      if self.hasFocus():
        p.drawRect(0, 0, x2, y2)
      else:
        p.setPen(TQt.DotLine)
        p.drawRect(0, 0, x2, y2)
        p.setPen(TQt.SolidLine)

    p.drawText(0,0,w,h,TQt.AlignCenter,self.contents[self.indexOf(row,col)])

  def mousePressEvent(self, me):
    oldRow = self.curRow
    oldCol = self.curCol
    clickedPos = me.pos()
    self.curRow = self.findRow(clickedPos.y())
    self.curCol = self.findCol(clickedPos.x())
    if self.curRow != oldRow or \
       self.curCol != oldCol:
      self.updateCell(oldRow, oldCol)
      self.updateCell(self.curRow, self.curCol)

  def keyPressEvent(self, ke):
    oldRow = self.curRow
    oldCol = self.curCol
    edge = 0
    key = ke.key()
    if key == Key_Left:
      if self.curCol > 0:
        self.curCol = self.curCol - 1
        edge = self.leftCell()
        if self.curCol < edge:
          self.setLeftCell(edge-1)
    elif key == Key_Right:
      if self.curCol < self.numCols()-1:
        self.curCol = self.curCol + 1
        edge = self.lastColVisible()
        if self.curCol >= edge:
          self.setLeftCell(self.leftCell()+1)
    elif key == Key_Up:
      if self.curRow > 0:
        self.curRow = self.curRow - 1
        edge = self.topCell()
        if self.curRow < edge:
          self.setTopCell(edge-1)
    elif key == Key_Down:
      if self.curRow < self.numRows()-1:
        self.curRow = self.curRow + 1
        edge = self.lastRowVisible()
        if self.curRow >= edge:
          self.setTopCell(self.topCell()+1)
    else:
      ke.ignore()
      return
    
    if self.curRow != oldRow or \
       self.curCol != oldCol:
      self.updateCell(oldRow, oldCol)
      self.updateCell(self.curRow, self.curCol)

  def focusInEvnet(self, fie):
    self.updateCell(self.curRow, self.curCol)

  def focusOutEvent(self, foe):
    self.updateCell(self.curRow, self.curCol)

  def indexOf(self, row, col):
    return (row * self.numCols()) + col

numRows = 20
numCols = 20
a = TQApplication(sys.argv)
v = Table(numRows, numCols)
for i in range(numRows):
  for j in range(numCols):
    v.setCellContent(i,j,'%d %c' % (j, 65+(i%26)))
a.setMainWidget(v)
v.show()
a.exec_loop()