75467841ee
"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.
23 lines
429 B
C
23 lines
429 B
C
/* XPM */
|
|
static const char* const edit_xpm[] = {
|
|
"16 16 3 1",
|
|
" c None",
|
|
". c #000000",
|
|
"+ c #00007F",
|
|
" ",
|
|
" ",
|
|
" .. .. ",
|
|
" . ",
|
|
" . ",
|
|
" ++++ . ++++ ",
|
|
" ++ . ++ ++",
|
|
" +++++ . ++++++",
|
|
" ++ ++ . ++ ",
|
|
" ++ ++ . ++ ++",
|
|
" +++++ . ++++ ",
|
|
" . ",
|
|
" . ",
|
|
" .. .. ",
|
|
" ",
|
|
" "};
|