#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) |
|
Definition at line 17 of file CSInset.h.
00018 { 00019 mSizeEast = 0; 00020 mSizeWest = 0; 00021 mSizeNorth = 0; 00022 mSizeSouth = 0; 00023 } |
|
Definition at line 24 of file CSInset.h.
00025 { 00026 mSizeEast = e; 00027 mSizeWest = w; 00028 mSizeNorth = n; 00029 mSizeSouth = s; 00030 } |
|
Definition at line 31 of file CSInset.h.
00032 { 00033 mSizeEast = b; 00034 mSizeWest = b; 00035 mSizeNorth = b; 00036 mSizeSouth = b; 00037 } |
|
Definition at line 38 of file CSInset.h.
00038 {} |
|
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;}
|
|
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;}
|
|
Definition at line 42 of file CSInset.h.
00042 {return mSizeSouth;}
|
|
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;}
|
|
Definition at line 44 of file CSInset.h.
00044 {return mSizeEast;}
|
|
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;}
|
|
Definition at line 47 of file CSInset.h.
00047 {mSizeSouth = s;} |
|
Definition at line 48 of file CSInset.h.
00048 {mSizeNorth = s;} |
|
Definition at line 49 of file CSInset.h.
00049 {mSizeEast = s;} |
|
Definition at line 50 of file CSInset.h.
00050 {mSizeWest = s;} |