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
78ab3e22
Commit
78ab3e22
authored
Oct 28, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start wizard for empty rootvolume
parent
506fa2aa
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
12 deletions
+26
-12
wb/lib/wb/gtk/wb_wtt_gtk.cpp
wb/lib/wb/gtk/wb_wtt_gtk.cpp
+12
-7
wb/lib/wb/src/wb_wtt.cpp
wb/lib/wb/src/wb_wtt.cpp
+12
-3
wb/lib/wb/src/wb_wtt.h
wb/lib/wb/src/wb_wtt.h
+2
-2
No files found.
wb/lib/wb/gtk/wb_wtt_gtk.cpp
View file @
78ab3e22
/*
* Proview $Id: wb_wtt_gtk.cpp,v 1.2
6 2008-10-15 06:04:55
claes Exp $
* Proview $Id: wb_wtt_gtk.cpp,v 1.2
7 2008-10-28 09:50:20
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -2714,17 +2714,22 @@ WttGtk::WttGtk(
wnavnode
->
volume_attached
(
wbctx
,
ldhses
,
0
);
}
if
(
wb_type
==
wb_eType_Directory
)
{
if
(
wb_type
==
wb_eType_Directory
||
wb_type
==
wb_eType_Volume
)
{
// Start configuration wizard if volume is empty
pwr_tOid
oid
;
sts
=
ldh_GetRootList
(
ldhses
,
&
oid
);
if
(
EVEN
(
sts
))
{
pwr_tCid
vcid
;
if
(
wbctx
&&
volid
)
{
sts
=
ldh_GetVolumeClass
(
wbctx
,
volid
,
&
vcid
);
if
(
vcid
==
pwr_eClass_RootVolume
||
vcid
==
pwr_eClass_DirectoryVolume
)
{
wnav
->
wow
->
HideWarranty
();
// Warranty window is hidden behind the wizard
set_edit
();
start_wizard
(
this
);
// XtAppAddWorkProc( XtWidgetToApplicationContext(toplevel),
// (XtWorkProc)start_wizard, this) ;
start_wizard
(
this
,
vcid
);
}
}
}
}
...
...
wb/lib/wb/src/wb_wtt.cpp
View file @
78ab3e22
/*
* Proview $Id: wb_wtt.cpp,v 1.4
2 2008-10-15 06:04:5
5 claes Exp $
* Proview $Id: wb_wtt.cpp,v 1.4
3 2008-10-28 09:54:1
5 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -101,11 +101,20 @@ int Wtt::format_selection( void *ctx, pwr_sAttrRef attrref,
return
0
;
}
int
Wtt
::
start_wizard
(
Wtt
*
wtt
)
int
Wtt
::
start_wizard
(
Wtt
*
wtt
,
pwr_tCid
vcid
)
{
pwr_tCmd
cmd
;
switch
(
vcid
)
{
case
pwr_eClass_DirectoryVolume
:
strcpy
(
cmd
,
"@$pwr_exe/wb_wiz_directoryvolume"
);
break
;
case
pwr_eClass_RootVolume
:
strcpy
(
cmd
,
"@$pwr_exe/wb_wiz_rootvolume"
);
break
;
default:
return
1
;
}
wtt
->
wnav
->
command
(
cmd
);
return
1
;
}
...
...
wb/lib/wb/src/wb_wtt.h
View file @
78ab3e22
/*
* Proview $Id: wb_wtt.h,v 1.2
0 2008-10-09 08:36:12
claes Exp $
* Proview $Id: wb_wtt.h,v 1.2
1 2008-10-28 09:54:15
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -285,7 +285,7 @@ class Wtt : public WUtility {
static
int
format_selection
(
void
*
ctx
,
pwr_sAttrRef
attrref
,
char
**
value_return
,
int
is_class
,
int
is_attr
,
wnav_eSelectionFormat
format
);
static
int
start_wizard
(
Wtt
*
wtt
);
static
int
start_wizard
(
Wtt
*
wtt
,
pwr_tCid
vcid
);
static
void
set_twowindows_cb
(
void
*
wtt
,
int
two
,
int
display_w1
,
int
display_w2
);
static
pwr_tStatus
ldh_this_session_cb
(
void
*
ctx
,
ldh_sEvent
*
event
);
...
...
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