Commit fadeefff authored by claes's avatar claes

Namechange dshist->sevhist

parent e5d5aa17
/* /*
* Proview $Id: wb_c_dshist.cpp,v 1.1 2007-01-04 07:29:03 claes Exp $ * Proview $Id: wb_c_sevhist.cpp,v 1.1 2008-09-18 15:01:13 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**/ **/
/* wb_c_dshist.c -- work bench methods of the DsHist class. */ /* wb_c_sevhist.c -- work bench methods of the SevHist class. */
#include <string.h> #include <string.h>
#include "wb_pwrs.h" #include "wb_pwrs.h"
...@@ -43,7 +43,7 @@ static pwr_tStatus PostCreate ( ...@@ -43,7 +43,7 @@ static pwr_tStatus PostCreate (
pwr_sAttrRef Attribute; pwr_sAttrRef Attribute;
/* /*
If father of DsHist has an "ActualValue" attribute, then make this DsHist If father of SevHist has an "ActualValue" attribute, then make this SevHist
refer to this attribute. refer to this attribute.
*/ */
...@@ -81,7 +81,7 @@ static pwr_tStatus PostMove ( ...@@ -81,7 +81,7 @@ static pwr_tStatus PostMove (
pwr_sAttrRef Attribute; pwr_sAttrRef Attribute;
/* /*
If father of ASup has an "ActualValue" attribute, then make this ASup If father of SevHist has an "ActualValue" attribute, then make this ASup
refer to this attribute. refer to this attribute.
*/ */
...@@ -107,7 +107,7 @@ static pwr_tStatus PostMove ( ...@@ -107,7 +107,7 @@ static pwr_tStatus PostMove (
Every method to be exported to the workbench should be registred here. Every method to be exported to the workbench should be registred here.
\*----------------------------------------------------------------------------*/ \*----------------------------------------------------------------------------*/
pwr_dExport pwr_BindMethods(DsHist) = { pwr_dExport pwr_BindMethods(SevHist) = {
pwr_BindMethod(PostCreate), pwr_BindMethod(PostCreate),
pwr_BindMethod(PostMove), pwr_BindMethod(PostMove),
pwr_NullMethod pwr_NullMethod
......
/* /*
* Proview $Id: xtt_xnav_gtk.cpp,v 1.7 2008-07-17 11:23:07 claes Exp $ * Proview $Id: xtt_xnav_gtk.cpp,v 1.8 2008-09-18 14:56:57 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -60,7 +60,7 @@ typedef void *Widget; ...@@ -60,7 +60,7 @@ typedef void *Widget;
#include "xtt_ge_gtk.h" #include "xtt_ge_gtk.h"
#include "xtt_block_gtk.h" #include "xtt_block_gtk.h"
#include "xtt_trend_gtk.h" #include "xtt_trend_gtk.h"
#include "xtt_dshist_gtk.h" #include "xtt_sevhist_gtk.h"
#include "xtt_fast_gtk.h" #include "xtt_fast_gtk.h"
#include "xtt_xattone_gtk.h" #include "xtt_xattone_gtk.h"
#include "xtt_clog_gtk.h" #include "xtt_clog_gtk.h"
...@@ -218,12 +218,12 @@ XttTrend *XNavGtk::xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef * ...@@ -218,12 +218,12 @@ XttTrend *XNavGtk::xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *
return new XttTrendGtk( this, parent_wid, name, &w, objar, plotgroup, sts); return new XttTrendGtk( this, parent_wid, name, &w, objar, plotgroup, sts);
} }
XttDsHist *XNavGtk::xttdshist_new( char *name, pwr_tOid *oid, pwr_tOName *aname, XttSevHist *XNavGtk::xttsevhist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts) sevcli_tCtx scctx, pwr_tStatus *sts)
{ {
GtkWidget *w; GtkWidget *w;
return new XttDsHistGtk( this, parent_wid, name, &w, oid, aname, scctx, sts); return new XttSevHistGtk( this, parent_wid, name, &w, oid, aname, scctx, sts);
} }
XttFast *XNavGtk::xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts) XttFast *XNavGtk::xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts)
......
/* /*
* Proview $Id: xtt_xnav_gtk.h,v 1.5 2008-07-17 11:23:07 claes Exp $ * Proview $Id: xtt_xnav_gtk.h,v 1.6 2008-09-18 14:56:57 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -58,8 +58,8 @@ class XNavGtk : public XNav { ...@@ -58,8 +58,8 @@ class XNavGtk : public XNav {
Op *op_new( char *opplace, pwr_tStatus *sts); Op *op_new( char *opplace, pwr_tStatus *sts);
XttTrend *xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *plotgroup, XttTrend *xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *plotgroup,
pwr_tStatus *sts); pwr_tStatus *sts);
XttDsHist *xttdshist_new( char *name, pwr_tOid *oid, pwr_tOName *aname, XttSevHist *xttsevhist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts); sevcli_tCtx scctx, pwr_tStatus *sts);
XttFast *xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts); XttFast *xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts);
XAttOne *xattone_new( pwr_tAttrRef *objar, char *title, unsigned int priv, XAttOne *xattone_new( pwr_tAttrRef *objar, char *title, unsigned int priv,
pwr_tStatus *sts); pwr_tStatus *sts);
......
/* /*
* Proview $Id: xtt_xnav.h,v 1.25 2008-07-17 11:23:07 claes Exp $ * Proview $Id: xtt_xnav.h,v 1.26 2008-09-18 14:58:26 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -91,7 +91,7 @@ class XAtt; ...@@ -91,7 +91,7 @@ class XAtt;
class XCrr; class XCrr;
class Block; class Block;
class XttTrend; class XttTrend;
class XttDsHist; class XttSevHist;
class XttFast; class XttFast;
class XAttOne; class XAttOne;
class GeCurve; class GeCurve;
...@@ -340,7 +340,7 @@ class XNav { ...@@ -340,7 +340,7 @@ class XNav {
virtual Op *op_new( char *opplace, pwr_tStatus *sts) {return 0;} virtual Op *op_new( char *opplace, pwr_tStatus *sts) {return 0;}
virtual XttTrend *xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *plotgroup, virtual XttTrend *xtttrend_new( char *name, pwr_tAttrRef *objar, pwr_tAttrRef *plotgroup,
pwr_tStatus *sts) {return 0;} pwr_tStatus *sts) {return 0;}
virtual XttDsHist *xttdshist_new( char *name, pwr_tOid *oid, pwr_tOName *aname, virtual XttSevHist *xttsevhist_new( char *name, pwr_tOid *oid, pwr_tOName *aname,
sevcli_tCtx scctx, pwr_tStatus *sts) {return 0;} sevcli_tCtx scctx, pwr_tStatus *sts) {return 0;}
virtual XttFast *xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts) {return 0;} virtual XttFast *xttfast_new( char *name, pwr_tAttrRef *objar, pwr_tStatus *sts) {return 0;}
virtual XAttOne *xattone_new( pwr_tAttrRef *objar, char *title, unsigned int priv, virtual XAttOne *xattone_new( pwr_tAttrRef *objar, char *title, unsigned int priv,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment