Sha256: 53e97967ed0ea2b5a6eafd31debba2a27216a4ba7a7a80ce087883f8ae0ae38e

Contents?: true

Size: 904 Bytes

Versions: 18

Compression:

Stored size: 904 Bytes

Contents

#pragma once
#include "StringHelper.h"

using namespace System::Windows::Automation;

public ref class MenuItemSelector
{
public:
	void SelectMenuPath(const HWND windowHandle, std::list<const char*>& menuItems);
	BOOL MenuItemExists(const HWND windowHandle, std::list<const char*>& menuItems);

private:
	AutomationElement^ FindMenuItem(AutomationElement^ rootElement, std::list<const char*>& menuItems);
	PropertyCondition^ NameConditionFor(String^ name);
	AutomationElement^ GetNextMenuItem(AutomationElement^ foundMenuItem, String^ nextMenu);
	ExpandCollapsePattern^ AsExpandCollapse(AutomationElement^ foundMenuItem);
	void TryToExpand(ExpandCollapsePattern^ expandCollapsePattern);

	property PropertyCondition^ MenuItemControlType {
private:
	PropertyCondition^ get() { return gcnew PropertyCondition(AutomationElement::ControlTypeProperty, ControlType::MenuItem); }
	}
};

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
rautomation-2.0.1-x86-mingw32 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-2.0.1-x64-mingw32 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-1.1.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-1.0.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.17.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.16.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.15.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.14.1 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.14.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.13.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.12.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.11.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.10.0 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.9.4 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.9.3 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.9.2 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.9.1 ext/UiaDll/UiaDll/MenuItemSelector.h
rautomation-0.9.0 ext/UiaDll/UiaDll/MenuItemSelector.h