Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
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
Esteban Blanc
proview
Commits
178fdc3a
Commit
178fdc3a
authored
Jan 11, 2017
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wb_gtk and rt_xtt_gtk -m option to show methods added
parent
b597a164
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
4 deletions
+12
-4
wb/exe/wb/gtk/wb_gtk.cpp
wb/exe/wb/gtk/wb_gtk.cpp
+4
-0
wb/lib/wb/src/wb_erep.h
wb/lib/wb/src/wb_erep.h
+1
-1
wb/lib/wb/src/wb_wnav_command.cpp
wb/lib/wb/src/wb_wnav_command.cpp
+1
-2
xtt/exe/rt_xtt/src/xtt_main.cpp
xtt/exe/rt_xtt/src/xtt_main.cpp
+5
-0
xtt/lib/xtt/src/xtt_xnav.h
xtt/lib/xtt/src/xtt_xnav.h
+1
-1
No files found.
wb/exe/wb/gtk/wb_gtk.cpp
View file @
178fdc3a
...
...
@@ -107,6 +107,10 @@ WVsel *WbGtk::vsel_new( pwr_tStatus *status, const char *name, ldh_tWBContext ld
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
argc
>=
2
&&
strcmp
(
argv
[
1
],
"-m"
)
==
0
)
{
wb_erep
::
printMethods
();
exit
(
0
);
}
gtk_init
(
&
argc
,
&
argv
);
...
...
wb/lib/wb/src/wb_erep.h
View file @
178fdc3a
...
...
@@ -132,9 +132,9 @@ public:
void
setRefMerep
(
wb_merep
*
merep
);
void
resetRefMerep
();
bool
refMerepOccupied
()
{
return
m_ref_merep_occupied
;}
void
printMethods
();
bool
check_lock
(
char
*
name
,
ldh_eVolDb
type
);
void
checkVolumes
(
pwr_tStatus
*
sts
,
char
*
nodeconfigname
);
static
void
printMethods
();
static
void
volumeNameToFilename
(
pwr_tStatus
*
sts
,
char
*
name
,
char
*
filename
);
private:
...
...
wb/lib/wb/src/wb_wnav_command.cpp
View file @
178fdc3a
...
...
@@ -2142,8 +2142,7 @@ static int wnav_show_func( void *client_data,
else
if
(
cdh_NoCaseStrncmp
(
arg1_str
,
"METHODS"
,
strlen
(
arg1_str
))
==
0
)
{
// Command is "SHOW METHODS"
wb_erep
*
erep
=
*
(
wb_env
*
)
wnav
->
wbctx
;
erep
->
printMethods
();
wb_erep
::
printMethods
();
}
else
if
(
cdh_NoCaseStrncmp
(
arg1_str
,
"NEXT_FREE_USER_VID"
,
strlen
(
arg1_str
))
==
0
)
{
...
...
xtt/exe/rt_xtt/src/xtt_main.cpp
View file @
178fdc3a
...
...
@@ -561,6 +561,11 @@ Xtt::Xtt( int *argc, char **argv[], int *return_sts) :
static
char
display
[
80
];
static
char
display_opt
[
20
]
=
"--display"
;
if
(
*
argc
>
1
&&
strcmp
(
(
*
argv
)[
1
],
"-m"
)
==
0
)
{
XNav
::
print_methods
();
exit
(
0
);
}
*
return_sts
=
XNAV__SUCCESS
;
strcpy
(
opplace_str
,
""
);
...
...
xtt/lib/xtt/src/xtt_xnav.h
View file @
178fdc3a
...
...
@@ -571,9 +571,9 @@ class XNav {
int
search_next
();
int
create_object
(
char
*
classname
,
char
*
name
);
int
delete_object
(
char
*
name
);
void
print_methods
();
void
open_keyboard
(
void
*
owner
,
keyboard_eKeymap
keymap
,
int
type
);
void
close_keyboard
(
int
action
);
static
void
print_methods
();
static
pwr_tStatus
get_instance_classgraph
(
char
*
instance_str
,
pwr_tFileName
filename
);
// Table module member functions
...
...
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