Moved "edit" icon from wxEditableListBox to wxArtProvider.

"Edit" icon definition used internally in wxEditableListBox is moved to
wxDefaultArtProvider and exposed as wxART_EDIT.

While there is no native version of this icon yet, it could be added in the
future and in the meanwhile this commit will be useful to use only standard
bitmaps in wxEditableListBox.
This commit is contained in:
Artur Wieczorek
2015-08-08 11:48:21 +02:00
committed by Vadim Zeitlin
parent 8e9c327221
commit 75467841ee
4 changed files with 27 additions and 0 deletions

22
art/edit.xpm Normal file
View File

@@ -0,0 +1,22 @@
/* XPM */
static const char* const edit_xpm[] = {
"16 16 3 1",
" c None",
". c #000000",
"+ c #00007F",
" ",
" ",
" .. .. ",
" . ",
" . ",
" ++++ . ++++ ",
" ++ . ++ ++",
" +++++ . ++++++",
" ++ ++ . ++ ",
" ++ ++ . ++ ++",
" +++++ . ++++ ",
" . ",
" . ",
" .. .. ",
" ",
" "};