AbstractItemModelMixin
Base classes
Name | Children | Inherits |
---|---|---|
ObjectMixin prettyqt.core.object |
Subclasses
Class | Module | Description |
---|---|---|
AbstractItemModel | prettyqt.core.abstractitemmodel | |
AbstractProxyModelMixin | prettyqt.core.abstractproxymodel | |
AbstractListModelMixin | prettyqt.core.abstractlistmodel | |
AbstractTableModelMixin | prettyqt.core.abstracttablemodel | |
ConcatenateTablesProxyModel | prettyqt.core.concatenatetablesproxymodel | |
StandardItemModel | prettyqt.gui.standarditemmodel | |
FileSystemModel | prettyqt.widgets.filesystemmodel | |
PdfBookmarkModel | prettyqt.pdf.pdfbookmarkmodel | |
PdfSearchModel | prettyqt.pdf.pdfsearchmodel | |
HelpContentModel | prettyqt.qthelp.helpcontentmodel | Model that supplies content to views. |
⋔ Inheritance diagram
graph TD
1473299890176["core.AbstractItemModelMixin"]
1473299815024["core.ObjectMixin"]
140713234304496["builtins.object"]
1473299815024 --> 1473299890176
140713234304496 --> 1473299815024
🛈 DocStrings
Bases: ObjectMixin
Source code in prettyqt\core\abstractitemmodel.py
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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
|
change_layout()
Context manager to change the layout.
wraps calls with correct signals emitted at beginning: layoutAboutToBeChanged emitted at end: layoutChanged
Source code in prettyqt\core\abstractitemmodel.py
get_breadcrumbs_path(index: core.ModelIndex, role: constants.ItemDataRole = constants.DISPLAY_ROLE) -> list[str]
Get the path for the given index.
Returns a list containing data of all indexes up to the root for given role.
Source code in prettyqt\core\abstractitemmodel.py
get_child_indexes(index: core.ModelIndex) -> listdelegators.ListDelegator[core.ModelIndex]
Get all child indexes for given index (first column only).
To get indexes recursively, use iter_tree.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
ModelIndex
|
ModelIndex to get children from |
required |
Source code in prettyqt\core\abstractitemmodel.py
get_column_type(column: int, *, rows_to_check: int = 10, role: int = constants.DISPLAY_ROLE) -> type | None
Guess column data type by checking values of first rows with given role.
Source code in prettyqt\core\abstractitemmodel.py
get_index_key(index: core.ModelIndex, *, include_column: bool = False, parent_index: core.ModelIndex | None = None) -> tuple[tuple[int, int], ...]
Return a key tuple for given ModelIndex.
The key tuple consists either of row integers or (row, column) indices describing the index position from top to bottom.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
ModelIndex
|
ModelIndex to get a key for |
required |
include_column |
bool
|
whether to include the column in the index key. |
False
|
parent_index |
ModelIndex | None
|
Get key up to given ModelIndex. By default, get key up to root. |
None
|
Source code in prettyqt\core\abstractitemmodel.py
index_from_key(key_path: Sequence[tuple[int, int] | int], *, parent_index: core.ModelIndex | None = None) -> core.ModelIndex
Return a ModelIndex for the given key path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key_path |
Sequence[tuple[int, int] | int]
|
Key path to get an index for. Should be a sequence of either (row, column) or row indices |
required |
parent_index |
ModelIndex | None
|
ModelIndex to start indexing from. Defaults to root index. |
None
|
Source code in prettyqt\core\abstractitemmodel.py
iter_tree(parent_index: core.ModelIndex | None = None, *, depth: int | None = None, fetch_more: bool = False) -> Iterator[core.ModelIndex]
Iter through all indexes of the model tree.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent_index |
ModelIndex | None
|
parent index |
None
|
depth |
int | None
|
maximum iteration depth |
None
|
fetch_more |
bool
|
call fetchMore for all indexes until canFetchMore returns False |
False
|
Source code in prettyqt\core\abstractitemmodel.py
reset_model()
Context manager to reset the model.
wraps calls with correct signals emitted at beginning: beginResetModel emitted at end: endResetModel
Source code in prettyqt\core\abstractitemmodel.py
search_tree(value: Any, *, role: constants.ItemDataRole = constants.DISPLAY_ROLE, parent_index: core.ModelIndex | None = None, max_results: int | None = None, depth: int | None = None) -> listdelegators.ListDelegator[core.ModelIndex]
Search the tree for indexes with a given value in given role.
Compared to QAbstractItemModel.match, this method allows to set a maximum search depth and passing several values to search for as a list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
Any
|
Item or list of items to search for. |
required |
role |
ItemDataRole
|
Index role to search in. |
DISPLAY_ROLE
|
parent_index |
ModelIndex | None
|
start index for searching. If None, whole tree is searched. |
None
|
max_results |
int | None
|
stop searching after x amount of hits. 'None' means no limit. |
None
|
depth |
int | None
|
search depth. Search depth. 'None' means no limit. |
None
|