mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 19:40:12 +01:00
Add toolbar
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@70857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
38
unittests/test_toolbar.py
Normal file
38
unittests/test_toolbar.py
Normal file
@@ -0,0 +1,38 @@
|
||||
import imp_unittest, unittest
|
||||
import wtc
|
||||
import wx
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class toolbar_Tests(wtc.WidgetTestCase):
|
||||
|
||||
def test_toolbar1(self):
|
||||
wx.TOOL_STYLE_BUTTON
|
||||
wx.TOOL_STYLE_SEPARATOR
|
||||
wx.TOOL_STYLE_CONTROL
|
||||
|
||||
wx.TB_HORIZONTAL
|
||||
wx.TB_VERTICAL
|
||||
wx.TB_TOP
|
||||
wx.TB_LEFT
|
||||
wx.TB_BOTTOM
|
||||
wx.TB_RIGHT
|
||||
|
||||
wx.TB_3DBUTTONS
|
||||
wx.TB_FLAT
|
||||
wx.TB_DOCKABLE
|
||||
wx.TB_NOICONS
|
||||
wx.TB_TEXT
|
||||
wx.TB_NODIVIDER
|
||||
wx.TB_NOALIGN
|
||||
wx.TB_HORZ_LAYOUT
|
||||
wx.TB_HORZ_TEXT
|
||||
wx.TB_NO_TOOLTIPS
|
||||
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user