Home
last modified time | relevance | path

Searched refs:HWND (Results 1 – 25 of 220) sorted by relevance

123456789

/external/lzma/CPP/7zip/UI/FileManager/
DMyWindowsNew.h58 STDMETHOD(SetProgressValue)(HWND hwnd, ULONGLONG ullCompleted, ULONGLONG ullTotal) = 0;
59 STDMETHOD(SetProgressState)(HWND hwnd, TBPFLAG tbpFlags) = 0;
60 STDMETHOD(RegisterTab)(HWND hwndTab, HWND hwndMDI) = 0;
61 STDMETHOD(UnregisterTab)(HWND hwndTab) = 0;
62 STDMETHOD(SetTabOrder)(HWND hwndTab, HWND hwndInsertBefore) = 0;
63 STDMETHOD(SetTabActive)(HWND hwndTab, HWND hwndMDI, DWORD dwReserved) = 0;
64 STDMETHOD(ThumbBarAddButtons)(HWND hwnd, UINT cButtons, LPTHUMBBUTTON pButton) = 0;
65 STDMETHOD(ThumbBarUpdateButtons)(HWND hwnd, UINT cButtons, LPTHUMBBUTTON pButton) = 0;
66 STDMETHOD(ThumbBarSetImageList)(HWND hwnd, HIMAGELIST himl) = 0;
67 STDMETHOD(SetOverlayIcon)(HWND hwnd, HICON hIcon, LPCWSTR pszDescription) = 0;
[all …]
DLangUtils.h22 void LangSetDlgItemText(HWND dialog, UInt32 controlID, UInt32 langID);
23 void LangSetDlgItems(HWND dialog, const UInt32 *ids, unsigned numItems);
24 void LangSetDlgItems_Colon(HWND dialog, const UInt32 *ids, unsigned numItems);
25 void LangSetWindowText(HWND window, UInt32 langID);
DBrowseDialog.h8 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath);
9 bool MyBrowseForFile(HWND owner, LPCWSTR title, LPCWSTR path, LPCWSTR filterDescription, LPCWSTR fi…
19 bool Dlg_CreateFolder(HWND wnd, UString &destName);
/external/webrtc/webrtc/examples/peerconnection/client/
Dmain_wnd.h103 HWND handle() const { return wnd_; } in handle()
107 VideoRenderer(HWND wnd, int width, int height,
132 HWND wnd_;
166 static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp);
169 void CreateChildWindow(HWND* wnd, ChildWindowID id, const wchar_t* class_name,
182 HWND wnd_;
184 HWND edit1_;
185 HWND edit2_;
186 HWND label1_;
187 HWND label2_;
[all …]
/external/webrtc/webrtc/modules/desktop_capture/win/
Dscreen_capturer_win_magnifier.h53 typedef BOOL(WINAPI* MagImageScalingCallback)(HWND hwnd,
63 typedef BOOL(WINAPI* MagSetWindowSourceFunc)(HWND hwnd, RECT rect);
64 typedef BOOL(WINAPI* MagSetWindowFilterListFunc)(HWND hwnd,
67 HWND* pHWND);
69 HWND hwnd,
72 static BOOL WINAPI OnMagImageScalingCallback(HWND hwnd,
109 HWND excluded_window_;
137 HWND host_window_;
139 HWND magnifier_window_;
/external/lzma/CPP/Windows/Control/
DDialog.h14 CDialog(HWND wnd = NULL): CWindow(wnd){}; in CWindow()
17 HWND GetItem(int itemID) const in GetItem()
63 HWND GetNextGroupItem(HWND control, bool previous) in GetNextGroupItem()
65 HWND GetNextTabItem(HWND control, bool previous) in GetNextTabItem()
105 virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
130 bool Create(LPCTSTR templateName, HWND parentWindow);
131 …bool Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindow);… in Create()
133 bool Create(LPCWSTR templateName, HWND parentWindow);
143 INT_PTR Create(LPCTSTR templateName, HWND parentWindow);
144 …INT_PTR Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindo… in Create()
[all …]
DPropertyPage.h15 INT_PTR APIENTRY ProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam);
20 CPropertyPage(HWND window = NULL): CDialog(window){}; in CDialog()
22 void Changed() { PropSheet_Changed(GetParent(), (HWND)*this); } in Changed()
23 void UnChanged() { PropSheet_UnChanged(GetParent(), (HWND)*this); } in UnChanged()
46 INT_PTR MyPropertySheet(const CObjectVector<CPageInfo> &pagesInfo, HWND hwndParent, const UString &…
DDialog.cpp19 static INT_PTR APIENTRY DialogProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam) in DialogProcedure()
65 return OnButtonClicked(itemID, (HWND)lParam); in OnCommand()
69 bool CDialog::OnButtonClicked(int buttonID, HWND /* buttonHWND */) in OnButtonClicked() argument
194 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create()
196HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)t… in Create()
203 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create()
210 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create()
212 HWND aHWND; in Create()
234 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create()
/external/webrtc/webrtc/modules/desktop_capture/
Dcropping_window_capturer_win.cc26 TopWindowVerifierContext(HWND selected_window, HWND excluded_window) in TopWindowVerifierContext()
32 HWND selected_window;
33 HWND excluded_window;
41 BOOL CALLBACK TopWindowVerifier(HWND hwnd, LPARAM param) { in TopWindowVerifier()
131 HWND selected = reinterpret_cast<HWND>(selected_window()); in ShouldUseScreenCapturer()
152 selected, reinterpret_cast<HWND>(excluded_window())); in ShouldUseScreenCapturer()
196 HWND hwnd = reinterpret_cast<HWND>(selected_window()); in GetWindowRectInVirtualScreen()
/external/lzma/CPP/Windows/
DWindow.h39 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText()
41 bool MySetWindowText(HWND wnd, LPCWSTR s);
58 HWND _window;
60 CWindow(HWND newWindow = NULL): _window(newWindow){}; in _window()
61 CWindow& operator=(HWND newWindow)
66 operator HWND() const { return _window; } in HWND() function
67 void Attach(HWND newWindow) { _window = newWindow; } in Attach()
68 HWND Detach() in Detach()
70 HWND window = _window; in Detach()
77 HWND GetParent() const { return ::GetParent(_window); } in GetParent()
[all …]
DShell.cpp140 bool BrowseForFolder(HWND, LPCTSTR, UINT, LPCTSTR, CSysString &) in BrowseForFolder() argument
145 bool BrowseForFolder(HWND /* owner */, LPCTSTR /* title */, in BrowseForFolder() argument
177 int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc()
206 bool BrowseForFolder(HWND owner, LPCTSTR title, UINT ulFlags, in BrowseForFolder()
230 bool BrowseForFolder(HWND owner, LPCTSTR title, in BrowseForFolder()
276 int CALLBACK BrowseCallbackProc2(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc2()
304 static bool BrowseForFolder(HWND owner, LPCWSTR title, UINT ulFlags, in BrowseForFolder()
319 bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR initialFolder, UString &resultPath) in BrowseForFolder()
/external/swiftshader/src/Main/
DFrameBufferWin.hpp32 FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
39 virtual void flip(HWND windowOverride, sw::Surface *source) = 0;
40 …virtual void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *de…
49 void updateBounds(HWND windowOverride);
51 HWND windowHandle;
57 sw::FrameBufferWin *createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen,…
DFrameBufferGDI.hpp25 FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
32 void flip(HWND windowOverride, sw::Surface *source) override;
33 …void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *destRect) …
45 void init(HWND bitmapWindow);
50 HWND bitmapWindow;
DFrameBufferWin.cpp19 …FrameBufferWin::FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool top… in FrameBufferWin()
37 void FrameBufferWin::updateBounds(HWND windowOverride) in updateBounds()
39 HWND window = windowOverride ? windowOverride : windowHandle; in updateBounds()
58 sw::FrameBufferWin *createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen,… in createFrameBufferWin()
75 sw::FrameBuffer *createFrameBuffer(void *display, HWND window, int width, int height) in createFrameBuffer()
DFrameBufferDD.hpp27 FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
34 void flip(HWND windowOverride, sw::Surface *source) override;
35 …void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *destRect) …
53 void updateClipper(HWND windowOverride);
/external/skia/tools/sk_app/win/
DWindowContextFactory_win.h23 std::unique_ptr<WindowContext> MakeVulkanForWin(HWND, const DisplayParams&);
25 std::unique_ptr<WindowContext> MakeGLForWin(HWND, const DisplayParams&);
27 std::unique_ptr<WindowContext> MakeANGLEForWin(HWND, const DisplayParams&);
30 std::unique_ptr<WindowContext> MakeDawnD3D12ForWin(HWND, const DisplayParams&);
33 std::unique_ptr<WindowContext> MakeRasterForWin(HWND, const DisplayParams&);
DGLWindowContext_win.cpp25 std::unique_ptr<WindowContext> MakeGLForWin(HWND, const DisplayParams&) { return nullptr; } in MakeGLForWin() argument
36 GLWindowContext_win(HWND, const DisplayParams&);
46 HWND fHWND;
52 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win()
138 HDC dc = GetDC((HWND)fHWND); in onSwapBuffers()
140 ReleaseDC((HWND)fHWND, dc); in onSwapBuffers()
149 std::unique_ptr<WindowContext> MakeGLForWin(HWND wnd, const DisplayParams& params) { in MakeGLForWin()
DDawnD3D12WindowContext_win.cpp20 DawnD3D12WindowContext(HWND hwnd, const DisplayParams& params);
28 HWND fWindow;
32 DawnD3D12WindowContext::DawnD3D12WindowContext(HWND hwnd, const DisplayParams& params) in DawnD3D12WindowContext()
61 std::unique_ptr<WindowContext> MakeDawnD3D12ForWin(HWND hwnd, in MakeDawnD3D12ForWin()
/external/skqp/tools/sk_app/win/
DGLWindowContext_win.cpp25 WindowContext* NewGLForWin(HWND, const DisplayParams&) { return nullptr; } in NewGLForWin() argument
36 GLWindowContext_win(HWND, const DisplayParams&);
46 HWND fHWND;
52 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win()
134 HDC dc = GetDC((HWND)fHWND); in onSwapBuffers()
136 ReleaseDC((HWND)fHWND, dc); in onSwapBuffers()
145 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { in NewGLForWin()
DWindowContextFactory_win.h21 WindowContext* NewVulkanForWin(HWND, const DisplayParams&);
23 WindowContext* NewGLForWin(HWND, const DisplayParams&);
25 WindowContext* NewANGLEForWin(HWND, const DisplayParams&);
27 WindowContext* NewRasterForWin(HWND, const DisplayParams&);
/external/lzma/CPP/7zip/UI/Explorer/
DMyMessages.cpp14 void ShowErrorMessage(HWND window, LPCWSTR message) in ShowErrorMessage()
19 void ShowErrorMessageHwndRes(HWND window, UINT resID) in ShowErrorMessageHwndRes()
29 void ShowErrorMessageDWORD(HWND window, DWORD errorCode) in ShowErrorMessageDWORD()
34 void ShowLastErrorMessage(HWND window) in ShowLastErrorMessage()
DMyMessages.h8 void ShowErrorMessage(HWND window, LPCWSTR message);
11 void ShowErrorMessageHwndRes(HWND window, UInt32 langID);
14 void ShowLastErrorMessage(HWND window = 0);
/external/webrtc/webrtc/base/
Dwin32window.h29 HWND handle() const { return wnd_; } in handle()
31 bool Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle,
46 static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam,
49 HWND wnd_;
Dwin32windowpicker_unittest.cc81 HWND visible_id = window_picker.visible_window()->handle(); in TEST()
82 HWND invisible_id = window_picker.invisible_window()->handle(); in TEST()
89 HWND visible_id = window_picker.visible_window()->handle(); in TEST()
90 HWND invisible_id = window_picker.invisible_window()->handle(); in TEST()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/
Dwindows_user.h9 LRESULT CALLBACK WindowCallback(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) noexcept;
50 std::unique_ptr<Type> find(HWND hwnd) { in find()
54 void erase(HWND hwnd) { in erase()
59 std::unique_ptr<Type> insert(HWND hwnd, std::unique_ptr<Type> type) { in insert()
81 … LRESULT CALLBACK WindowCallback(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) noexcept { in WindowCallback()

123456789