You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/call reference.md
+19-16Lines changed: 19 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11420,15 +11420,13 @@ Parameter Descriptions:
11420
11420
11421
11421
### get
11422
11422
11423
-
Dummy function for tkinter port. In the Qt port you can read back the values in the table in case they were
11424
-
edited. Don't know yet how to enable editing of a Tree in tkinter so just returning the values provided by
11425
-
user when Table was created or Updated.
11423
+
Get the selected rows using tktiner's selection method. Experimenting with this change....
11426
11424
11427
11425
`get()`
11428
11426
11429
11427
|Type|Name|Meaning|
11430
11428
|---|---|---|
11431
-
|List[List[Any]]| **return** | the current table values (for now what was originally provided up updated) |
11429
+
|List[List[Any]]| **return** | the current table values |
11432
11430
11433
11431
### get_next_focus
11434
11432
@@ -11652,15 +11650,13 @@ The following methods are here for backwards compatibility reference. You will
11652
11650
11653
11651
### Get
11654
11652
11655
-
Dummy function for tkinter port. In the Qt port you can read back the values in the table in case they were
11656
-
edited. Don't know yet how to enable editing of a Tree in tkinter so just returning the values provided by
11657
-
user when Table was created or Updated.
11653
+
Get the selected rows using tktiner's selection method. Experimenting with this change....
11658
11654
11659
11655
`Get()`
11660
11656
11661
11657
|Type|Name|Meaning|
11662
11658
|---|---|---|
11663
-
|List[List[Any]]| **return** | the current table values (for now what was originally provided up updated) |
11659
+
|List[List[Any]]| **return** | the current table values |
11664
11660
11665
11661
### SetFocus
11666
11662
@@ -14919,6 +14915,7 @@ Parameter Descriptions:
14919
14915
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
14920
14916
| str | locale | defines the locale used to get day names |
14921
14917
| str | format | formats result using this strftime format |
14918
+
| int | begin_at_sunday_plus | Determines the left-most day in the display. 0=sunday, 1=monday, etc |
14922
14919
| List[str] | month_names | optional list of month names to use (should be 12 items) |
14923
14920
| List[str] | day_abbreviations | optional list of abbreviations to display as the day of week |
14924
14921
| str | title | Title shown on the date chooser window |
@@ -16571,11 +16568,11 @@ Parameter Descriptions:
16571
16568
16572
16569
|Type|Name|Meaning|
16573
16570
|--|--|--|
16574
-
| str | title | text to display in eleemnt |
16571
+
| str | title | text to display in titlebar of window |
16575
16572
| int | current_value | current value |
16576
-
| int | max_value | max value of QuickMeter |
16577
-
| Any | *args | stuff to output |
16578
-
| str or int or tuple or object | key | Used to differentiate between mutliple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16573
+
| int | max_value | max value of progress meter |
16574
+
| Any | *args | stuff to output as text in the window along with the meter |
16575
+
| str or int or tuple or object | key | Used to differentiate between multiple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16579
16576
| str | orientation | 'horizontal' or 'vertical' ('h' or 'v' work) (Default value = 'vertical' / 'v') |
16580
16577
| (str, str) or str | bar_color | The 2 colors that make up a progress bar. Either a tuple of 2 strings or a string. Tuple - (bar, background). A string with 1 color changes the background of the bar only. A string with 2 colors separated by "on" like "red on blue" specifies a red bar on a blue background. |
16581
16578
| (str, str) or str | button_color | button color (foreground, background) |
@@ -16625,11 +16622,11 @@ Parameter Descriptions:
16625
16622
16626
16623
|Type|Name|Meaning|
16627
16624
|--|--|--|
16628
-
| str | title | text to display in eleemnt |
16625
+
| str | title | text to display in titlebar of window |
16629
16626
| int | current_value | current value |
16630
-
| int | max_value | max value of QuickMeter |
16631
-
| Any | *args | stuff to output |
16632
-
| str or int or tuple or object | key | Used to differentiate between mutliple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16627
+
| int | max_value | max value of progress meter |
16628
+
| Any | *args | stuff to output as text in the window along with the meter |
16629
+
| str or int or tuple or object | key | Used to differentiate between multiple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16633
16630
| str | orientation | 'horizontal' or 'vertical' ('h' or 'v' work) (Default value = 'vertical' / 'v') |
16634
16631
| (str, str) or str | bar_color | The 2 colors that make up a progress bar. Either a tuple of 2 strings or a string. Tuple - (bar, background). A string with 1 color changes the background of the bar only. A string with 2 colors separated by "on" like "red on blue" specifies a red bar on a blue background. |
16635
16632
| (str, str) or str | button_color | button color (foreground, background) |
| bool | keep_on_top | If True the window will remain above all current windows |
16964
16964
| List[str] | month_names | optional list of month names to use (should be 12 items) |
16965
16965
| List[str] | day_abbreviations | optional list of abbreviations to display as the day of week |
16966
+
| str or tuple | day_font | Font and size to use for the calendar |
16967
+
| str or tuple | mon_year_font | Font and size to use for the month and year at the top |
16968
+
| str or tuple | arrow_font | Font and size to use for the arrow buttons |
16966
16969
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
16967
16970
| None or (int, int, int) | **RETURN** | Tuple containing (month, day, year) of chosen date or None if was cancelled
Copy file name to clipboardExpand all lines: docs/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2078,11 +2078,11 @@ Parameter Descriptions:
2078
2078
2079
2079
|Type|Name|Meaning|
2080
2080
|--|--|--|
2081
-
| str | title | text to display in eleemnt |
2081
+
| str | title | text to display in titlebar of window |
2082
2082
| int | current_value | current value |
2083
-
| int | max_value | max value of QuickMeter |
2084
-
| Any | *args | stuff to output |
2085
-
| str or int or tuple or object | key | Used to differentiate between mutliple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
2083
+
| int | max_value | max value of progress meter |
2084
+
| Any | *args | stuff to output as text in the window along with the meter |
2085
+
| str or int or tuple or object | key | Used to differentiate between multiple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
2086
2086
| str | orientation | 'horizontal' or 'vertical' ('h' or 'v' work) (Default value = 'vertical' / 'v') |
2087
2087
| (str, str) or str | bar_color | The 2 colors that make up a progress bar. Either a tuple of 2 strings or a string. Tuple - (bar, background). A string with 1 color changes the background of the bar only. A string with 2 colors separated by "on" like "red on blue" specifies a red bar on a blue background. |
2088
2088
| (str, str) or str | button_color | button color (foreground, background) |
Copy file name to clipboardExpand all lines: readme_creator/output/call reference.md
+19-16Lines changed: 19 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11420,15 +11420,13 @@ Parameter Descriptions:
11420
11420
11421
11421
### get
11422
11422
11423
-
Dummy function for tkinter port. In the Qt port you can read back the values in the table in case they were
11424
-
edited. Don't know yet how to enable editing of a Tree in tkinter so just returning the values provided by
11425
-
user when Table was created or Updated.
11423
+
Get the selected rows using tktiner's selection method. Experimenting with this change....
11426
11424
11427
11425
`get()`
11428
11426
11429
11427
|Type|Name|Meaning|
11430
11428
|---|---|---|
11431
-
|List[List[Any]]| **return** | the current table values (for now what was originally provided up updated) |
11429
+
|List[List[Any]]| **return** | the current table values |
11432
11430
11433
11431
### get_next_focus
11434
11432
@@ -11652,15 +11650,13 @@ The following methods are here for backwards compatibility reference. You will
11652
11650
11653
11651
### Get
11654
11652
11655
-
Dummy function for tkinter port. In the Qt port you can read back the values in the table in case they were
11656
-
edited. Don't know yet how to enable editing of a Tree in tkinter so just returning the values provided by
11657
-
user when Table was created or Updated.
11653
+
Get the selected rows using tktiner's selection method. Experimenting with this change....
11658
11654
11659
11655
`Get()`
11660
11656
11661
11657
|Type|Name|Meaning|
11662
11658
|---|---|---|
11663
-
|List[List[Any]]| **return** | the current table values (for now what was originally provided up updated) |
11659
+
|List[List[Any]]| **return** | the current table values |
11664
11660
11665
11661
### SetFocus
11666
11662
@@ -14919,6 +14915,7 @@ Parameter Descriptions:
14919
14915
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
14920
14916
| str | locale | defines the locale used to get day names |
14921
14917
| str | format | formats result using this strftime format |
14918
+
| int | begin_at_sunday_plus | Determines the left-most day in the display. 0=sunday, 1=monday, etc |
14922
14919
| List[str] | month_names | optional list of month names to use (should be 12 items) |
14923
14920
| List[str] | day_abbreviations | optional list of abbreviations to display as the day of week |
14924
14921
| str | title | Title shown on the date chooser window |
@@ -16571,11 +16568,11 @@ Parameter Descriptions:
16571
16568
16572
16569
|Type|Name|Meaning|
16573
16570
|--|--|--|
16574
-
| str | title | text to display in eleemnt |
16571
+
| str | title | text to display in titlebar of window |
16575
16572
| int | current_value | current value |
16576
-
| int | max_value | max value of QuickMeter |
16577
-
| Any | *args | stuff to output |
16578
-
| str or int or tuple or object | key | Used to differentiate between mutliple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16573
+
| int | max_value | max value of progress meter |
16574
+
| Any | *args | stuff to output as text in the window along with the meter |
16575
+
| str or int or tuple or object | key | Used to differentiate between multiple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16579
16576
| str | orientation | 'horizontal' or 'vertical' ('h' or 'v' work) (Default value = 'vertical' / 'v') |
16580
16577
| (str, str) or str | bar_color | The 2 colors that make up a progress bar. Either a tuple of 2 strings or a string. Tuple - (bar, background). A string with 1 color changes the background of the bar only. A string with 2 colors separated by "on" like "red on blue" specifies a red bar on a blue background. |
16581
16578
| (str, str) or str | button_color | button color (foreground, background) |
@@ -16625,11 +16622,11 @@ Parameter Descriptions:
16625
16622
16626
16623
|Type|Name|Meaning|
16627
16624
|--|--|--|
16628
-
| str | title | text to display in eleemnt |
16625
+
| str | title | text to display in titlebar of window |
16629
16626
| int | current_value | current value |
16630
-
| int | max_value | max value of QuickMeter |
16631
-
| Any | *args | stuff to output |
16632
-
| str or int or tuple or object | key | Used to differentiate between mutliple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16627
+
| int | max_value | max value of progress meter |
16628
+
| Any | *args | stuff to output as text in the window along with the meter |
16629
+
| str or int or tuple or object | key | Used to differentiate between multiple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
16633
16630
| str | orientation | 'horizontal' or 'vertical' ('h' or 'v' work) (Default value = 'vertical' / 'v') |
16634
16631
| (str, str) or str | bar_color | The 2 colors that make up a progress bar. Either a tuple of 2 strings or a string. Tuple - (bar, background). A string with 1 color changes the background of the bar only. A string with 2 colors separated by "on" like "red on blue" specifies a red bar on a blue background. |
16635
16632
| (str, str) or str | button_color | button color (foreground, background) |
| bool | keep_on_top | If True the window will remain above all current windows |
16964
16964
| List[str] | month_names | optional list of month names to use (should be 12 items) |
16965
16965
| List[str] | day_abbreviations | optional list of abbreviations to display as the day of week |
16966
+
| str or tuple | day_font | Font and size to use for the calendar |
16967
+
| str or tuple | mon_year_font | Font and size to use for the month and year at the top |
16968
+
| str or tuple | arrow_font | Font and size to use for the arrow buttons |
16966
16969
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
16967
16970
| None or (int, int, int) | **RETURN** | Tuple containing (month, day, year) of chosen date or None if was cancelled
Copy file name to clipboardExpand all lines: readme_creator/output/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2078,11 +2078,11 @@ Parameter Descriptions:
2078
2078
2079
2079
|Type|Name|Meaning|
2080
2080
|--|--|--|
2081
-
| str | title | text to display in eleemnt |
2081
+
| str | title | text to display in titlebar of window |
2082
2082
| int | current_value | current value |
2083
-
| int | max_value | max value of QuickMeter |
2084
-
| Any | *args | stuff to output |
2085
-
| str or int or tuple or object | key | Used to differentiate between mutliple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
2083
+
| int | max_value | max value of progress meter |
2084
+
| Any | *args | stuff to output as text in the window along with the meter |
2085
+
| str or int or tuple or object | key | Used to differentiate between multiple meters. Used to cancel meter early. Now optional as there is a default value for single meters |
2086
2086
| str | orientation | 'horizontal' or 'vertical' ('h' or 'v' work) (Default value = 'vertical' / 'v') |
2087
2087
| (str, str) or str | bar_color | The 2 colors that make up a progress bar. Either a tuple of 2 strings or a string. Tuple - (bar, background). A string with 1 color changes the background of the bar only. A string with 2 colors separated by "on" like "red on blue" specifies a red bar on a blue background. |
2088
2088
| (str, str) or str | button_color | button color (foreground, background) |
0 commit comments