Ejemplo n.º 1
0
		FacadeImpl::~FacadeImpl()
		{
			LogTraceObjLn();

			HostFree(heap_type, m_dir);
			HostFree(heap_type, m_ppi);
		}
Ejemplo n.º 2
0
		void FacadeImpl::commit_selection()
		{
			LogTraceObjLn();
			psi().PanelControl(m_hndl, FCTL_ENDSELECTION, 0, nullptr);
		}
Ejemplo n.º 3
0
		void FacadeImpl::unselect(size_t index)
		{
			LogTraceObjLn();
			psi().PanelControl(m_hndl, FCTL_CLEARSELECTION, index, nullptr);
		}
Ejemplo n.º 4
0
		void FacadeImpl::select(size_t index, bool in)
		{
			LogTraceObjLn();
			psi().PanelControl(m_hndl, FCTL_SETSELECTION, index, (PVOID)in);
		}
Ejemplo n.º 5
0
		void FacadeImpl::start_selection()
		{
			LogTraceObjLn();
			psi().PanelControl(m_hndl, FCTL_BEGINSELECTION, 0, nullptr);
		}
Ejemplo n.º 6
0
		Options::ImplOptions::ImplOptions()
		{
			LogTraceObjLn();
		}