Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d416f2c5
Commit
d416f2c5
authored
Apr 25, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add edit button for VLM (Closes:#530)
parent
5e56e467
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
1 deletion
+66
-1
modules/gui/wxwidgets/Modules.am
modules/gui/wxwidgets/Modules.am
+1
-0
modules/gui/wxwidgets/bitmaps/edit.xpm
modules/gui/wxwidgets/bitmaps/edit.xpm
+63
-0
modules/gui/wxwidgets/dialogs/vlm/vlm_streampanel.cpp
modules/gui/wxwidgets/dialogs/vlm/vlm_streampanel.cpp
+2
-1
No files found.
modules/gui/wxwidgets/Modules.am
View file @
d416f2c5
...
...
@@ -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 \
...
...
modules/gui/wxwidgets/bitmaps/edit.xpm
0 → 100644
View file @
d416f2c5
/* 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@ ",
" @@@@@@@@@@@@@ "};
modules/gui/wxwidgets/dialogs/vlm/vlm_streampanel.cpp
View file @
d416f2c5
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment