Function Reference


_GUICtrlRebar_DragMove

Updates the drag position in the rebar control after a previous _GUICtrlRebar_BeginDrag message

#include <GuiReBar.au3>
_GUICtrlRebar_DragMove ( $hWnd [, $iPos = -1] )

Parameters

$hWnd Handle to the rebar control
$iPos [optional] DWORD value that contains the new mouse coordinates.
The horizontal coordinate is contained in the LOWORD and the vertical coordinate is contained in the HIWORD.
If you pass (DWORD)-1, the rebar control will use the position of the mouse the last time the control's thread called GetMessage or PeekMessage

Return Value

None.

Related

_GUICtrlRebar_BeginDrag

Example

#include <GUIConstantsEx.au3>
#include <GuiReBar.au3>
#include <GuiToolbar.au3>
#include <WinAPIConstants.au3>
#include <WindowsConstants.au3>

Example()

Func Example()
        Local $hGui, $idBtnExit, $hReBar, $hToolbar, $idInput, $idBtnBeginDrag
        Local Enum $e_idNew = 1000, $e_idOpen, $e_idSave, $idHelp

        $hGui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_MAXIMIZEBOX))

        ; create the rebar control
        $hReBar = _GUICtrlRebar_Create($hGui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE, $RBS_BANDBORDERS))

        ; create a toolbar to put in the rebar
        $hToolbar = _GUICtrlToolbar_Create($hGui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE, $CCS_NOPARENTALIGN))

        ; Add standard system bitmaps
        Switch _GUICtrlToolbar_GetBitmapFlags($hToolbar)
                Case 0
                        _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_SMALL_COLOR)
                Case 2
                        _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_LARGE_COLOR)
        EndSwitch

        ; Add buttons
        _GUICtrlToolbar_AddButton($hToolbar, $e_idNew, $STD_FILENEW)
        _GUICtrlToolbar_AddButton($hToolbar, $e_idOpen, $STD_FILEOPEN)
        _GUICtrlToolbar_AddButton($hToolbar, $e_idSave, $STD_FILESAVE)
        _GUICtrlToolbar_AddButtonSep($hToolbar)
        _GUICtrlToolbar_AddButton($hToolbar, $idHelp, $STD_HELP)

        ; create a input box to put in the rebar
        $idInput = GUICtrlCreateInput("Input control", 0, 0, 120, 20)

        ;add band containing the control
        _GUICtrlRebar_AddBand($hReBar, GUICtrlGetHandle($idInput), 120, 200, "Name:")

        ; add band containing the control to the beginning of rebar
        _GUICtrlRebar_AddToolBarBand($hReBar, $hToolbar, "", 0)

        $idBtnBeginDrag = GUICtrlCreateButton("Begin Drag", 150, 330, 100, 25)
        $idBtnExit = GUICtrlCreateButton("Exit", 150, 360, 100, 25)
        GUISetState(@SW_SHOW)

        While 1
                Switch GUIGetMsg()
                        Case $GUI_EVENT_CLOSE, $idBtnExit
                                Exit
                        Case $idBtnBeginDrag
                                _GUICtrlRebar_BeginDrag($hReBar, 0)
                                _GUICtrlRebar_DragMove($hReBar)
                                _GUICtrlRebar_EndDrag($hReBar)
                EndSwitch
        WEnd
EndFunc   ;==>Example