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