2012-03-14 12:47:21 -04:00
|
|
|
# Created On: 2012-03-13
|
2015-01-03 16:30:57 -05:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2019-12-31 20:16:27 -06:00
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 16:33:16 -05:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2012-03-14 12:47:21 -04:00
|
|
|
|
|
|
|
from qtlib.column import Column
|
|
|
|
from qtlib.table import Table
|
|
|
|
|
2019-12-31 20:16:27 -06:00
|
|
|
|
2012-03-14 12:47:21 -04:00
|
|
|
class IgnoreListTable(Table):
|
2021-08-15 04:10:18 -05:00
|
|
|
"""Ignore list model"""
|
2020-07-28 16:33:28 +02:00
|
|
|
|
2012-03-14 12:47:21 -04:00
|
|
|
COLUMNS = [
|
2021-08-25 00:46:33 -05:00
|
|
|
Column("path1", default_width=230),
|
|
|
|
Column("path2", default_width=230),
|
2012-03-14 12:47:21 -04:00
|
|
|
]
|