Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
lizhongxiao
OpenXG-RAN
Commits
e4fd2296
Commit
e4fd2296
authored
May 19, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gui/timeline.c click event
parent
5c5f5470
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
common/utils/T/tracer/gui/gui.h
common/utils/T/tracer/gui/gui.h
+1
-0
common/utils/T/tracer/gui/timeline.c
common/utils/T/tracer/gui/timeline.c
+4
-0
No files found.
common/utils/T/tracer/gui/gui.h
View file @
e4fd2296
...
...
@@ -88,6 +88,7 @@ int new_color(gui *gui, char *color);
* - resize { int: width }
* - scrollup { int [3]: x, y, key_modifiers }
* - scrolldown { int [3]: x, y, key_modifiers }
* - click { int: button }
*/
/* same type as in gui_defs.h */
...
...
common/utils/T/tracer/gui/timeline.c
View file @
e4fd2296
...
...
@@ -74,6 +74,10 @@ static void button(gui *_g, widget *_this, int x, int y,
d
[
2
]
=
key_modifiers
;
gui_notify
(
g
,
"scrolldown"
,
_this
,
d
);
}
/* button 1/2/3 */
if
((
button
==
1
||
button
==
2
||
button
==
3
)
&&
up
==
0
)
{
gui_notify
(
g
,
"click"
,
_this
,
&
button
);
}
}
/*************************************************************************/
...
...
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