/external/lzma/CPP/7zip/UI/FileManager/ |
D | MyWindowsNew.h | 58 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 …]
|
D | LangUtils.h | 22 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);
|
D | BrowseDialog.h | 8 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);
|
D | ProgressDialog2.h | 158 HWND _hwndForTaskbar; 222 bool OnButtonClicked(int buttonID, HWND buttonHWND); 236 void ShowAfterMessages(HWND wndParent); 247 HWND MainWindow; 261 INT_PTR Create(const UString &title, NWindows::CThread &thread, HWND wndParent = 0); 305 HRESULT Create(const UString &title, HWND parentWindow = 0);
|
/external/webrtc/webrtc/examples/peerconnection/client/ |
D | main_wnd.h | 103 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/ |
D | screen_capturer_win_magnifier.h | 53 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/ |
D | Dialog.h | 14 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); 129 bool Create(LPCTSTR templateName, HWND parentWindow); 130 …bool Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindow);… in Create() 132 bool Create(LPCWSTR templateName, HWND parentWindow); 141 INT_PTR Create(LPCTSTR templateName, HWND parentWindow); 142 …INT_PTR Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindo… in Create() [all …]
|
D | PropertyPage.h | 13 INT_PTR APIENTRY ProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam); 18 CPropertyPage(HWND window = NULL): CDialog(window){}; in CDialog() 20 void Changed() { PropSheet_Changed(GetParent(), (HWND)*this); } in Changed() 21 void UnChanged() { PropSheet_UnChanged(GetParent(), (HWND)*this); } in UnChanged() 44 INT_PTR MyPropertySheet(const CObjectVector<CPageInfo> &pagesInfo, HWND hwndParent, const UString &…
|
D | Dialog.cpp | 19 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 193 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() 195 …HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)t… in Create() 202 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() 209 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create() 211 HWND aHWND; in Create() 233 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create()
|
D | Window2.h | 15 CWindow2(HWND newWindow = NULL): CWindow(newWindow){}; in CWindow() 20 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance); 25 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance);
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | cropping_window_capturer_win.cc | 26 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()
|
D | mouse_cursor_monitor_win.cc | 25 explicit MouseCursorMonitorWin(HWND window); 38 HWND window_; 49 MouseCursorMonitorWin::MouseCursorMonitorWin(HWND window) in MouseCursorMonitorWin() 116 HWND windowUnderCursor = WindowFromPoint(cursor_info.ptScreenPos); in Capture() 164 return new MouseCursorMonitorWin(reinterpret_cast<HWND>(window)); in CreateForWindow()
|
D | window_capturer_win.cc | 26 BOOL CALLBACK WindowsEnumerationHandler(HWND hwnd, LPARAM param) { in WindowsEnumerationHandler() 33 HWND owner = GetWindow(hwnd, GW_OWNER); in WindowsEnumerationHandler() 100 HWND window_; 127 HWND window = reinterpret_cast<HWND>(id); in SelectWindow()
|
/external/lzma/CPP/Windows/ |
D | Window.h | 38 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText() 40 bool MySetWindowText(HWND wnd, LPCWSTR s); 57 HWND _window; 59 CWindow(HWND newWindow = NULL): _window(newWindow){}; in _window() 60 CWindow& operator=(HWND newWindow) 65 operator HWND() const { return _window; } in HWND() function 66 void Attach(HWND newWindow) { _window = newWindow; } in Attach() 67 HWND Detach() in Detach() 69 HWND window = _window; in Detach() 76 HWND GetParent() const { return ::GetParent(_window); } in GetParent() [all …]
|
D | Shell.cpp | 137 bool BrowseForFolder(HWND, LPCTSTR, UINT, LPCTSTR, CSysString &) in BrowseForFolder() argument 142 bool BrowseForFolder(HWND /* owner */, LPCTSTR /* title */, in BrowseForFolder() argument 174 int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc() 203 bool BrowseForFolder(HWND owner, LPCTSTR title, UINT ulFlags, in BrowseForFolder() 225 bool BrowseForFolder(HWND owner, LPCTSTR title, in BrowseForFolder() 270 int CALLBACK BrowseCallbackProc2(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc2() 298 static bool BrowseForFolder(HWND owner, LPCWSTR title, UINT ulFlags, in BrowseForFolder() 313 bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR initialFolder, UString &resultPath) in BrowseForFolder()
|
/external/skia/src/views/win/ |
D | SkOSWindow_win.cpp | 47 void post_skwinevent(HWND hwnd) in post_skwinevent() 130 bool SkOSWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { in wndProc() 237 GetWindowRect((HWND)fHWND, &r); in updateSize() 247 InvalidateRect((HWND)fHWND, &rect, FALSE); in onHandleInval() 255 SetWindowTextA((HWND)fHWND, title); in onSetTitle() 315 post_skwinevent((HWND)hWND); in SignalNonEmptyQueue() 321 VOID CALLBACK sk_timer_proc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime) in sk_timer_proc() 344 HDC dc = GetDC((HWND)fHWND); in attachGL() 386 wglMakeCurrent(GetDC((HWND)fHWND), 0); in detachGL() 392 HDC dc = GetDC((HWND)fHWND); in presentGL() [all …]
|
D | skia_win.cpp | 15 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 96 ShowWindow((HWND)hWnd, show); in main_common() 97 UpdateWindow((HWND)hWnd); } in main_common() 116 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { in WndProc()
|
/external/lzma/CPP/7zip/UI/Explorer/ |
D | MyMessages.cpp | 14 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()
|
D | MyMessages.h | 8 void ShowErrorMessage(HWND window, LPCWSTR message); 11 void ShowErrorMessageHwndRes(HWND window, UInt32 langID); 14 void ShowLastErrorMessage(HWND window = 0);
|
/external/webrtc/webrtc/base/ |
D | win32window.h | 29 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_;
|
D | win32windowpicker_unittest.cc | 81 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/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/ |
D | dxgi_dll.c | 63 HWND hwnd, in WineDXGIBackend_BeginPresent() 71 HWND x11_hwnd; in WineDXGIBackend_BeginPresent() 137 HWND hwnd, in WineDXGIBackend_EndPresent() 145 HWND hwnd) in WineDXGIBackend_TestPresent() 165 HWND hwnd, in WineDXGIBackend_GetPresentSize() 232 HWND root = GetDesktopWindow(); in install_wine_dxgi_backend()
|
/external/libpng/contrib/visupng/ |
D | PngFile.h | 16 void PngFileInitialize (HWND hwnd) ; 17 BOOL PngFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 18 BOOL PngFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ;
|
D | VisualPng.c | 42 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); 43 BOOL CALLBACK AboutDlgProc (HWND, UINT, WPARAM, LPARAM) ; 45 BOOL CenterAbout (HWND hwndChild, HWND hwndParent); 53 BOOL LoadImageFile(HWND hwnd, PTSTR pstrPathName, 57 BOOL DisplayImage (HWND hwnd, BYTE **ppDib, 83 HWND hwnd; in WinMain() 147 LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, in WndProc() 431 BOOL CALLBACK AboutDlgProc (HWND hDlg, UINT message, in AboutDlgProc() 459 BOOL CenterAbout (HWND hwndChild, HWND hwndParent) in CenterAbout() 661 BOOL LoadImageFile (HWND hwnd, PTSTR pstrPathName, in LoadImageFile() [all …]
|
/external/opencv3/samples/directx/ |
D | winapp.hpp | 101 static LRESULT CALLBACK StaticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in StaticWndProc() 120 …inline static WinApp* GetObjectFromWindow(HWND hWnd) { return (WinApp*)::GetWindowLongPtr(hWnd, GW… in GetObjectFromWindow() 123 virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) = 0; 128 HWND m_hWnd;
|