• 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/FXRootWindow.py
1
from __future__ import annotations
×
2

3
from .FXApp import FXApp
×
4
from .FXComposite import FXComposite
×
5
from .FXVisual import FXVisual
×
6

7

8
class FXRootWindow(FXComposite):
×
9
    """Root window."""
10

11
    def __init__(self, a: FXApp, vis: FXVisual):
×
12
        """Construct root window.
13

14
        Parameters
15
        ----------
16
        a : FXApp
17

18
        vis : FXVisual
19
        """
20

21
    def create(self):
×
22
        """Root window need not be created.
23

24
        Reimplemented from FXComposite.
25
        """
26

27
    def destroy(self):
×
28
        """Root window can not be destroyed.
29

30
        Reimplemented from FXComposite.
31
        """
32

33
    def detach(self):
×
34
        """Root window may not be detached.
35

36
        Reimplemented from FXComposite.
37
        """
38

39
    def getDefaultHeight(self):
×
40
        """Return height of the root window.
41

42
        Reimplemented from FXComposite.
43
        """
44

45
    def getDefaultWidth(self):
×
46
        """Return width of the root window.
47

48
        Reimplemented from FXComposite.
49
        """
50

51
    def move(self, x: int, y: int):
×
52
        """Root window can not be moved. Reimplemented from FXWindow.
53

54
        Parameters
55
        ----------
56
        x : int
57

58
        y : int
59
        """
60

61
    def position(self, x: int, y: int, w: int, h: int):
×
62
        """Root window can not be positioned. Reimplemented from FXWindow.
63

64
        Parameters
65
        ----------
66
        x : int
67

68
        y : int
69

70
        w : int
71

72
        h : int
73
        """
74

75
    def recalc(self):
×
76
        """No op.
77

78
        Reimplemented from FXWindow.
79
        """
80

81
    def resize(self, w: int, h: int):
×
82
        """Root window can not be resized. Reimplemented from FXWindow.
83

84
        Parameters
85
        ----------
86
        w : int
87

88
        h : int
89
        """
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