示例#1
0
	/**
	 * Constructor.
	 */
	CameraPreview::CameraPreview():
		Widget(MAW_CAMERA_PREVIEW)
	{
		// Set some common default values.
		fillSpaceVertically();
		fillSpaceHorizontally();
	}
示例#2
0
	/**
	 * Constructor.
	 */
	RelativeLayout::RelativeLayout() :
		Layout(MAW_RELATIVE_LAYOUT)
	{
		// Set some common default values.
		fillSpaceVertically();
		fillSpaceHorizontally();
	}
示例#3
0
	/**
	 * Constructor.
	 */
	GLView::GLView(const MAUtil::String& type):
		Widget(type)
	{
		// Set some common default values.
		fillSpaceVertically();
		fillSpaceHorizontally();
	}