Searched refs:_width (Results 26 - 50 of 98) sorted by relevance

1234

/haiku/src/kits/tracker/
H A DDialogPane.cpp189 PaneSwitch::GetPreferredSize(float* _width, float* _height) argument
192 if (_width != NULL)
193 *_width = size.width;
/haiku/src/apps/processcontroller/
H A DMemoryBarMenuItem.cpp193 MemoryBarMenuItem::GetContentSize(float* _width, float* _height) argument
195 IconMenuItem::GetContentSize(_width, _height);
196 *_width += ceilf(be_control_look->DefaultLabelSpacing() * 2.0f)
/haiku/src/apps/stylededit/
H A DStatusView.cpp93 StatusView::GetPreferredSize(float* _width, float* _height) argument
97 if (_width)
98 *_width = fPreferredSize.width;
/haiku/src/kits/interface/
H A DAlert.cpp57 virtual void GetPreferredSize(float* _width, float* _height);
720 TAlertView::GetPreferredSize(float* _width, float* _height) argument
722 if (_width != NULL) {
723 *_width = be_control_look->DefaultLabelSpacing() * 3;
725 *_width += fIconBitmap->Bounds().Width();
727 *_width += be_control_look->ComposeIconSize(B_LARGE_ICON).Width();
H A DCheckBox.cpp293 BCheckBox::GetPreferredSize(float* _width, float* _height) argument
297 if (_width)
298 *_width = fPreferredSize.width;
H A DRadioButton.cpp248 BRadioButton::GetPreferredSize(float* _width, float* _height) argument
271 if (_width != NULL)
272 *_width = width;
H A DStringView.cpp188 BStringView::GetPreferredSize(float* _width, float* _height) argument
192 if (_width)
193 *_width = fPreferredSize.width;
H A DSeparatorView.cpp266 BSeparatorView::GetPreferredSize(float* _width, float* _height) argument
297 if (_width != NULL)
298 *_width = width;
/haiku/src/preferences/input/
H A DMouseView.cpp124 MouseView::GetPreferredSize(float* _width, float* _height) argument
126 if (_width != NULL)
127 *_width = fScaling * (kMouseDownWidth + 2);
/haiku/src/apps/pulse/
H A DConfigView.cpp163 ConfigView::GetPreferredSize(float* _width, float* _height) argument
186 if (_width)
187 *_width = right + 10.0f;
/haiku/headers/os/interface/
H A DControl.h65 virtual void GetPreferredSize(float* _width,
H A DButton.h63 virtual void GetPreferredSize (float* _width,
H A DCheckBox.h50 virtual void GetPreferredSize(float* _width,
H A DBox.h63 virtual void GetPreferredSize(float* _width, float* _height);
H A DStatusBar.h36 virtual void GetPreferredSize(float* _width,
H A DRadioButton.h36 virtual void GetPreferredSize(float* _width,
H A DStringView.h41 virtual void GetPreferredSize(float* _width,
H A DMenuBar.h53 virtual void GetPreferredSize(float* _width,
H A DMenuItem.h52 virtual void GetContentSize(float* _width, float* _height);
H A DDragger.h61 virtual void GetPreferredSize(float* _width,
H A DScrollBar.h77 virtual void GetPreferredSize(float* _width,
H A DPictureButton.h41 virtual void GetPreferredSize(float* _width,
H A DChannelSlider.h58 virtual void GetPreferredSize(float* _width, float* _height);
/haiku/headers/cpp/
H A Dstreambuf.h89 int _width; member in struct:_ios_fields
202 int width() const { return _width; }
203 int width(int val) { int save = _width; _width = val; return save; }
471 _strbuf=sb; _tie = tie_to; _width=0; _fill=' ';
/haiku/src/apps/diskusage/
H A DPieView.cpp54 virtual void GetContentSize(float* _width, float* _height);
101 AppMenuItem::GetContentSize(float* _width, float* _height) argument
103 BMenuItem::GetContentSize(_width, _height);
104 if (_width)
105 *_width += fIcon->Bounds().Width();

Completed in 110 milliseconds

1234