Removed unnecessary files, removed or replaced images that we're not
sure of their origin or license. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -176,17 +176,27 @@ class Frame(wxFrame):
 | 
			
		||||
 | 
			
		||||
        # Create toolbar
 | 
			
		||||
        tb = self.CreateToolBar(wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT)
 | 
			
		||||
        tb.SetToolBitmapSize((24, 23))
 | 
			
		||||
        tb.AddSimpleTool(wxID_NEW, images.getNewBitmap(), 'New', 'New file')
 | 
			
		||||
        tb.AddSimpleTool(wxID_OPEN, images.getOpenBitmap(), 'Open', 'Open file')
 | 
			
		||||
        tb.AddSimpleTool(wxID_SAVE, images.getSaveBitmap(), 'Save', 'Save file')
 | 
			
		||||
        tsize = (24,23)
 | 
			
		||||
        new_bmp  = wx.ArtProvider.GetBitmap(wx.ART_NORMAL_FILE, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        open_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_OPEN, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        save_bmp = wx.ArtProvider.GetBitmap(wx.ART_FILE_SAVE, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        undo_bmp = wx.ArtProvider.GetBitmap(wx.ART_UNDO, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        redo_bmp = wx.ArtProvider.GetBitmap(wx.ART_REDO, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        cut_bmp  = wx.ArtProvider.GetBitmap(wx.ART_CUT, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        copy_bmp = wx.ArtProvider.GetBitmap(wx.ART_COPY, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        paste_bmp= wx.ArtProvider.GetBitmap(wx.ART_PASTE, wx.ART_TOOLBAR, tsize)
 | 
			
		||||
        
 | 
			
		||||
        tb.SetToolBitmapSize(tsize)
 | 
			
		||||
        tb.AddSimpleTool(wxID_NEW, new_bmp, 'New', 'New file')
 | 
			
		||||
        tb.AddSimpleTool(wxID_OPEN, open_bmp, 'Open', 'Open file')
 | 
			
		||||
        tb.AddSimpleTool(wxID_SAVE, save_bmp, 'Save', 'Save file')
 | 
			
		||||
        tb.AddControl(wxStaticLine(tb, -1, size=(-1,23), style=wxLI_VERTICAL))
 | 
			
		||||
        tb.AddSimpleTool(wxID_UNDO, images.getUndoBitmap(), 'Undo', 'Undo')
 | 
			
		||||
        tb.AddSimpleTool(wxID_REDO, images.getRedoBitmap(), 'Redo', 'Redo')
 | 
			
		||||
        tb.AddSimpleTool(wxID_UNDO, undo_bmp, 'Undo', 'Undo')
 | 
			
		||||
        tb.AddSimpleTool(wxID_REDO, redo_bmp, 'Redo', 'Redo')
 | 
			
		||||
        tb.AddControl(wxStaticLine(tb, -1, size=(-1,23), style=wxLI_VERTICAL))
 | 
			
		||||
        tb.AddSimpleTool(wxID_CUT, images.getCutBitmap(), 'Cut', 'Cut')
 | 
			
		||||
        tb.AddSimpleTool(wxID_COPY, images.getCopyBitmap(), 'Copy', 'Copy')
 | 
			
		||||
        tb.AddSimpleTool(self.ID_TOOL_PASTE, images.getPasteBitmap(), 'Paste', 'Paste')
 | 
			
		||||
        tb.AddSimpleTool(wxID_CUT, cut_bmp, 'Cut', 'Cut')
 | 
			
		||||
        tb.AddSimpleTool(wxID_COPY, copy_bmp, 'Copy', 'Copy')
 | 
			
		||||
        tb.AddSimpleTool(self.ID_TOOL_PASTE, paste_bmp, 'Paste', 'Paste')
 | 
			
		||||
        tb.AddControl(wxStaticLine(tb, -1, size=(-1,23), style=wxLI_VERTICAL))
 | 
			
		||||
        tb.AddCheckTool(self.ID_TOOL_LOCATE,
 | 
			
		||||
                        images.getLocateBitmap(), images.getLocateArmedBitmap(),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user