Source Code (Use browser search to find items of interest.)

Class Index

kword'BRect (./koffice/kword/filters/mif/treebuild_general.h:204)

class BRect
{
public:
	BRect( double x, const char* unitx,
		   double y, const char* unity,
		   double w, const char* unitw,
		   double h, const char* unith );

	double x() const { return _x; }
	double y() const { return _y; }
	double width() const { return _w; }
	double height() const { return _h; }

private:
	double _x;
	double _y;
	double _w;
	double _h;
};



kword'BRect::BRect() (./koffice/kword/filters/mif/treebuild_general.cpp:192)

BRect::BRect(double x, char const * unitx, 
			 double y, char const * unity, 
			 double w, char const * unitw, 
			 double h, char const * unith)
{
	_x = unitconversion( x, unitx );
	_y = unitconversion( y, unity );
	_w = unitconversion( w, unitw );
	_h = unitconversion( h, unith );
}