Removed some comments to see if I get more content
This commit is contained in:
parent
7b8296b698
commit
c106901d99
104
docs/index.md
104
docs/index.md
|
@ -3667,29 +3667,6 @@ Parameters explained:
|
|||
|||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
```python
|
||||
ButtonMenu( button_text,
|
||||
menu_def,
|
||||
tooltip=None,
|
||||
disabled=False,
|
||||
image_filename=None,
|
||||
image_data=None,
|
||||
image_size=(None, None),
|
||||
image_subsample=None,
|
||||
border_width=None,
|
||||
size=(None, None),
|
||||
auto_size_button=None,
|
||||
button_color=None,
|
||||
font=None,
|
||||
pad=None,
|
||||
key=None,
|
||||
visible=True,
|
||||
size_px=(None,None)):
|
||||
```
|
||||
-->
|
||||
|
||||
One use of this element is to make a "fake menu bar" that has a colored background. Normal menu bars cannot have their background color changed. Not so with ButtonMenus.
|
||||
|
||||
This is the effect:
|
||||
|
@ -3700,27 +3677,6 @@ Return values for ButtonMenus are sent via the return values dictionary. If a s
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## VerticalSeparator Element
|
||||
This element has limited usefulness and is being included more for completeness than anything else. It will draw a line between elements.
|
||||
|
||||
|
@ -3748,16 +3704,6 @@ Parameters explained:
|
|||
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## ProgressBar Element
|
||||
The `ProgressBar` element is used to build custom Progress Bar windows. It is HIGHLY recommended that you use OneLineProgressMeter that provides a complete progress meter solution for you. Progress Meters are not easy to work with because the windows have to be non-blocking and they are tricky to debug.
|
||||
|
||||
|
@ -4921,7 +4867,6 @@ Check out Tabs 7 and 8. We've got a Window with a Column containing Tabs 5 and
|
|||
As of Release 3.8.0, not all of *options* shown in the API definitions of the Tab and TabGroup Elements are working. They are there as placeholders.
|
||||
|
||||
|
||||
|
||||
```python
|
||||
TabGroup(layout,
|
||||
tab_location=None,
|
||||
|
@ -4962,27 +4907,6 @@ Parameters explained:
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- TabGroup(layout,
|
||||
title_color=None
|
||||
background_color=None
|
||||
font=None
|
||||
pad=None
|
||||
border_width=None
|
||||
change_submits = False
|
||||
key=None
|
||||
tooltip=None)
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```python
|
||||
Tab(title,
|
||||
layout,
|
||||
|
@ -5064,26 +4988,6 @@ Parameters explained:
|
|||
|
||||
|
||||
|
||||
<!-- ```python
|
||||
Update(disabled = None, visible=None)
|
||||
```
|
||||
WARNING - This Update method may not be working correctly -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## Pane Element
|
||||
|
||||
New in version 3.20 is the Pane Element, a super-cool tkinter feature. You won't find this one in PySimpleGUIQt, only PySimpleGUI. It's difficult to describe one of these things. Think of them as "Tabs without labels" that you can slide.
|
||||
|
@ -6915,11 +6819,3 @@ GNU Lesser General Public License (LGPL 3) +
|
|||
## Acknowledgments
|
||||
|
||||
#### SORRY!! Will add these back. Lost due to file length limitation
|
||||
<!--stackedit_data:
|
||||
eyJoaXN0b3J5IjpbMTIxNjg5MDM1Niw4NjQ5Nzg3NjUsLTEwNj
|
||||
U5NzgxMjYsNTE5MDU1OTQsMjA1MzEyNTE0OSwtMTU3ODc0NjU4
|
||||
OCwyNjA1ODQ4MTQsMTEwMjA4ODMzMywxNjc5ODUwOTkyLC0xND
|
||||
YxNDI4MSwtNjA2MzcxMTgsLTUwOTM1OTEyMywtMjQ4OTc2Mjks
|
||||
MTMwNzY5MjU5LC0yOTY3ODM1NSwtNzc0MDc0MjMwLDI2NjM2ND
|
||||
QxNyw0NDk0MzMyNDMsLTExNDg0OTA2MjNdfQ==
|
||||
-->
|
104
readme.md
104
readme.md
|
@ -3667,29 +3667,6 @@ Parameters explained:
|
|||
|||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
```python
|
||||
ButtonMenu( button_text,
|
||||
menu_def,
|
||||
tooltip=None,
|
||||
disabled=False,
|
||||
image_filename=None,
|
||||
image_data=None,
|
||||
image_size=(None, None),
|
||||
image_subsample=None,
|
||||
border_width=None,
|
||||
size=(None, None),
|
||||
auto_size_button=None,
|
||||
button_color=None,
|
||||
font=None,
|
||||
pad=None,
|
||||
key=None,
|
||||
visible=True,
|
||||
size_px=(None,None)):
|
||||
```
|
||||
-->
|
||||
|
||||
One use of this element is to make a "fake menu bar" that has a colored background. Normal menu bars cannot have their background color changed. Not so with ButtonMenus.
|
||||
|
||||
This is the effect:
|
||||
|
@ -3700,27 +3677,6 @@ Return values for ButtonMenus are sent via the return values dictionary. If a s
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## VerticalSeparator Element
|
||||
This element has limited usefulness and is being included more for completeness than anything else. It will draw a line between elements.
|
||||
|
||||
|
@ -3748,16 +3704,6 @@ Parameters explained:
|
|||
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## ProgressBar Element
|
||||
The `ProgressBar` element is used to build custom Progress Bar windows. It is HIGHLY recommended that you use OneLineProgressMeter that provides a complete progress meter solution for you. Progress Meters are not easy to work with because the windows have to be non-blocking and they are tricky to debug.
|
||||
|
||||
|
@ -4921,7 +4867,6 @@ Check out Tabs 7 and 8. We've got a Window with a Column containing Tabs 5 and
|
|||
As of Release 3.8.0, not all of *options* shown in the API definitions of the Tab and TabGroup Elements are working. They are there as placeholders.
|
||||
|
||||
|
||||
|
||||
```python
|
||||
TabGroup(layout,
|
||||
tab_location=None,
|
||||
|
@ -4962,27 +4907,6 @@ Parameters explained:
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- TabGroup(layout,
|
||||
title_color=None
|
||||
background_color=None
|
||||
font=None
|
||||
pad=None
|
||||
border_width=None
|
||||
change_submits = False
|
||||
key=None
|
||||
tooltip=None)
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```python
|
||||
Tab(title,
|
||||
layout,
|
||||
|
@ -5064,26 +4988,6 @@ Parameters explained:
|
|||
|
||||
|
||||
|
||||
<!-- ```python
|
||||
Update(disabled = None, visible=None)
|
||||
```
|
||||
WARNING - This Update method may not be working correctly -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## Pane Element
|
||||
|
||||
New in version 3.20 is the Pane Element, a super-cool tkinter feature. You won't find this one in PySimpleGUIQt, only PySimpleGUI. It's difficult to describe one of these things. Think of them as "Tabs without labels" that you can slide.
|
||||
|
@ -6915,11 +6819,3 @@ GNU Lesser General Public License (LGPL 3) +
|
|||
## Acknowledgments
|
||||
|
||||
#### SORRY!! Will add these back. Lost due to file length limitation
|
||||
<!--stackedit_data:
|
||||
eyJoaXN0b3J5IjpbMTIxNjg5MDM1Niw4NjQ5Nzg3NjUsLTEwNj
|
||||
U5NzgxMjYsNTE5MDU1OTQsMjA1MzEyNTE0OSwtMTU3ODc0NjU4
|
||||
OCwyNjA1ODQ4MTQsMTEwMjA4ODMzMywxNjc5ODUwOTkyLC0xND
|
||||
YxNDI4MSwtNjA2MzcxMTgsLTUwOTM1OTEyMywtMjQ4OTc2Mjks
|
||||
MTMwNzY5MjU5LC0yOTY3ODM1NSwtNzc0MDc0MjMwLDI2NjM2ND
|
||||
QxNyw0NDk0MzMyNDMsLTExNDg0OTA2MjNdfQ==
|
||||
-->
|
Loading…
Reference in New Issue