2010-04-12 13:29:56 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2010-04-12
|
2013-04-28 14:35:51 +00:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2010-04-12 13:29:56 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2010-04-12 13:29:56 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2010-04-12 13:29:56 +00:00
|
|
|
|
|
|
|
from qtlib.column import Column
|
|
|
|
from qtlib.table import Table
|
|
|
|
|
|
|
|
class ProblemTable(Table):
|
|
|
|
COLUMNS = [
|
2011-11-28 15:27:17 +00:00
|
|
|
Column('path', defaultWidth=150),
|
|
|
|
Column('msg', defaultWidth=150),
|
2010-04-12 13:29:56 +00:00
|
|
|
]
|
|
|
|
|
2012-01-16 14:29:57 +00:00
|
|
|
def __init__(self, model, view):
|
2010-04-12 13:29:56 +00:00
|
|
|
Table.__init__(self, model, view)
|
|
|
|
# we have to prevent Return from initiating editing.
|
|
|
|
# self.view.editSelected = lambda: None
|
|
|
|
|