Add go to first/last and plus/minus art provider icons.
These icons will be used in the upcoming new implementation of the print preview frame and as they are also natively supported by GTK+ it makes sense to have support for them in wx itself. Notice that the existing bookmark add/remove icons are already mapped to the icons which look like plus and minus signs respectively in wxGTK but we need plus/minus in print preview in the other ports too so add these icons under explicit names. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -93,6 +93,8 @@ protected:
|
||||
#include "../../art/helpicon.xpm"
|
||||
#include "../../art/tipicon.xpm"
|
||||
#include "../../art/home.xpm"
|
||||
#include "../../art/first.xpm"
|
||||
#include "../../art/last.xpm"
|
||||
#include "../../art/repview.xpm"
|
||||
#include "../../art/listview.xpm"
|
||||
#include "../../art/new_dir.xpm"
|
||||
@@ -117,6 +119,8 @@ protected:
|
||||
#include "../../art/new.xpm"
|
||||
#include "../../art/undo.xpm"
|
||||
#include "../../art/redo.xpm"
|
||||
#include "../../art/plus.xpm"
|
||||
#include "../../art/minus.xpm"
|
||||
#include "../../art/close.xpm"
|
||||
#include "../../art/quit.xpm"
|
||||
#include "../../art/find.xpm"
|
||||
@@ -149,6 +153,8 @@ wxBitmap wxDefaultArtProvider_CreateBitmap(const wxArtID& id)
|
||||
ART(wxART_GO_DOWN, down)
|
||||
ART(wxART_GO_TO_PARENT, toparent)
|
||||
ART(wxART_GO_HOME, home)
|
||||
ART(wxART_GOTO_FIRST, first)
|
||||
ART(wxART_GOTO_LAST, last)
|
||||
ART(wxART_FILE_OPEN, fileopen)
|
||||
ART(wxART_PRINT, print)
|
||||
ART(wxART_HELP, helpicon)
|
||||
@@ -176,6 +182,8 @@ wxBitmap wxDefaultArtProvider_CreateBitmap(const wxArtID& id)
|
||||
ART(wxART_DELETE, delete)
|
||||
ART(wxART_UNDO, undo)
|
||||
ART(wxART_REDO, redo)
|
||||
ART(wxART_PLUS, plus)
|
||||
ART(wxART_MINUS, minus)
|
||||
ART(wxART_CLOSE, close)
|
||||
ART(wxART_QUIT, quit)
|
||||
ART(wxART_FIND, find)
|
||||
|
||||
Reference in New Issue
Block a user