mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
#!/usr/bin/env python
|
|
|
|
import wx
|
|
|
|
## import the installed version
|
|
from wx.lib.floatcanvas import NavCanvas, FloatCanvas
|
|
|
|
## import a local version
|
|
#import sys
|
|
#sys.path.append("../")
|
|
#from floatcanvas import NavCanvas, FloatCanvas
|
|
|
|
class MyFrame(wx.Frame):
|
|
def __init__(self, *args, **kwargs):
|
|
wx.Frame.__init__(self, *args, **kwargs)
|
|
|
|
#Adding the SplitterWindow
|
|
splitter = wx.SplitterWindow(self, style=wx.SP_LIVE_UPDATE|wx.SP_3D, size = (800,400))
|
|
|
|
# add the left Panel
|
|
panel1 = wx.Panel(splitter)
|
|
panel1.SetBackgroundColour(wx.RED)
|
|
|
|
# add the Canvas
|
|
panel2 = NavCanvas.NavCanvas(splitter,
|
|
ProjectionFun = None,
|
|
Debug = 0,
|
|
BackgroundColor = "DARK SLATE BLUE",
|
|
)
|
|
Canvas = panel2.Canvas
|
|
|
|
# put something on the Canvas
|
|
Point = (15,10)
|
|
Canvas.AddScaledTextBox("A Two Line\nString",
|
|
Point,
|
|
2,
|
|
Color = "Black",
|
|
BackgroundColor = None,
|
|
LineColor = "Red",
|
|
LineStyle = "Solid",
|
|
LineWidth = 1,
|
|
Width = None,
|
|
PadSize = 5,
|
|
Family = wx.ROMAN,
|
|
Style = wx.NORMAL,
|
|
Weight = wx.NORMAL,
|
|
Underlined = False,
|
|
Position = 'br',
|
|
Alignment = "left",
|
|
InForeground = False)
|
|
|
|
wx.CallAfter(Canvas.ZoomToBB)
|
|
|
|
# set up the Splitter
|
|
sash_Position = 300
|
|
splitter.SplitVertically(panel1, panel2, sash_Position)
|
|
min_Pan_size = 40
|
|
splitter.SetMinimumPaneSize(min_Pan_size)
|
|
|
|
self.Fit()
|
|
|
|
|
|
class MyApp(wx.App):
|
|
def OnInit(self):
|
|
frame = MyFrame(None, title='splitter test')
|
|
frame.Show(True)
|
|
self.SetTopWindow(frame)
|
|
return True
|
|
|
|
app = MyApp(0)
|
|
app.MainLoop()
|