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
c9ea7bd6
Commit
c9ea7bd6
authored
Sep 18, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Name changed to sev
parent
036302d5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
515 deletions
+0
-515
xtt/lib/xtt/gtk/xtt_dshist_gtk.cpp
xtt/lib/xtt/gtk/xtt_dshist_gtk.cpp
+0
-90
xtt/lib/xtt/gtk/xtt_dshist_gtk.h
xtt/lib/xtt/gtk/xtt_dshist_gtk.h
+0
-56
xtt/lib/xtt/src/xtt_dshist.cpp
xtt/lib/xtt/src/xtt_dshist.cpp
+0
-258
xtt/lib/xtt/src/xtt_dshist.h
xtt/lib/xtt/src/xtt_dshist.h
+0
-111
No files found.
xtt/lib/xtt/gtk/xtt_dshist_gtk.cpp
deleted
100644 → 0
View file @
036302d5
/*
* Proview $Id: xtt_dshist_gtk.cpp,v 1.1 2008-07-17 11:20:33 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the program, if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "flow_std.h"
#include <stdio.h>
#include <stdlib.h>
#include <vector.h>
#include <gtk/gtk.h>
#include "pwr.h"
#include "pwr_baseclasses.h"
#include "rt_gdh.h"
#include "rt_gdh_msg.h"
#include "co_cdh.h"
#include "co_time.h"
#include "co_wow_gtk.h"
#include "rt_xnav_msg.h"
#include "flow.h"
#include "flow_browctx.h"
#include "flow_browapi.h"
#include "glow_growctx.h"
#include "glow_growapi.h"
#include "glow_curvectx.h"
#include "glow_curveapi.h"
#include "xtt_xnav.h"
#include "xtt_dshist_gtk.h"
#include "ge_curve_gtk.h"
XttDsHistGtk
::
XttDsHistGtk
(
void
*
parent_ctx
,
GtkWidget
*
parent_wid
,
char
*
name
,
GtkWidget
**
w
,
pwr_tOid
*
xn_oid
,
pwr_tOName
*
xn_aname
,
sevcli_tCtx
xn_scctx
,
int
*
sts
)
:
XttDsHist
(
parent_ctx
,
name
,
xn_oid
,
xn_aname
,
xn_scctx
,
sts
),
parent_widget
(
parent_wid
)
{
char
title
[
250
];
if
(
EVEN
(
*
sts
))
// Error from XttDsHist
return
;
*
sts
=
XNAV__SUCCESS
;
curve
=
new
GeCurveGtk
(
this
,
parent_widget
,
title
,
NULL
,
gcd
,
0
);
curve
->
close_cb
=
dshist_close_cb
;
curve
->
help_cb
=
dshist_help_cb
;
curve
->
higher_res_cb
=
dshist_higher_res_cb
;
curve
->
lower_res_cb
=
dshist_lower_res_cb
;
wow
=
new
CoWowGtk
(
parent_widget
);
timerid
=
wow
->
timer_new
();
timerid
->
add
(
1000
,
dshist_scan
,
this
);
}
XttDsHistGtk
::~
XttDsHistGtk
()
{
timerid
->
remove
();
delete
curve
;
}
xtt/lib/xtt/gtk/xtt_dshist_gtk.h
deleted
100644 → 0
View file @
036302d5
/*
* Proview $Id: xtt_dshist_gtk.h,v 1.1 2008-07-17 11:20:33 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the program, if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef xtt_dshist_gtk_h
#define xtt_dshist_gtk_h
/* xtt_dshist_gtk.h -- DsHist curves */
#ifndef xtt_dshist_h
# include "xtt_dshist.h"
#endif
class
XttDsHistGtk
:
public
XttDsHist
{
public:
GtkWidget
*
parent_widget
;
//!< Parent widget.
XttDsHistGtk
(
void
*
xn_parent_ctx
,
GtkWidget
*
xn_parent_wid
,
char
*
xn_name
,
GtkWidget
**
w
,
pwr_tOid
*
xn_oid
,
pwr_tOName
*
xn_aname
,
sevcli_tCtx
xn_scctx
,
int
*
sts
);
~
XttDsHistGtk
();
};
#endif
xtt/lib/xtt/src/xtt_dshist.cpp
deleted
100644 → 0
View file @
036302d5
/*
* Proview $Id: xtt_dshist.cpp,v 1.2 2008-07-18 11:35:55 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the program, if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "flow_std.h"
#include <stdio.h>
#include <stdlib.h>
#include <vector.h>
#include "pwr.h"
#include "pwr_baseclasses.h"
#include "rt_gdh.h"
#include "rt_gdh_msg.h"
#include "co_cdh.h"
#include "co_time.h"
#include "co_wow.h"
#include "rt_sev_msg.h"
#include "flow.h"
#include "flow_browctx.h"
#include "flow_browapi.h"
#include "glow_growctx.h"
#include "glow_growapi.h"
#include "glow_curvectx.h"
#include "glow_curveapi.h"
#include "xtt_xnav.h"
#include "xtt_dshist.h"
#include "ge_curve.h"
XttDsHist
::
XttDsHist
(
void
*
parent_ctx
,
char
*
name
,
pwr_tOid
*
xn_oid
,
pwr_tOName
*
xn_aname
,
sevcli_tCtx
xn_scctx
,
int
*
sts
)
:
xnav
(
parent_ctx
),
gcd
(
0
),
curve
(
0
),
rows
(
0
),
vsize
(
0
),
timerid
(
0
),
close_cb
(
0
),
help_cb
(
0
),
first_scan
(
1
),
scctx
(
xn_scctx
),
oid
(
xn_oid
[
0
])
{
strncpy
(
aname
,
xn_aname
[
0
],
sizeof
(
aname
));
get_data
(
sts
,
pwr_cNTime
,
pwr_cNTime
);
if
(
EVEN
(
*
sts
))
return
;
cdh_StrncpyCutOff
(
title
,
name
,
sizeof
(
title
),
1
);
}
XttDsHist
::~
XttDsHist
()
{
}
int
XttDsHist
::
get_data
(
pwr_tStatus
*
sts
,
pwr_tTime
from
,
pwr_tTime
to
)
{
pwr_tTime
*
tbuf
;
void
*
vbuf
;
pwr_tDeltaTime
trange
;
sevcli_get_itemdata
(
sts
,
scctx
,
oid
,
aname
,
from
,
to
,
1000
,
&
tbuf
,
&
vbuf
,
&
rows
,
&
vtype
,
&
vsize
);
if
(
EVEN
(
*
sts
))
return
0
;
// Create data for time axis
gcd
=
new
GeCurveData
(
curve_eDataType_DsTrend
);
gcd
->
data
[
0
]
=
(
double
*
)
calloc
(
1
,
8
*
rows
);
for
(
int
i
=
0
;
i
<
rows
;
i
++
)
gcd
->
data
[
0
][
i
]
=
tbuf
[
i
].
tv_sec
;
strcpy
(
gcd
->
name
[
0
],
"Time"
);
gcd
->
axis_type
[
0
]
=
curve_eAxis_x
;
strcpy
(
gcd
->
format
[
0
],
"%10t"
);
strcpy
(
gcd
->
name
[
1
],
aname
);
gcd
->
data
[
1
]
=
(
double
*
)
calloc
(
1
,
8
*
rows
);
for
(
int
i
=
0
;
i
<
rows
;
i
++
)
{
switch
(
vtype
)
{
case
pwr_eType_Int64
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_Int32
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_Int16
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_Int8
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_UInt64
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tUInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_UInt32
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tUInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_UInt16
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tUInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_UInt8
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tUInt32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_Float32
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tFloat32
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_Float64
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tFloat64
*
)
vbuf
)[
i
];
break
;
case
pwr_eType_Boolean
:
gcd
->
data
[
1
][
i
]
=
((
pwr_tBoolean
*
)
vbuf
)[
i
];
break
;
default:
*
sts
=
SEV__CURVETYPE
;
return
0
;
}
}
free
(
tbuf
);
free
(
vbuf
);
gcd
->
axis_type
[
1
]
=
curve_eAxis_y
;
gcd
->
cols
=
1
+
1
;
gcd
->
rows
=
rows
;
gcd
->
get_borders
();
gcd
->
get_default_axis
();
if
(
to
.
tv_sec
!=
0
&&
from
.
tv_sec
!=
0
)
{
time_Adiff
(
&
trange
,
&
to
,
&
from
);
if
(
time_DToFloat
(
0
,
&
trange
)
<
600
)
strcpy
(
gcd
->
format
[
0
],
"%10t"
);
else
strcpy
(
gcd
->
format
[
0
],
"%11t"
);
}
else
strcpy
(
gcd
->
format
[
0
],
"%11t"
);
gcd
->
select_color
(
0
);
if
(
curve
)
{
curve
->
set_curvedata
(
gcd
);
// This will free the old gcd
curve
->
configure_curves
();
curve
->
configure_axes
();
}
*
sts
=
SEV__SUCCESS
;
return
1
;
}
void
XttDsHist
::
pop
()
{
curve
->
pop
();
}
void
XttDsHist
::
dshist_close_cb
(
void
*
ctx
)
{
XttDsHist
*
dshist
=
(
XttDsHist
*
)
ctx
;
if
(
dshist
->
close_cb
)
(
dshist
->
close_cb
)(
dshist
->
xnav
,
dshist
);
else
delete
dshist
;
}
void
XttDsHist
::
dshist_higher_res_cb
(
void
*
ctx
)
{
XttDsHist
*
dshist
=
(
XttDsHist
*
)
ctx
;
double
ll_x
,
ll_y
,
ur_x
,
ur_y
;
pwr_tTime
t_low
,
t_high
;
pwr_tStatus
sts
;
dshist
->
curve
->
measure_window
(
&
ll_x
,
&
ll_y
,
&
ur_x
,
&
ur_y
);
t_low
.
tv_sec
=
int
(
dshist
->
gcd
->
min_value_axis
[
0
]
+
ll_x
/
200
*
(
dshist
->
gcd
->
max_value_axis
[
0
]
-
dshist
->
gcd
->
min_value_axis
[
0
]));
t_low
.
tv_nsec
=
0
;
t_high
.
tv_sec
=
int
(
dshist
->
gcd
->
min_value_axis
[
0
]
+
ur_x
/
200
*
(
dshist
->
gcd
->
max_value_axis
[
0
]
-
dshist
->
gcd
->
min_value_axis
[
0
]));
t_high
.
tv_nsec
=
0
;
{
char
s1
[
40
],
s2
[
40
];
time_AtoAscii
(
&
t_low
,
time_eFormat_NumDateAndTime
,
s1
,
sizeof
(
s1
));
time_AtoAscii
(
&
t_high
,
time_eFormat_NumDateAndTime
,
s2
,
sizeof
(
s2
));
printf
(
"Low: %s, High: %s
\n
"
,
s1
,
s2
);
}
dshist
->
get_data
(
&
sts
,
t_low
,
t_high
);
}
void
XttDsHist
::
dshist_lower_res_cb
(
void
*
ctx
)
{
XttDsHist
*
dshist
=
(
XttDsHist
*
)
ctx
;
double
ll_x
,
ll_y
,
ur_x
,
ur_y
;
pwr_tTime
t_low
,
t_high
;
pwr_tStatus
sts
;
dshist
->
curve
->
measure_window
(
&
ll_x
,
&
ll_y
,
&
ur_x
,
&
ur_y
);
t_low
.
tv_sec
=
int
(
dshist
->
gcd
->
min_value_axis
[
0
]
-
5
*
(
dshist
->
gcd
->
max_value_axis
[
0
]
-
dshist
->
gcd
->
min_value_axis
[
0
]));
t_low
.
tv_nsec
=
0
;
t_high
.
tv_sec
=
int
(
dshist
->
gcd
->
max_value_axis
[
0
]
+
5
*
(
dshist
->
gcd
->
max_value_axis
[
0
]
-
dshist
->
gcd
->
min_value_axis
[
0
]));
t_high
.
tv_nsec
=
0
;
{
char
s1
[
40
],
s2
[
40
];
time_AtoAscii
(
&
t_low
,
time_eFormat_NumDateAndTime
,
s1
,
sizeof
(
s1
));
time_AtoAscii
(
&
t_high
,
time_eFormat_NumDateAndTime
,
s2
,
sizeof
(
s2
));
printf
(
"Low: %s, High: %s
\n
"
,
s1
,
s2
);
}
dshist
->
get_data
(
&
sts
,
t_low
,
t_high
);
}
void
XttDsHist
::
dshist_help_cb
(
void
*
ctx
)
{
XttDsHist
*
dshist
=
(
XttDsHist
*
)
ctx
;
if
(
dshist
->
help_cb
)
(
dshist
->
help_cb
)(
dshist
->
xnav
,
"dshistwindow"
);
}
void
XttDsHist
::
dshist_scan
(
void
*
data
)
{
XttDsHist
*
dshist
=
(
XttDsHist
*
)
data
;
if
(
dshist
->
timerid
)
dshist
->
timerid
->
add
(
1000
,
dshist_scan
,
dshist
);
}
xtt/lib/xtt/src/xtt_dshist.h
deleted
100644 → 0
View file @
036302d5
/*
* Proview $Id: xtt_dshist.h,v 1.1 2008-07-17 11:20:33 claes Exp $
* Copyright (C) 2005 SSAB Oxelösund AB.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the program, if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef xtt_dshist_h
#define xtt_dshist_h
/* xtt_dshist.h -- Dshist curves */
#ifndef pwr_h
# include "pwr.h"
#endif
#ifndef ge_curve_h
# include "ge_curve.h"
#endif
#ifndef rt_sevcli_h
# include "rt_sevcli.h"
#endif
/*! \file xtt_dshist.h
\brief Contains the XttDsHist class. */
/*! \addtogroup Xtt */
/*@{*/
#define XTT_DSHIST_MAX 20
class
CoWow
;
class
CoWowTimer
;
//! Window that displays dshist curve in a DsDsHistCurve object.
/*!
A DsDsHistCurve references a data array for the time axis, and up to 10 data arrays
with stored data. These arrays are displayed in the XttDsHist window. The measurement
of these curves are triggered manually, on a digital signal, or on a level of one of
the attributes. When the measurement is completed this is signaled with the New attribute
in the DsDsHistCurve object. The XttDsHist window then has to read the new data and
reconfigure the curves. XttDsHist uses the GeCurve class to display the curves.
*/
class
XttDsHist
{
public:
void
*
xnav
;
//!< Pointer to parent XNav.
GeCurveData
*
gcd
;
//!< Curve data for GeCurve object.
GeCurve
*
curve
;
//!< Curve window.
int
rows
;
//!< Max number of points in curves.
pwr_eType
vtype
;
unsigned
int
vsize
;
CoWowTimer
*
timerid
;
//!< Time id for scan.
void
(
*
close_cb
)(
void
*
,
XttDsHist
*
);
//!< Close callback to parent.
void
(
*
help_cb
)(
void
*
,
char
*
);
//!< Open help window.
bool
first_scan
;
//!< Indicates that this is the first scan.
char
title
[
250
];
//!< Window title
sevcli_tCtx
scctx
;
pwr_tOName
aname
;
pwr_tOid
oid
;
CoWow
*
wow
;
//! Constructor
XttDsHist
(
void
*
xn_parent_ctx
,
char
*
xn_name
,
pwr_tOid
*
xn_oid
,
pwr_tOName
*
xn_aname
,
sevcli_tCtx
xn_scctx
,
int
*
sts
);
//! Destructor
virtual
~
XttDsHist
();
//! Pop dshist window.
void
pop
();
int
get_data
(
pwr_tStatus
*
sts
,
pwr_tTime
from
,
pwr_tTime
to
);
static
void
dshist_close_cb
(
void
*
ctx
);
static
void
dshist_higher_res_cb
(
void
*
ctx
);
static
void
dshist_lower_res_cb
(
void
*
ctx
);
static
void
dshist_help_cb
(
void
*
ctx
);
static
void
dshist_scan
(
void
*
data
);
};
/*@}*/
#endif
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