当前位置: 首页>>代码示例>>C++>>正文


C++ Panel::RequestInfo方法代码示例

本文整理汇总了C++中Panel::RequestInfo方法的典型用法代码示例。如果您正苦于以下问题:C++ Panel::RequestInfo方法的具体用法?C++ Panel::RequestInfo怎么用?C++ Panel::RequestInfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Panel的用法示例。


在下文中一共展示了Panel::RequestInfo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: OnMouseReleased

//-----------------------------------------------------------------------------
// Purpose: 
// Input  : code - 
//-----------------------------------------------------------------------------
void CBuddyButton::OnMouseReleased(vgui::MouseCode code)
{
	if (m_bDragging)
	{
		// make sure we're over a valid panel
		VPanel *imouseOver = input()->GetMouseOver();
		if (imouseOver)
		{
			Panel *mouseOver = ipanel()->Client(imouseOver)->GetPanel();
			KeyValues *keyVal = new KeyValues("DragDrop", "type", "TrackerFriend");
			keyVal->SetInt("friendID", m_iBuddyID);

			if (mouseOver->RequestInfo(keyVal))
			{
				Panel *acceptPanel = (Panel *)keyVal->GetPtr("AcceptPanel");
				if (acceptPanel)
				{
					PostMessage(acceptPanel, keyVal);
					keyVal = NULL;
				}
			}

			if (keyVal)
			{
				keyVal->deleteThis();
			}
		}

		input()->SetMouseCapture(NULL);
	}

	m_bDragging = false;
	
	BaseClass::OnMouseReleased(code);
}
开发者ID:RaisingTheDerp,项目名称:raisingthebar,代码行数:39,代码来源:BuddyButton.cpp

示例2: GetControlInt

//-----------------------------------------------------------------------------
// Purpose: Shortcut function to get data in child controls
//-----------------------------------------------------------------------------
int EditablePanel::GetControlInt(const char *controlName, int defaultState)
{
	Panel *control = FindChildByName(controlName);
	if (control)
	{
		KeyValues &data = *(new KeyValues("GetState"));
		if (control->RequestInfo(&data))
		{
			return data.GetInt("state", defaultState);
		}
	}

	return defaultState;
}
开发者ID:RaisingTheDerp,项目名称:raisingthebar,代码行数:17,代码来源:EditablePanel.cpp

示例3: GetControlInt

//-----------------------------------------------------------------------------
// Purpose: Shortcut function to get data in child controls
//-----------------------------------------------------------------------------
int EditablePanel::GetControlInt(const char *controlName, int defaultState)
{
	Panel *control = FindChildByName(controlName);
	if (control)
	{
		KeyValues *data = new KeyValues("GetState");
		if (control->RequestInfo(data))
		{
			int state = data->GetInt("state", defaultState);
			data->deleteThis();
			return state;
		}
	}
	return defaultState;
}
开发者ID:AluminumKen,项目名称:hl2sb-src,代码行数:18,代码来源:editablepanel.cpp

示例4: GetControlString

//-----------------------------------------------------------------------------
// Purpose: Shortcut function to get data in child controls
//-----------------------------------------------------------------------------
void EditablePanel::GetControlString(const char *controlName, char *buf, int bufSize, const char *defaultString)
{
	Panel *control = FindChildByName(controlName);
	KeyValues *data = new KeyValues("GetText");
	if (control && control->RequestInfo(data))
	{
		strncpy(buf, data->GetString("text", defaultString), bufSize - 1);
	}
	else
	{
		// no value found, copy in default text
		strncpy(buf, defaultString, bufSize - 1);
	}

	// ensure null termination of string
	buf[bufSize - 1] = 0;

	// free
	data->deleteThis();
}
开发者ID:RaisingTheDerp,项目名称:raisingthebar,代码行数:23,代码来源:EditablePanel.cpp


注:本文中的Panel::RequestInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。