JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
CVCounter Class Reference

#include <ClassBox.h>

Public Member Functions

 CVCounter ()
 
virtual ~CVCounter ()
 
virtual void Init ()
 
virtual void Clear ()
 
virtual void SetMax (int m)
 カウンタの最大値(最終目標)を設定
 
virtual void SetFill (int m)
 取り敢えずの目標(最短目標)を設定
 
virtual void SetPos (int p)
 カウンタの現在位置を設定

 
virtual void PutFill ()
 取り敢えずの目標(最短目標)までカウンタを進める.
 
virtual int GetMax ()
 カウンタの最大値(最終目標)を得る
 
virtual int GetFill ()
 取り敢えずの目標(最短目標)を得る.
 
virtual int GetPos ()
 カウンタの現在位置を得る
 
virtual void Start (int m=100, char *tn=NULL)
 カウンタのスタート & タイトル定義
 
virtual void Stop ()
 カウンタのストップ
 
virtual void StepIt (int n=1)
 カウンタのメモリを増やす
 
virtual bool isCanceled ()
 カウンタがオペレータにより,キャンセルされたか
 
virtual void ResetRate (int n, int m)
 nの目盛り幅を mで読み替える.ここでの定義はあまり意味は無い.
 
virtual void SetTitle (char *tn)
 カウンタのタイトルを設定
 
virtual CVCounterGetUsableCounter ()
 現在使用可能な目盛りの有効領域を確保
 
virtual CVCounterMakeChildCounter (int n)
 子カウンタの作成(有効領域を再定義)
 
virtual void DeleteChildCounter ()
 子カウンタの削除(有効領域の無効化)
 

Public Attributes

int max
 カウンタの最大値(0〜)
 
int pos
 カウンタの値
 
int fill
 ローカルターゲット(取り敢えず到達すべき目標)
 
bool cancel
 カウンターがキャンセルされた.
 
bool start
 カウンタはスタートしている
 
const char * title
 

Detailed Description

上位のカウンタークラスを使用する際のアクセスポイントとなる,仮想的なクラス. このクラスのインスタンスを直接使用することは殆ど無い. 例えば,上位クラスとしては CProgressBarDLG を参照せよ.

Definition at line 137 of file ClassBox.h.

Constructor & Destructor Documentation

◆ CVCounter()

CVCounter ( )
inline

Definition at line 148 of file ClassBox.h.

148 {
149 max = 0;
150 pos = 0;
151 fill = 0;
152 title = NULL;
153 cancel = false;
154 start = false;
155 }
int pos
カウンタの値
Definition ClassBox.h:141
int fill
ローカルターゲット(取り敢えず到達すべき目標)
Definition ClassBox.h:142
const char * title
Definition ClassBox.h:145
bool start
カウンタはスタートしている
Definition ClassBox.h:144
int max
カウンタの最大値(0〜)
Definition ClassBox.h:140
bool cancel
カウンターがキャンセルされた.
Definition ClassBox.h:143

References CVCounter::cancel, CVCounter::fill, CVCounter::max, CVCounter::pos, CVCounter::start, and CVCounter::title.

◆ ~CVCounter()

virtual ~CVCounter ( )
inlinevirtual

Definition at line 157 of file ClassBox.h.

157{}

Member Function Documentation

◆ Clear()

virtual void Clear ( )
inlinevirtual

Definition at line 160 of file ClassBox.h.

160{Init();}
virtual void Init()
Definition ClassBox.h:159

References CVCounter::Init().

Here is the call graph for this function:

◆ DeleteChildCounter()

virtual void DeleteChildCounter ( )
inlinevirtual

Definition at line 179 of file ClassBox.h.

Referenced by jbxl::CloseTriSolid(), BREP_SOLID::FreeData(), jbxl::readGraphicFile(), and jbxl::zzSobel().

Here is the caller graph for this function:

◆ GetFill()

virtual int GetFill ( )
inlinevirtual

Definition at line 166 of file ClassBox.h.

References CVCounter::fill.

◆ GetMax()

virtual int GetMax ( )
inlinevirtual

Definition at line 165 of file ClassBox.h.

References CVCounter::max.

◆ GetPos()

virtual int GetPos ( )
inlinevirtual

Definition at line 167 of file ClassBox.h.

References CVCounter::pos.

◆ GetUsableCounter()

◆ Init()

virtual void Init ( )
inlinevirtual

Definition at line 159 of file ClassBox.h.

159{max=pos=fill=0; title=""; cancel=false;};

References CVCounter::cancel, CVCounter::fill, CVCounter::max, CVCounter::pos, and CVCounter::title.

Referenced by CVCounter::Clear().

Here is the caller graph for this function:

◆ isCanceled()

◆ MakeChildCounter()

virtual CVCounter * MakeChildCounter ( int n)
inlinevirtual

Definition at line 178 of file ClassBox.h.

References CVCounter::ResetRate(), and CVCounter::SetMax().

Referenced by jbxl::CloseTriSolid(), BREP_SOLID::FreeData(), jbxl::readGraphicFile(), and jbxl::zzSobel().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ PutFill()

◆ ResetRate()

virtual void ResetRate ( int n,
int m )
inlinevirtual

Definition at line 174 of file ClassBox.h.

References CVCounter::fill, and CVCounter::pos.

Referenced by jbxl::CreateTriSolidFromSTL(), jbxl::CreateTriSolidFromVector(), and CVCounter::MakeChildCounter().

Here is the caller graph for this function:

◆ SetFill()

virtual void SetFill ( int m)
inlinevirtual

Definition at line 162 of file ClassBox.h.

References CVCounter::fill.

◆ SetMax()

◆ SetPos()

virtual void SetPos ( int p)
inlinevirtual

Definition at line 163 of file ClassBox.h.

References CVCounter::pos.

Referenced by jbxl::readCmnHeadFile(), jbxl::readGraphicSlices(), jbxl::readUserSetData(), jbxl::readXHeadFile(), jbxl::writeCmnHeadData(), and jbxl::writeGraphicFile().

Here is the caller graph for this function:

◆ SetTitle()

virtual void SetTitle ( char * tn)
inlinevirtual

Definition at line 175 of file ClassBox.h.

References CVCounter::title.

Referenced by jbxl::readGraphicFile(), and jbxl::readGraphicSlices().

Here is the caller graph for this function:

◆ Start()

virtual void Start ( int m = 100,
char * tn = NULL )
inlinevirtual

Definition at line 169 of file ClassBox.h.

References CVCounter::SetMax(), CVCounter::start, and CVCounter::title.

Referenced by BrepSolidList::getMerge().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ StepIt()

◆ Stop()

virtual void Stop ( )
inlinevirtual

Member Data Documentation

◆ cancel

bool cancel

Definition at line 143 of file ClassBox.h.

Referenced by CVCounter::CVCounter(), CVCounter::Init(), and CVCounter::isCanceled().

◆ fill

◆ max

◆ pos

◆ start

bool start

Definition at line 144 of file ClassBox.h.

Referenced by CVCounter::CVCounter(), CVCounter::Start(), and CVCounter::Stop().

◆ title

const char* title

The documentation for this class was generated from the following file: