Browse Source

Added scrollarea policies demo

pull/98/merge
Eugenio Parodi 3 years ago
parent
commit
45dc60652f
  1. 9
      demo/demo.py
  2. 4
      demo/showcase/scrollarea01.py
  3. 92
      demo/showcase/scrollarea02.py

9
demo/demo.py

@ -40,7 +40,8 @@ from showcase.splitter import demoSplitter
from showcase.windows import demoWindows
from showcase.windowsflags import demoWindowsFlags
from showcase.formwidgets import demoFormWidgets
from showcase.scrollarea import demoScrollArea
from showcase.scrollarea01 import demoScrollArea01
from showcase.scrollarea02 import demoScrollArea02
from showcase.list import demoList
from showcase.menubar import demoMenuBar
from showcase.filepicker import demoFilePicker
@ -205,12 +206,14 @@ def demoShowcase(root=None, border=True):
listMenu.addItem(f"Extra")
tabArea = ttk.TTkTabWidget(parent=mainFrame, border=False, visible=False)
tabArea.addTab(demoScrollArea(), " Scroll Area ")
tabArea.addTab(demoScrollArea01()," Scroll Area 1 ")
tabArea.addTab(demoScrollArea02()," Scroll Area 2 ")
tabArea.addTab(demoDnD(), " Drag'n Drop ")
tabArea.addTab(demoDnDTabs(), " D'n D Tabs ")
tabArea.addTab(demoSigmask(), " Sigmask ")
tabAreaSources = [
'showcase/scrollarea.py',
'showcase/scrollarea01.py',
'showcase/scrollarea02.py',
'showcase/dragndrop.py',
'showcase/dndtabs.py',
'showcase/sigmask.py' ]

4
demo/showcase/scrollarea.py → demo/showcase/scrollarea01.py

@ -47,7 +47,7 @@ class graphTimerEvent():
self.w.addValue(plot)
self.timer.start(self.delay)
def demoScrollArea(root= None):
def demoScrollArea01(root= None):
scrollArea = ttk.TTkScrollArea(parent=root)
ttk.TTkTestWidget(pos=(0,0) , size=(50,25), parent=scrollArea.viewport(), border=True)
ttk.TTkTestWidgetSizes(pos=(10,25) , size=(40,20), parent=scrollArea.viewport(), border=True)
@ -74,7 +74,7 @@ def main():
root.setLayout(ttk.TTkGridLayout())
else:
rootGraph = ttk.TTkWindow(parent=root,pos=(1,1), size=(100,40), title="Test Scroll Area", border=True, layout=ttk.TTkGridLayout())
demoScrollArea(rootGraph)
demoScrollArea01(rootGraph)
root.mainloop()
if __name__ == "__main__":

92
demo/showcase/scrollarea02.py

@ -0,0 +1,92 @@
#!/usr/bin/env python3
# MIT License
#
# Copyright (c) 2021 Eugenio Parodi <ceccopierangiolieugenio AT googlemail DOT com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import sys, os, argparse, math, random
sys.path.append(os.path.join(sys.path[0],'../..'))
import TermTk as ttk
def demoScrollArea02(root = None):
if not root:
root = ttk.TTkFrame()
# Create a Window with a scrollarea and 2 test widgets placed in a way to exceed the scroll area boudaries
# By default the bar policy show them if needed, it is possible to check this resizing the window
w1 = ttk.TTkWindow(parent=root,pos=(0,0), size=(50,20), title="sa1", border=True, layout=ttk.TTkGridLayout())
sa1 = ttk.TTkScrollArea(parent=w1)
ttk.TTkTestWidgetSizes(pos=(0,0) , size=(40,10), parent=sa1.viewport(), border=True)
ttk.TTkTestWidgetSizes(pos=(10,15) , size=(40,10), parent=sa1.viewport(), border=True)
# This window has the same size and properties than the previous one
# The scroll Area inside this window has the vertical scrollbar always disabled
w2 = ttk.TTkWindow(parent=root,pos=(10,10), size=(50,20), title="sa2 - Vertical Off", border=True, layout=ttk.TTkGridLayout())
sa2 = ttk.TTkScrollArea(parent=w2, verticalScrollBarPolicy=ttk.TTkK.ScrollBarAlwaysOff)
ttk.TTkTestWidgetSizes(pos=(0,0) , size=(40,10), parent=sa2.viewport(), border=True)
ttk.TTkTestWidgetSizes(pos=(10,15) , size=(40,10), parent=sa2.viewport(), border=True)
# This window has the same size and properties than the previous one
# The scroll Area inside this window has the horizontal scrollbar always disabled
w3 = ttk.TTkWindow(parent=root,pos=(20,20), size=(50,20), title="sa3 - Horizontal Off", border=True, layout=ttk.TTkGridLayout())
sa3 = ttk.TTkScrollArea(parent=w3, horizontalScrollBarPolicy=ttk.TTkK.ScrollBarAlwaysOff)
ttk.TTkTestWidgetSizes(pos=(0,0) , size=(40,10), parent=sa3.viewport(), border=True)
ttk.TTkTestWidgetSizes(pos=(10,15) , size=(40,10), parent=sa3.viewport(), border=True)
# Define 6 radio buttons next to the first window (w1,sa1)
# I will connect those controls to the verticalBarPolicy of this window
ttk.TTkLabel( parent=root, pos=(55,0), size=(15,1), text="sa1 - Vertical Scrollbar:" )
vsb1 = ttk.TTkRadioButton(parent=root, pos=(55,1), size=(15,1), text="As Needed" , name="VSB", checked=True)
vsb2 = ttk.TTkRadioButton(parent=root, pos=(55,2), size=(15,1), text="Always On" , name="VSB")
vsb3 = ttk.TTkRadioButton(parent=root, pos=(55,3), size=(15,1), text="Always Off", name="VSB")
ttk.TTkLabel( parent=root, pos=(55,5), size=(15,1), text="sa1 - Horizontal Scrollbar:" )
hsb1 = ttk.TTkRadioButton(parent=root, pos=(55,6), size=(15,1), text="As Needed" , name="HSB", checked=True)
hsb2 = ttk.TTkRadioButton(parent=root, pos=(55,7), size=(15,1), text="Always On" , name="HSB")
hsb3 = ttk.TTkRadioButton(parent=root, pos=(55,8), size=(15,1), text="Always Off", name="HSB")
# Connect the clicked events of the controls to the scrollbar policies of the first window (w1,sa1)
vsb1.clicked.connect(lambda : sa1.setVerticalScrollBarPolicy(ttk.TTkK.ScrollBarAsNeeded))
vsb2.clicked.connect(lambda : sa1.setVerticalScrollBarPolicy(ttk.TTkK.ScrollBarAlwaysOn))
vsb3.clicked.connect(lambda : sa1.setVerticalScrollBarPolicy(ttk.TTkK.ScrollBarAlwaysOff))
hsb1.clicked.connect(lambda : sa1.setHorizontalScrollBarPolicy(ttk.TTkK.ScrollBarAsNeeded))
hsb2.clicked.connect(lambda : sa1.setHorizontalScrollBarPolicy(ttk.TTkK.ScrollBarAlwaysOn))
hsb3.clicked.connect(lambda : sa1.setHorizontalScrollBarPolicy(ttk.TTkK.ScrollBarAlwaysOff))
return root
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-f', help='Full Screen', action='store_true')
args = parser.parse_args()
ttk.TTkLog.use_default_file_logging()
root = ttk.TTk()
if args.f:
rootGraph = root
else:
rootGraph = ttk.TTkWindow(parent=root,pos=(1,1), size=(100,40), title="Test Scroll Area", border=True)
demoScrollArea02(rootGraph)
root.mainloop()
if __name__ == "__main__":
main()
Loading…
Cancel
Save