Skip to content

Commit

Permalink
Updated a few gui functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfearless committed Jun 11, 2018
1 parent 788f004 commit f0ec1bb
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 15 deletions.
7 changes: 4 additions & 3 deletions developers/functions/gui/GuiUpdateAllViews.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ GuiUpdateAllViews();

## Related functions

- [GuiUpdateAllViews](./GuiUpdateAllViews.md)
- [GuiUpdateEnable](./GuiUpdateEnable.md)
- [GuiUpdateDisable](./GuiUpdateDisable.md)
- [GuiIsUpdateDisabled](./GuiIsUpdateDisabled.md)

- [GuiUpdateArgumentWidget](./GuiUpdateArgumentWidget.md)
- [GuiUpdateBreakpointsView](./GuiUpdateBreakpointsView.md)
- [GuiUpdateCallStack](./GuiUpdateCallStack.md)
- [GuiUpdateDisable](./GuiUpdateDisable.md)
- [GuiUpdateDisassemblyView](./GuiUpdateDisassemblyView.md)
- [GuiUpdateDumpView](./GuiUpdateDumpView.md)
- [GuiUpdateEnable](./GuiUpdateEnable.md)
- [GuiUpdateGraphView](./GuiUpdateGraphView.md)
- [GuiUpdateMemoryView](./GuiUpdateMemoryView.md)
- [GuiUpdatePatches](./GuiUpdatePatches.md)
Expand Down
30 changes: 24 additions & 6 deletions developers/functions/gui/GuiUpdateDisable.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,43 @@
# GuiUpdateDisable

Function description.
Sets and internal variable to disable the update of views. To re-enable updating after processing or performing some operation, use the GuiUpdateEnable function.

```c++
Function definition.
void GuiUpdateDisable();
```

## Parameters

`param1` Parameter description.
This function has no parameters.

## Return Value

Return value description.
This function does not return a value.

## Example

```c++
Example code.
GuiUpdateDisable();
```

## Related functions

- List of related functions
- [GuiIsUpdateDisabled](./GuiIsUpdateDisabled.md)
- [GuiUpdateAllViews](./GuiUpdateAllViews.md)
- [GuiUpdateArgumentWidget](./GuiUpdateArgumentWidget.md)
- [GuiUpdateBreakpointsView](./GuiUpdateBreakpointsView.md)
- [GuiUpdateCallStack](./GuiUpdateCallStack.md)
- [GuiUpdateDisable](./GuiUpdateDisable.md)
- [GuiUpdateDisassemblyView](./GuiUpdateDisassemblyView.md)
- [GuiUpdateDumpView](./GuiUpdateDumpView.md)
- [GuiUpdateEnable](./GuiUpdateEnable.md)
- [GuiUpdateGraphView](./GuiUpdateGraphView.md)
- [GuiUpdateMemoryView](./GuiUpdateMemoryView.md)
- [GuiUpdatePatches](./GuiUpdatePatches.md)
- [GuiUpdateRegisterView](./GuiUpdateRegisterView.md)
- [GuiUpdateSEHChain](./GuiUpdateSEHChain.md)
- [GuiUpdateSideBar](./GuiUpdateSideBar.md)
- [GuiUpdateThreadView](./GuiUpdateThreadView.md)
- [GuiUpdateTimeWastedCounter](./GuiUpdateTimeWastedCounter.md)
- [GuiUpdateWatchView](./GuiUpdateWatchView.md)
- [GuiUpdateWindowTitle](./GuiUpdateWindowTitle.md)
30 changes: 24 additions & 6 deletions developers/functions/gui/GuiUpdateEnable.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,43 @@
# GuiUpdateEnable

Function description.
Sets an internal variable to enable (or re-enable if previously disabled via GuiUpdateDisable) the refresh of all views. The updateNow parameter can be used to force the update straight away, otherwise the updates of views will continue as per normal message scheduling, now that they have been enabled with GuiUpdateEnable.

```c++
Function definition.
void GuiUpdateEnable(bool updateNow);
```
## Parameters
`param1` Parameter description.
`updateNow` is a boolean value indicating if the update of all views should occur straight away.
## Return Value
Return value description.
This function does not return a value.
## Example
```c++
Example code.
GuiUpdateEnable(bool updateNow);
```

## Related functions

- List of related functions
- [GuiIsUpdateDisabled](./GuiIsUpdateDisabled.md)
- [GuiUpdateAllViews](./GuiUpdateAllViews.md)
- [GuiUpdateArgumentWidget](./GuiUpdateArgumentWidget.md)
- [GuiUpdateBreakpointsView](./GuiUpdateBreakpointsView.md)
- [GuiUpdateCallStack](./GuiUpdateCallStack.md)
- [GuiUpdateDisable](./GuiUpdateDisable.md)
- [GuiUpdateDisassemblyView](./GuiUpdateDisassemblyView.md)
- [GuiUpdateDumpView](./GuiUpdateDumpView.md)
- [GuiUpdateEnable](./GuiUpdateEnable.md)
- [GuiUpdateGraphView](./GuiUpdateGraphView.md)
- [GuiUpdateMemoryView](./GuiUpdateMemoryView.md)
- [GuiUpdatePatches](./GuiUpdatePatches.md)
- [GuiUpdateRegisterView](./GuiUpdateRegisterView.md)
- [GuiUpdateSEHChain](./GuiUpdateSEHChain.md)
- [GuiUpdateSideBar](./GuiUpdateSideBar.md)
- [GuiUpdateThreadView](./GuiUpdateThreadView.md)
- [GuiUpdateTimeWastedCounter](./GuiUpdateTimeWastedCounter.md)
- [GuiUpdateWatchView](./GuiUpdateWatchView.md)
- [GuiUpdateWindowTitle](./GuiUpdateWindowTitle.md)

0 comments on commit f0ec1bb

Please sign in to comment.