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
83b906d9
Commit
83b906d9
authored
May 18, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Advanced user set as default in wb and xtt
parent
7a324057
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
4 deletions
+19
-4
wb/changelog.txt
wb/changelog.txt
+1
-0
wb/lib/wb/gtk/wb_wtt_gtk.cpp
wb/lib/wb/gtk/wb_wtt_gtk.cpp
+4
-0
wb/lib/wb/src/wb_wnav.h
wb/lib/wb/src/wb_wnav.h
+1
-1
xtt/changelog.txt
xtt/changelog.txt
+4
-1
xtt/exe/rt_xtt/gtk/rt_xtt_gtk.cpp
xtt/exe/rt_xtt/gtk/rt_xtt_gtk.cpp
+4
-0
xtt/exe/rt_xtt/src/rt_xtt_main.h
xtt/exe/rt_xtt/src/rt_xtt_main.h
+1
-0
xtt/exe/rt_xtt/src/xtt_main.cpp
xtt/exe/rt_xtt/src/xtt_main.cpp
+3
-1
xtt/lib/xtt/src/xtt_xnav.h
xtt/lib/xtt/src/xtt_xnav.h
+1
-1
No files found.
wb/changelog.txt
View file @
83b906d9
...
...
@@ -132,3 +132,4 @@
090515 cs wtt Popup menu on attributes. Methods HelpClass, InsertSelectedObject and ChangeValue added.
090515 cs wtt Bugfix in ConnectGraph method for PlantHier objects.
090518 cs wb Wb method PostRename added and implemented for XttGraph and ProjectReg objects.
090518 cs wb Advanced user set as default in wb.
wb/lib/wb/gtk/wb_wtt_gtk.cpp
View file @
83b906d9
...
...
@@ -1872,6 +1872,8 @@ WttGtk::WttGtk(
strcpy
(
layout_palette
,
"ProjectNavigatorPalette"
);
strcpy
(
title_w1
,
"Volume Configuration"
);
strcpy
(
title_w2
,
"Node Configuration"
);
window_width
=
500
;
window_height
=
400
;
break
;
case
pwr_eClass_ClassVolume
:
case
pwr_eClass_DetachedClassVolume
:
...
...
@@ -2747,6 +2749,8 @@ WttGtk::WttGtk(
}
}
}
if
(
wnav
->
gbl
.
advanced_user
)
g_object_set
(
tools_set_advuser
,
"visible"
,
FALSE
,
NULL
);
menu_setup
();
*
status
=
1
;
...
...
wb/lib/wb/src/wb_wnav.h
View file @
83b906d9
...
...
@@ -169,7 +169,7 @@ class ApplList {
class
WNavGbl
{
public:
WNavGbl
()
:
priv
(
0
),
verify
(
0
),
advanced_user
(
0
),
all_toplevel
(
0
),
bypass
(
0
),
priv
(
0
),
verify
(
0
),
advanced_user
(
1
),
all_toplevel
(
0
),
bypass
(
0
),
show_class
(
1
),
show_alias
(
0
),
show_descrip
(
1
),
show_attrref
(
0
),
show_attrxref
(
0
),
show_objref
(
0
),
show_objxref
(
0
),
show_truedb
(
0
)
{
...
...
xtt/changelog.txt
View file @
83b906d9
...
...
@@ -128,4 +128,7 @@
090305 cs glow Ge color palette fillcolor,bordercolor and textcolor selection changed.
090305 cs xtt Trend method not viewed for $PlantHier with a Trend child object.
090306 cs xtt Language translation of operator window buttons.
090512 cs ge Bugfix in ge editor, navigator palette wasn't destroyed at exit.
\ No newline at end of file
090512 cs ge Bugfix in ge editor, navigator palette wasn't destroyed at exit.
090518 cs xtt More flexible layout of operator buttons. NoFastAvail not used any more.
090518 cs xtt Bugfix in xtt termination. Free in wrong order could cause segfault.
090518 cs xtt Advanced user set as default, not set with option -d.
\ No newline at end of file
xtt/exe/rt_xtt/gtk/rt_xtt_gtk.cpp
View file @
83b906d9
...
...
@@ -971,6 +971,10 @@ XttGtk::XttGtk( int argc, char *argv[], int *return_sts) :
if
(
select_opplace
)
list_opplace
();
if
(
xnav
->
gbl
.
advanced_user
&&
!
no_advanceduser
)
{
xnav
->
gbl
.
advanced_user
=
0
;
g_object_set
(
tools_advuser
,
"visible"
,
FALSE
,
NULL
);
}
xtt_mainloop
();
}
...
...
xtt/exe/rt_xtt/src/rt_xtt_main.h
View file @
83b906d9
...
...
@@ -65,6 +65,7 @@ class Xtt {
XttMethodToolbar
*
methodtoolbar
;
int
select_opplace
;
int
op_close_button
;
int
no_advanceduser
;
Xtt
(
int
argc
,
char
*
argv
[],
int
*
return_sts
);
virtual
~
Xtt
()
{}
...
...
xtt/exe/rt_xtt/src/xtt_main.cpp
View file @
83b906d9
...
...
@@ -449,7 +449,7 @@ void Xtt::activate_help_proview()
}
Xtt
::
Xtt
(
int
argc
,
char
*
argv
[],
int
*
return_sts
)
:
root_item
(
0
),
input_open
(
0
),
command_open
(
0
),
india_ok_cb
(
0
),
queid
(
qcom_cNQid
),
quiet
(
0
),
attach_audio
(
0
),
select_opplace
(
0
),
op_close_button
(
0
)
root_item
(
0
),
input_open
(
0
),
command_open
(
0
),
india_ok_cb
(
0
),
queid
(
qcom_cNQid
),
quiet
(
0
),
attach_audio
(
0
),
select_opplace
(
0
),
op_close_button
(
0
)
,
no_advanceduser
(
0
)
{
pwr_tStatus
sts
;
int
i
;
...
...
@@ -501,6 +501,8 @@ Xtt::Xtt( int argc, char *argv[], int *return_sts) :
select_opplace
=
1
;
else
if
(
strcmp
(
argv
[
i
],
"-c"
)
==
0
)
op_close_button
=
1
;
else
if
(
strcmp
(
argv
[
i
],
"-d"
)
==
0
)
no_advanceduser
=
1
;
else
if
(
strcmp
(
argv
[
i
],
"-u"
)
==
0
&&
i
+
1
<
argc
)
{
char
oname
[
80
];
...
...
xtt/lib/xtt/src/xtt_xnav.h
View file @
83b906d9
...
...
@@ -213,7 +213,7 @@ class XNavGbl {
XNavGbl
()
:
priv
(
0
),
UserObject
(
pwr_cNObjid
),
AlarmAutoLoad
(
0
),
AlarmMessage
(
0
),
AlarmBeep
(
0
),
AlarmReturn
(
0
),
AlarmAck
(
0
),
gdh_started
(
1
),
verify
(
0
),
scantime
(
0.5
),
signal_test_mode
(
0
),
advanced_user
(
0
),
show_truedb
(
0
),
verify
(
0
),
scantime
(
0.5
),
signal_test_mode
(
0
),
advanced_user
(
1
),
show_truedb
(
0
),
show_allattr
(
0
),
no_graph_ratio
(
0
)
{
strcpy
(
version
,
xnav_cVersion
);
strcpy
(
time
,
""
);
...
...
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