2012-03-14 16:47:21 +00:00
|
|
|
# Created On: 2012-03-13
|
2015-01-03 21:30:57 +00:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2020-01-01 02:16:27 +00: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 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2012-03-14 16:47:21 +00:00
|
|
|
|
2022-05-09 00:22:08 +00:00
|
|
|
from qt.column import Column
|
|
|
|
from qt.table import Table
|
2012-03-14 16:47:21 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2012-03-14 16:47:21 +00:00
|
|
|
class IgnoreListTable(Table):
|
2021-08-15 09:10:18 +00:00
|
|
|
"""Ignore list model"""
|
2020-07-28 14:33:28 +00:00
|
|
|
|
2012-03-14 16:47:21 +00:00
|
|
|
COLUMNS = [
|
2021-08-25 05:46:33 +00:00
|
|
|
Column("path1", default_width=230),
|
|
|
|
Column("path2", default_width=230),
|
2012-03-14 16:47:21 +00:00
|
|
|
]
|