use wx.ART_NEW

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34359 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-05-26 19:25:26 +00:00
parent 3d2d903603
commit 56caea07f8
2 changed files with 5 additions and 11 deletions

View File

@@ -168,17 +168,11 @@ class PythonSTC(stc.StyledTextCtrl):
# register some images for use in the AutoComplete box. # register some images for use in the AutoComplete box.
self.RegisterImage(1, images.getSmilesBitmap()) self.RegisterImage(1, images.getSmilesBitmap())
self.RegisterImage(2, self._fix_image( self.RegisterImage(2,
wx.ArtProvider.GetBitmap(wx.ART_NEW, wx.ART_TOOLBAR, (16,16)))) wx.ArtProvider.GetBitmap(wx.ART_NEW, size=(16,16)))
self.RegisterImage(3, self._fix_image( self.RegisterImage(3,
wx.ArtProvider.GetBitmap(wx.ART_COPY, wx.ART_TOOLBAR, (16,16)))) wx.ArtProvider.GetBitmap(wx.ART_COPY, size=(16,16)))
def _fix_image(self, bmp):
img = bmp.ConvertToImage()
if img.HasAlpha():
img.ConvertAlphaToMask()
bmp = wx.BitmapFromImage(img)
return bmp
def OnKeyPressed(self, event): def OnKeyPressed(self, event):
if self.CallTipActive(): if self.CallTipActive():

View File

@@ -177,7 +177,7 @@ class Frame(wxFrame):
# Create toolbar # Create toolbar
tb = self.CreateToolBar(wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT) tb = self.CreateToolBar(wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT)
tb.SetToolBitmapSize((24,24)) tb.SetToolBitmapSize((24,24))
new_bmp = wx.ArtProvider.GetBitmap(wx.ART_NORMAL_FILE, wx.ART_TOOLBAR) new_bmp = wx.ArtProvider.GetBitmap(wx.ART_NEW, wx.ART_TOOLBAR)
open_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_OPEN, wx.ART_TOOLBAR) open_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_OPEN, wx.ART_TOOLBAR)
save_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_SAVE, wx.ART_TOOLBAR) save_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_SAVE, wx.ART_TOOLBAR)
undo_bmp = wx.ArtProvider.GetBitmap(wx.ART_UNDO, wx.ART_TOOLBAR) undo_bmp = wx.ArtProvider.GetBitmap(wx.ART_UNDO, wx.ART_TOOLBAR)