mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 11:00:07 +01:00
20 lines
526 B
Python
20 lines
526 B
Python
import unittest
|
|
import wtc
|
|
import wx.ribbon
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class ribbon_gallery_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_ribbon_gallery1(self):
|
|
wx.ribbon.RIBBON_GALLERY_BUTTON_NORMAL
|
|
wx.ribbon.RIBBON_GALLERY_BUTTON_HOVERED
|
|
wx.ribbon.RIBBON_GALLERY_BUTTON_ACTIVE
|
|
wx.ribbon.RIBBON_GALLERY_BUTTON_DISABLED
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|