Jump to content

Recommended Posts

Posted (edited)

This control is useful in situations where a window does not have enough area to display a child window. For example, if your application has a toolbar that is not wide enough to show all of its items, you can assign the toolbar to a pager control and users will be able to scroll to the left or right to access all of the items. You can also create pager controls that scroll vertically.

Posted Image

Functions:

  Reveal hidden contents
  • _GUICtrlPager_Add
  • _GUICtrlPager_Create
  • _GUICtrlPager_Destroy
  • _GUICtrlPager_ForwardMouse
  • _GUICtrlPager_IsHorz
  • _GUICtrlPager_IsVert
  • _GUICtrlPager_GetBKColor
  • _GUICtrlPager_GetBorder
  • _GUICtrlPager_GetButtonSize
  • _GUICtrlPager_GetButtonState
  • _GUICtrlPager_GetDropTarget
  • _GUICtrlPager_GetPos
  • _GUICtrlPager_ReCalcSize
  • _GUICtrlPager_RegisterAutoHandler
  • _GUICtrlPager_SetBKColor
  • _GUICtrlPager_SetBorder
  • _GUICtrlPager_SetButtonSize
  • _GUICtrlPager_SetChild
  • _GUICtrlPager_SetPos

Download link

Downloads so far is shown on the download page.

The download zip contains:

  • GUIPager.au3
  • Examples
  • Planets Example (As shown in screen shot)

Mat

Edited by Mat
Posted

Looks great, its a bit late for me to test now, so i'll test it tomorrow. :mellow:

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Posted

  On 3/12/2010 at 8:08 AM, 'Yashied said:

Nice job. But why not written _GUICtrlPager_Destroy() function? Anyways, 5* from me for a really useful UDF.

Completely missed that one out :mellow:

Another thing is that I have no idea how to make the function work for external applications.

Posted (edited)

Fantastic Job! Very nice and very usefull for me too.

Thanks so much Mat.

5 stars from me too.

Also Thanks too: George Gedye (GEOSoft), SmOke_N

Edited by Sh3llC043r
[size="5"] [/size]
Posted

  On 3/12/2010 at 2:46 PM, 'Sh3llC043r said:

Fantastic Job! Very nice and very usefull for me too.

Thanks so much Mat.

5 stars from me too.

Also Thanks too: George Gedye (GEOSoft), SmOke_N

Yes, I didn't mention that at the top, but GEOSoft was very helpful in making the _GUICtrlPager_Create function, and he also got a lot of help from SmOke_N for the same. :mellow:

Posted

  On 3/11/2010 at 9:58 PM, 'Mat said:

This control is useful in situations where a window does not have enough area to display a child window. For example, if your application has a toolbar that is not wide enough to show all of its items, you can assign the toolbar to a pager control and users will be able to scroll to the left or right to access all of the items. You can also create pager controls that scroll vertically.

Is it just for toolbars?

-_-------__--_-_-____---_-_--_-__-__-_ ^^€ñ†®øÞÿ ë×阮§ wï†høµ† ƒë@®, wï†høµ† †ïmë, @ñd wï†høµ† @ †ïmïdï†ÿ ƒø® !ïƒë. €×阮 ñø†, bµ† ïñ§†ë@d wï†hïñ, ñ@ÿ, †h®øµghøµ† †hë ë§§ëñ§ë øƒ !ïƒë.

Posted (edited)

Updated.

Added: _GUICtrlPager_Destroy

Removed: Random Mercury.xcf from the planets example :mellow:

Edit: Interesting that we already have an attempt at doing something similar with GDI+ here.

Edited by Mat
Posted

Very exciting script.

Does it support automatically resizing? (Forgive me if the question is stupid. I AM STUPID :mellow: )

[Not using this account any more. Using "iShafayet" instead]

Posted

  On 3/13/2010 at 5:42 PM, 'Shafayat said:

Very exciting script.

Does it support automatically resizing? (Forgive me if the question is stupid. I AM STUPID :mellow: )

As in... GUICtrlSetResizing?? No. You will have to process the WM_SIZE message yourself.

Posted (edited)

Thank you. I thought so but was hoping it not to be so.

Edited by Shafayat

[Not using this account any more. Using "iShafayet" instead]

Posted

  On 3/14/2010 at 2:43 AM, 'Shafayat said:

Thank you. I thought so but was hoping it notk to be so.

Its the same for all non-autoit controls.

this is a very simple example:

#include <GuiRichEdit.au3>
#include <WindowsConstants.au3>

Global $hGui, $hRichEdit

Main()

Func Main()
    $hGui = GUICreate("Example WM_SIZE", 320, 350, -1, -1, BitOR($GUI_SS_DEFAULT_GUI, $WS_SIZEBOX))
    $hRichEdit = _GUICtrlRichEdit_Create($hGui, "This is a test.", 10, 10, 300, 330)

    GUIRegisterMsg($WM_SIZE, "WM_SIZE")
    GUISetState()

    While 1
        Switch GUIGetMsg()
            Case -3
                _GUICtrlRichEdit_Destroy($hRichEdit)
                Exit
        EndSwitch
    WEnd
EndFunc   ;==>Main

Func WM_SIZE($hWnd, $iMsg, $wParam, $lParam)
    #forceref $hWnd, $iMsg, $wParam, $lParam
    Local $aPos = WinGetClientSize($hGui)
    ControlMove($hGui, "", $hRichEdit, 10, 10, $aPos[0] - 20, $aPos[1] - 20)
EndFunc

Mat

Posted

Thank you, Mat.

I had have some problems with WM_NOTIFY (for a listview item) few days ago and wasted almost 2 hours to find what I did wrong. Got it in the end but for a noob like me it wasn't easy. So I started to kinda fear GuiregisterMsg() . Anyway this one seems easy and working.

Regards

Shafayat

[Not using this account any more. Using "iShafayet" instead]

Posted

  On 3/14/2010 at 10:48 AM, 'Shafayat said:

Thank you, Mat.

I had have some problems with WM_NOTIFY (for a listview item) few days ago and wasted almost 2 hours to find what I did wrong. Got it in the end but for a noob like me it wasn't easy. So I started to kinda fear GuiregisterMsg() . Anyway this one seems easy and working.

Regards

Shafayat

This one is easy because I didn't use any of the parameters, so all its doing is waiting for the message... I did do it the more complex way though, completely overlooking the inbuilt autoit method:

#include <GuiRichEdit.au3>
#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>

Global $hGui, $hRichEdit

Main()

Func Main()
    $hGui = GUICreate("Example WM_SIZE", 320, 350, -1, -1, BitOR($GUI_SS_DEFAULT_GUI, $WS_SIZEBOX))
    $hRichEdit = _GUICtrlRichEdit_Create($hGui, "This is a test.", 10, 10, 300, 330)

    GUISetState()

    Local $aPos
    While 1
        Switch GUIGetMsg()
            Case -3
                _GUICtrlRichEdit_Destroy($hRichEdit)
                Exit
            Case $GUI_EVENT_RESIZED
                $aPos = WinGetClientSize($hGui)
                ControlMove($hGui, "", $hRichEdit, 10, 10, $aPos[0] - 20, $aPos[1] - 20)
        EndSwitch
    WEnd
EndFunc   ;==>Main

Thats much easier!!!

Posted

I learned something today. This will certainly help me understand the language better. Thanks.

[Not using this account any more. Using "iShafayet" instead]

  • 4 years later...
Posted

Thanks for this UDF.

I change this a litle 

#include <UDFGlobalID.au3>

instead

#include "UDFGlobalID.au3"

and it works with AutoIt 3.3.10.2, but not working with AutoIt 3.3.13.18

this is because __UDF_ValidateClassName was removed from UDFGlobalID.au3

but Why ?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...