Searched refs:BST_PUSHED (Results 1 – 8 of 8) sorted by relevance
/reactos/win32ss/user/user32/controls/ |
H A D | button.c | 400 if (!(state & BST_PUSHED)) in ButtonWndProc_common() 450 if (state & BST_PUSHED) SendMessageW( hWnd, BM_SETSTATE, FALSE, 0 ); in ButtonWndProc_common() 644 set_button_state( hWnd, state | BST_PUSHED ); in ButtonWndProc_common() 646 set_button_state( hWnd, state & ~BST_PUSHED ); in ButtonWndProc_common() 953 BOOL pushedState = (state & BST_PUSHED); in PB_Paint() 1129 if (state & BST_PUSHED) flags |= DFCS_PUSHED; in CB_Paint() 1319 BUTTON_NOTIFY_PARENT( hwnd, (state & BST_PUSHED) ? BN_HILITE : BN_UNHILITE ); in UB_Paint() 1347 ((state & BST_PUSHED) ? ODS_SELECTED : 0) | in OB_Paint()
|
/reactos/dll/win32/comctl32/ |
H A D | button.c | 349 else if(infoPtr->state & BST_PUSHED) in BUTTON_PaintWithTheme() 575 if (infoPtr->state & BST_PUSHED) in BUTTON_SendCustomDraw() 785 if (!(state & BST_PUSHED)) in BUTTON_WindowProc() 833 if (infoPtr->state & BST_PUSHED) in BUTTON_WindowProc() 1233 new_state = wParam ? BST_PUSHED : 0; in BUTTON_WindowProc() 1235 if ((state ^ new_state) & BST_PUSHED) in BUTTON_WindowProc() 1238 state |= BST_PUSHED; in BUTTON_WindowProc() 1240 state &= ~BST_PUSHED; in BUTTON_WindowProc() 1504 BOOL pushedState = (state & BST_PUSHED); in PB_Paint() 1689 if (state & BST_PUSHED) flags |= DFCS_PUSHED; in CB_Paint() [all …]
|
H A D | comctl32_ros.diff | 1582 - if(state & BST_PUSHED) drawState = STATE_PRESSED; 1586 + if(state & BST_PUSHED)
|
/reactos/modules/rostests/apitests/comctl32/ |
H A D | button.c | 799 ok_hex(state, BST_PUSHED | BST_FOCUS | 0x20 | 0x40); in Test_MessagesNonThemed() 807 ok_hex(state, BST_PUSHED | BST_FOCUS | 0x20 | 0x40); in Test_MessagesNonThemed()
|
/reactos/sdk/include/psdk/ |
H A D | winuser.rh | 1258 #define BST_PUSHED 0x0004
|
H A D | winuser.h | 201 #define BST_PUSHED 4 macro
|
/reactos/base/shell/explorer/ |
H A D | traywnd.cpp | 2885 if (!(m_StartButton.SendMessage(BM_GETSTATE, 0, 0) & BST_PUSHED)) in OnContextMenu()
|
/reactos/modules/rostests/winetests/comctl32/ |
H A D | button.c | 837 ok(state == BST_PUSHED, "expected state 0x0004, got %04x\n", state); in test_button_messages()
|