• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

haiiliin / abqpy / 6433593370

06 Oct 2023 03:30PM UTC coverage: 73.825% (-9.3%) from 83.134%
6433593370

push

github

web-flow
[feature] Add GUI Toolkit Commands (backport #5260) (#5285)

[feature] Add GUI Toolkit Commands (#5260)

* Markdown

* Delete

* Add AFXApp and AFXBoolKeyword

* Delete

* Update headings

* Create parse.py

* Update parse.py

* Unicode Spaces

* Update .pre-commit-config.yaml

* Update md types

* Update Kernel plug-in registration commands.md

* Generated python stubs

* Add class inheritance

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Revert "Update .pre-commit-config.yaml"

This reverts commit 9d3aef3cc.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix mypy errors

* Delete parse.py

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix return types and imports

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update AFXColumnItems.md

* Update abaqusGui.py

* Add class/global flags

* Delete flags.py

* Fix flags

* Fix

* Skip mypy

* Update abaqusGui.py

* Update constants.py

* Create kernelAccess.py

* Add plugin docs

* Revert changes by docformatter

* Delete markdown files

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
(cherry picked from commit a65ff5df8)

Co-authored-by: Hailin Wang <hailin.wang@connect.polyu.hk>

3661 of 3661 new or added lines in 151 files covered. (100.0%)

24137 of 32695 relevant lines covered (73.82%)

0.74 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/abaqus/PlugInRegistration/FXMainWindow.py
1
from __future__ import annotations
×
2

3
from .constants import DECOR_ALL
×
4
from .FXApp import FXApp
×
5
from .FXIcon import FXIcon
×
6
from .FXTopWindow import FXTopWindow
×
7

8

9
class FXMainWindow(FXTopWindow):
×
10
    """Main application window."""
11

12
    def __init__(
×
13
        self,
14
        a: FXApp,
15
        name: str,
16
        ic: FXIcon | None = None,
17
        mi: FXIcon | None = None,
18
        opts: int = DECOR_ALL,
19
        x: int = 0,
20
        y: int = 0,
21
        w: int = 0,
22
        h: int = 0,
23
        pl: int = 0,
24
        pr: int = 0,
25
        pt: int = 0,
26
        pb: int = 0,
27
        hs: int = 0,
28
        vs: int = 0,
29
    ):
30
        """Construct a main window.
31

32
        Parameters
33
        ----------
34
        a : FXApp
35

36
        name : str
37

38
        ic : FXIcon | None
39

40
        mi : FXIcon | None
41

42
        opts : int
43

44
        x : int
45

46
        y : int
47

48
        w : int
49

50
        h : int
51

52
        pl : int
53

54
        pr : int
55

56
        pt : int
57

58
        pb : int
59

60
        hs : int
61

62
        vs : int
63
        """
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc