$21 GRAYBYTE WORDPRESS FILE MANAGER $92

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python36/lib64/python3.6/idlelib/

HOME
Current File : /opt/alt/python36/lib64/python3.6/idlelib//dynoption.py
"""
OptionMenu widget modified to allow dynamic menu reconfiguration
and setting of highlightthickness
"""
import copy

from tkinter import OptionMenu, _setit, StringVar, Button

class DynOptionMenu(OptionMenu):
    """
    unlike OptionMenu, our kwargs can include highlightthickness
    """
    def __init__(self, master, variable, value, *values, **kwargs):
        # TODO copy value instead of whole dict
        kwargsCopy=copy.copy(kwargs)
        if 'highlightthickness' in list(kwargs.keys()):
            del(kwargs['highlightthickness'])
        OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
        self.config(highlightthickness=kwargsCopy.get('highlightthickness'))
        #self.menu=self['menu']
        self.variable=variable
        self.command=kwargs.get('command')

    def SetMenu(self,valueList,value=None):
        """
        clear and reload the menu with a new set of options.
        valueList - list of new options
        value - initial value to set the optionmenu's menubutton to
        """
        self['menu'].delete(0,'end')
        for item in valueList:
            self['menu'].add_command(label=item,
                    command=_setit(self.variable,item,self.command))
        if value:
            self.variable.set(value)

def _dyn_option_menu(parent):  # htest #
    from tkinter import Toplevel # + StringVar, Button

    top = Toplevel(parent)
    top.title("Tets dynamic option menu")
    x, y = map(int, parent.geometry().split('+')[1:])
    top.geometry("200x100+%d+%d" % (x + 250, y + 175))
    top.focus_set()

    var = StringVar(top)
    var.set("Old option set") #Set the default value
    dyn = DynOptionMenu(top,var, "old1","old2","old3","old4")
    dyn.pack()

    def update():
        dyn.SetMenu(["new1","new2","new3","new4"], value="new option set")
    button = Button(top, text="Change option set", command=update)
    button.pack()

if __name__ == '__main__':
    from idlelib.idle_test.htest import run
    run(_dyn_option_menu)


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
24 May 2024 8.34 AM
root / linksafe
0755
Icons
--
24 May 2024 8.33 AM
root / linksafe
0755
__pycache__
--
24 May 2024 8.33 AM
root / linksafe
0755
idle_test
--
24 May 2024 8.33 AM
root / linksafe
0755
CREDITS.txt
1.822 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
ChangeLog
55.039 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
HISTORY.txt
10.07 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
NEWS.txt
38.905 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
NEWS2x.txt
26.535 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
README.txt
9.367 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
TODO.txt
8.279 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
__init__.py
0.387 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
__main__.py
0.155 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
_pyclbr.py
14.843 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
autocomplete.py
9.105 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
autocomplete_w.py
19.364 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
autoexpand.py
3.141 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
browser.py
8.087 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
calltip.py
5.925 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
calltip_w.py
6.944 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
codecontext.py
10.244 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
colorizer.py
11.011 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
config-extensions.def
2.213 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config-highlight.def
2.624 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config-keys.def
10.522 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config-main.def
3.055 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config.py
37.967 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
config_key.py
13.094 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
configdialog.py
98.688 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugger.py
18.649 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugger_r.py
11.855 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugobj.py
3.96 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugobj_r.py
1.057 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
delegator.py
1.019 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
dynoption.py
1.97 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
editor.py
65.698 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
extend.txt
3.557 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
filelist.py
3.805 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
grep.py
6.584 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
help.html
53.822 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
help.py
11.06 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
help_about.py
8.771 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
history.py
3.948 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
hyperparser.py
12.58 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
idle.py
0.443 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
idle.pyw
0.557 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
iomenu.py
20.248 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
macosx.py
9.434 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
mainmenu.py
3.616 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
multicall.py
18.211 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
outwin.py
5.672 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
paragraph.py
6.999 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
parenmatch.py
7.035 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
pathbrowser.py
3.118 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
percolator.py
3.057 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
pyparse.py
19.646 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
pyshell.py
56.375 KB
17 Apr 2024 5.19 PM
root / linksafe
0755
query.py
12.143 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
redirector.py
6.714 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
replace.py
7.326 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
rpc.py
20.642 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
rstrip.py
0.848 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
run.py
16.867 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
runscript.py
7.657 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
scrolledlist.py
4.354 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
search.py
3.09 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
searchbase.py
7.276 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
searchengine.py
7.297 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
squeezer.py
12.996 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
stackviewer.py
4.35 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
statusbar.py
1.407 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
textview.py
5.978 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
tooltip.py
6.334 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
tree.py
14.735 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
undo.py
10.788 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
window.py
2.527 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
zoomheight.py
1.309 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
zzdummy.py
0.938 KB
17 Apr 2024 5.19 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF