Commit 864100f2 authored by Clément Stenac's avatar Clément Stenac

Backport [15355]

parent a56b5e7c
......@@ -83,6 +83,7 @@ EXTRA_DIST += \
bitmaps/speaker.xpm \
bitmaps/stop.xpm \
bitmaps/trash.xpm \
bitmaps/edit.xpm \
bitmaps/type_afile.xpm \
bitmaps/type_card.xpm \
bitmaps/type_cdda.xpm \
......
/* XPM */
static char * edit_xpm[] = {
"16 16 44 1",
" g None",
". g #999999",
"+ g #E9E9E9",
"@ g #898989",
"# g #B6B6B6",
"$ g #606060",
"% g #EBEBEB",
"& g #BCBCBC",
"* g #B8B8B8",
"= g #E7E7E7",
"- g #B1B1B1",
"; g #FFFFFF",
"> g #ECECEC",
", g #D3D3D3",
"' g #E8E8E8",
") g #B0B0B0",
"! g #878787",
"~ g #DBDBDB",
"{ g #CCCCCC",
"] g #B7B7B7",
"^ g #8A8A8A",
"/ g #AEAEAE",
"( g #E4E4E4",
"_ g #ABABAB",
": g #A5A5A5",
"< g #717171",
"[ g #CBCBCB",
"} g #757575",
"| g #5E5E5E",
"1 g #8F8F8F",
"2 g #868686",
"3 g #424242",
"4 g #595959",
"5 g #9D9D9D",
"6 g #D6D6D6",
"7 g #C4C4C4",
"8 g #000000",
"9 g #636363",
"0 g #8C8C8C",
"a g #CACACA",
"b g #DADADA",
"c g #B2B2B2",
"d g #EAEAEA",
"e g #EEEEEE",
" ",
" . . . . . ",
" .+.+.+.+.+. ",
" @.#.#.#.#.#.$$ ",
" @%.&.*.*.*.$=-$",
" @;>>>>>>>,$')!$",
" @;~{{{{{]$')^$ ",
" @;>>>>>,$=/!$ ",
" @;~{{{]$(_!$@ ",
" @;>>>%$(:^$<@ ",
" @;~{[}|/@$12@ ",
" @;>>+$34$56/@ ",
" @;~[78$90abc@ ",
" @;>%dd+%d%>c@ ",
" @eccccccc-cc@ ",
" @@@@@@@@@@@@@ "};
......@@ -31,6 +31,7 @@
#include "bitmaps/pause.xpm"
#include "bitmaps/stop.xpm"
#include "bitmaps/trash.xpm"
#include "bitmaps/edit.xpm"
enum
{
......@@ -100,7 +101,7 @@ VLMBroadcastStreamPanel::VLMBroadcastStreamPanel( intf_thread_t* _p_intf,
box_sizer->Add( edit_button, 0, wxEXPAND | wxALL , 5 );
wxBitmapButton *trash_button = new wxBitmapButton( this, BTrash_Event,
wxBitmap( trash_xpm ) );
wxBitmap( edit_xpm ) );
trash_button->SetToolTip( wxU( _("Delete" ) ) );
box_sizer->Add( trash_button, 0, wxEXPAND | wxALL , 5 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment