Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

CSInset Class Reference

#include <CSInset.h>


Public Member Functions

 CSInset ()
 CSInset (int n, int s, int w, int e)
 CSInset (int b)
virtual ~CSInset ()
virtual int getTotalWidth ()
virtual int getTotalHeight ()
virtual int getSizeSouth ()
virtual int getSizeNorth ()
virtual int getSizeEast ()
virtual int getSizeWest ()
virtual void setSizeSouth (int s)
virtual void setSizeNorth (int s)
virtual void setSizeEast (int s)
virtual void setSizeWest (int s)


Constructor & Destructor Documentation

CSInset::CSInset  )  [inline]
 

Definition at line 17 of file CSInset.h.

00018         {
00019             mSizeEast = 0;
00020             mSizeWest = 0;
00021             mSizeNorth = 0;
00022             mSizeSouth = 0;
00023         }

CSInset::CSInset int  n,
int  s,
int  w,
int  e
[inline]
 

Definition at line 24 of file CSInset.h.

00025         {
00026             mSizeEast = e;
00027             mSizeWest = w;
00028             mSizeNorth = n;
00029             mSizeSouth = s;
00030         }

CSInset::CSInset int  b  )  [inline]
 

Definition at line 31 of file CSInset.h.

00032         {
00033             mSizeEast = b;
00034             mSizeWest = b;
00035             mSizeNorth = b;
00036             mSizeSouth = b;
00037         }

virtual CSInset::~CSInset  )  [inline, virtual]
 

Definition at line 38 of file CSInset.h.

00038 {}


Member Function Documentation

virtual int CSInset::getTotalWidth  )  [inline, virtual]
 

Definition at line 39 of file CSInset.h.

Referenced by CSLayoutManager::getInsetWidth(), CSGrafikElement::init(), CSCombobox::layoutSetupCombobox(), CSListbox::layoutSetupListbox(), CSMessageBox::layoutSetupMessageBox(), CSTextarea::layoutSetupTextarea(), CSTextfield::layoutSetupTextfield(), and CSTextfield::reactOnMessageTextField().

00039 {return mSizeEast + mSizeWest;}

virtual int CSInset::getTotalHeight  )  [inline, virtual]
 

Definition at line 40 of file CSInset.h.

Referenced by CSLayoutManager::getInsetHeight(), CSGrafikElement::init(), CSCheckBox::layoutSetupCheckBox(), CSCombobox::layoutSetupCombobox(), CSListbox::layoutSetupListbox(), CSMessageBox::layoutSetupMessageBox(), CSTextarea::layoutSetupTextarea(), and CSTextfield::layoutSetupTextfield().

00040 {return mSizeNorth + mSizeSouth;}

virtual int CSInset::getSizeSouth  )  [inline, virtual]
 

Definition at line 42 of file CSInset.h.

00042 {return mSizeSouth;}

virtual int CSInset::getSizeNorth  )  [inline, virtual]
 

Definition at line 43 of file CSInset.h.

Referenced by CSLayoutManager::buildArea(), CSGrafikElement::init(), CSTextfield::paint(), CSListbox::paint(), CSCombobox::paint(), CSCheckBox::paint(), and CSListbox::setGrafikCursor().

00043 {return mSizeNorth;}

virtual int CSInset::getSizeEast  )  [inline, virtual]
 

Definition at line 44 of file CSInset.h.

00044 {return mSizeEast;}

virtual int CSInset::getSizeWest  )  [inline, virtual]
 

Definition at line 45 of file CSInset.h.

Referenced by CSLayoutManager::buildArea(), CSGrafikElement::init(), CSTextfield::paint(), CSListbox::paint(), CSCombobox::paint(), CSCheckBox::paint(), and CSListbox::setGrafikCursor().

00045 {return mSizeWest;}

virtual void CSInset::setSizeSouth int  s  )  [inline, virtual]
 

Definition at line 47 of file CSInset.h.

00047 {mSizeSouth = s;}

virtual void CSInset::setSizeNorth int  s  )  [inline, virtual]
 

Definition at line 48 of file CSInset.h.

00048 {mSizeNorth = s;}

virtual void CSInset::setSizeEast int  s  )  [inline, virtual]
 

Definition at line 49 of file CSInset.h.

00049 {mSizeEast = s;}

virtual void CSInset::setSizeWest int  s  )  [inline, virtual]
 

Definition at line 50 of file CSInset.h.

00050 {mSizeWest = s;}


Generated on Wed Jul 14 00:44:31 2004 for CSLib by doxygen 1.3.6