Browse Source

Rearranged image assets.

woollybah 6 years ago
parent
commit
e26b5d3084
42 changed files with 16 additions and 16 deletions
  1. 14 14
      docs/api/maxgui/maxgui_maxgui.md
  2. 2 2
      docs/api/maxgui/maxgui_proxygadgets.md
  3. 0 0
      docs/assets/maxgui/fltkbuttons.png
  4. 0 0
      docs/assets/maxgui/fltkcombobox.png
  5. 0 0
      docs/assets/maxgui/fltklistbox.png
  6. 0 0
      docs/assets/maxgui/fltkmenu.png
  7. 0 0
      docs/assets/maxgui/fltkpanels.png
  8. 0 0
      docs/assets/maxgui/fltkprogbar.png
  9. 0 0
      docs/assets/maxgui/fltksliders.png
  10. 0 0
      docs/assets/maxgui/fltktabber.png
  11. 0 0
      docs/assets/maxgui/fltktextarea.png
  12. 0 0
      docs/assets/maxgui/fltktextfield.png
  13. 0 0
      docs/assets/maxgui/fltktreeview.png
  14. 0 0
      docs/assets/maxgui/fltkwindow.png
  15. 0 0
      docs/assets/maxgui/osxbuttons.png
  16. 0 0
      docs/assets/maxgui/osxcombobox.png
  17. 0 0
      docs/assets/maxgui/osxlistbox.png
  18. 0 0
      docs/assets/maxgui/osxmenu.png
  19. 0 0
      docs/assets/maxgui/osxpanels.png
  20. 0 0
      docs/assets/maxgui/osxprogbar.png
  21. 0 0
      docs/assets/maxgui/osxsliders.png
  22. 0 0
      docs/assets/maxgui/osxtabber.png
  23. 0 0
      docs/assets/maxgui/osxtextarea.png
  24. 0 0
      docs/assets/maxgui/osxtextfield.png
  25. 0 0
      docs/assets/maxgui/osxtreeview.png
  26. 0 0
      docs/assets/maxgui/osxwindow.png
  27. 0 0
      docs/assets/maxgui/scroll_dimensions.png
  28. 0 0
      docs/assets/maxgui/scroll_position.png
  29. 0 0
      docs/assets/maxgui/win32buttons.png
  30. 0 0
      docs/assets/maxgui/win32combobox.png
  31. 0 0
      docs/assets/maxgui/win32htmlview.png
  32. 0 0
      docs/assets/maxgui/win32listbox.png
  33. 0 0
      docs/assets/maxgui/win32menu.png
  34. 0 0
      docs/assets/maxgui/win32panels.png
  35. 0 0
      docs/assets/maxgui/win32progbar.png
  36. 0 0
      docs/assets/maxgui/win32sliders.png
  37. 0 0
      docs/assets/maxgui/win32tabber.png
  38. 0 0
      docs/assets/maxgui/win32textarea.png
  39. 0 0
      docs/assets/maxgui/win32textfield.png
  40. 0 0
      docs/assets/maxgui/win32toolbar.png
  41. 0 0
      docs/assets/maxgui/win32treeview.png
  42. 0 0
      docs/assets/maxgui/win32window.png

+ 14 - 14
docs/api/maxgui/maxgui_maxgui.md

@@ -55,7 +55,7 @@ state, of a gadget. Any changes made to gadget through MaxGUI command calls (suc
 not result in events being emitted. 
 not result in events being emitted. 
 
 
 <h2>Windows</h2>
 <h2>Windows</h2>
-![](assets/win32window.png)![](assets/fltkwindow.png)![](assets/osxwindow.png)
+![](assets/maxgui/win32window.png)![](assets/maxgui/fltkwindow.png)![](assets/maxgui/osxwindow.png)
 
 
 A Window is used to contain a collection of gadgets that make up the user interface of an application. The [CreateWindow](../../maxgui/maxgui.maxgui/#function-createwindow-tgadget-titletext-x-y-w-h-group-tgadget-null-style-window-default) 
 A Window is used to contain a collection of gadgets that make up the user interface of an application. The [CreateWindow](../../maxgui/maxgui.maxgui/#function-createwindow-tgadget-titletext-x-y-w-h-group-tgadget-null-style-window-default) 
 command creates a window of a specified size that can then be used as the <b>group</b> parameter for the other gadget creation
 command creates a window of a specified size that can then be used as the <b>group</b> parameter for the other gadget creation
@@ -71,7 +71,7 @@ If a window is created with the WINDOW_RESIZABLE style, its sizing can be restra
 [RestoreWindow](../../maxgui/maxgui.maxgui/#function-restorewindow-window-tgadget) commands. The state of a window can be dermined using [WindowMinimized](../../maxgui/maxgui.maxgui/#function-windowminimized-window-tgadget) and [WindowMaximized](../../maxgui/maxgui.maxgui/#function-windowmaximized-window-tgadget).
 [RestoreWindow](../../maxgui/maxgui.maxgui/#function-restorewindow-window-tgadget) commands. The state of a window can be dermined using [WindowMinimized](../../maxgui/maxgui.maxgui/#function-windowminimized-window-tgadget) and [WindowMaximized](../../maxgui/maxgui.maxgui/#function-windowmaximized-window-tgadget).
 
 
 <h2>Menus</h2>
 <h2>Menus</h2>
-![](assets/win32menu.png)![](assets/fltkmenu.png)![](assets/osxmenu.png)
+![](assets/maxgui/win32menu.png)![](assets/maxgui/fltkmenu.png)![](assets/maxgui/osxmenu.png)
 
 
 The [CreateMenu](../../maxgui/maxgui.maxgui/#function-createmenu-tgadget-text-tag-parent-tgadget-hotkey-0-modifier-0) command is used to create menu-items. Menus can be attached either to a window's menu-bar by parenting them to a 
 The [CreateMenu](../../maxgui/maxgui.maxgui/#function-createmenu-tgadget-text-tag-parent-tgadget-hotkey-0-modifier-0) command is used to create menu-items. Menus can be attached either to a window's menu-bar by parenting them to a 
 [WindowMenu](../../maxgui/maxgui.maxgui/#function-windowmenu-tgadget-window-tgadget) or can popup at the current mouse location if used with the [PopupWindowMenu](../../maxgui/maxgui.maxgui/#function-popupwindowmenu-window-tgadget-menu-tgadget-extra-object-null) command.
 [WindowMenu](../../maxgui/maxgui.maxgui/#function-windowmenu-tgadget-window-tgadget) or can popup at the current mouse location if used with the [PopupWindowMenu](../../maxgui/maxgui.maxgui/#function-popupwindowmenu-window-tgadget-menu-tgadget-extra-object-null) command.
@@ -80,7 +80,7 @@ The [CreateMenu](../../maxgui/maxgui.maxgui/#function-createmenu-tgadget-text-ta
 being chosen by the user. [EnableGadget](../../maxgui/maxgui.maxgui/#function-enablegadget-gadget-tgadget) reverses this operation.
 being chosen by the user. [EnableGadget](../../maxgui/maxgui.maxgui/#function-enablegadget-gadget-tgadget) reverses this operation.
 
 
 <h2>Buttons</h2>
 <h2>Buttons</h2>
-![](assets/win32buttons.png)![](assets/fltkbuttons.png)![](assets/osxbuttons.png)
+![](assets/maxgui/win32buttons.png)![](assets/maxgui/fltkbuttons.png)![](assets/maxgui/osxbuttons.png)
 
 
 The [CreateButton](../../maxgui/maxgui.maxgui/#function-createbutton-tgadget-label-x-y-w-h-group-tgadget-style-button-push) command is used to add buttons to a group gadget. Buttons can be standard push buttons that emit a single
 The [CreateButton](../../maxgui/maxgui.maxgui/#function-createbutton-tgadget-label-x-y-w-h-group-tgadget-style-button-push) command is used to add buttons to a group gadget. Buttons can be standard push buttons that emit a single
 event whenever clicked, or they can be created with the BUTTON_CHECKBOX or BUTTON_RADIO styles
 event whenever clicked, or they can be created with the BUTTON_CHECKBOX or BUTTON_RADIO styles
@@ -88,7 +88,7 @@ in which case they can be toggled by the user (or programatically with the [SetB
 Their current state can be found with the help of the [ButtonState](../../maxgui/maxgui.maxgui/#function-buttonstate-button-tgadget) function.
 Their current state can be found with the help of the [ButtonState](../../maxgui/maxgui.maxgui/#function-buttonstate-button-tgadget) function.
 
 
 <h2>Panels</h2>
 <h2>Panels</h2>
-![](assets/win32panels.png)![](assets/fltkpanels.png)![](assets/osxpanels.png)
+![](assets/maxgui/win32panels.png)![](assets/maxgui/fltkpanels.png)![](assets/maxgui/osxpanels.png)
 
 
 The [CreatePanel](../../maxgui/maxgui.maxgui/#function-createpanel-tgadget-x-y-w-h-group-tgadget-style-0-title) command is used to to create a Panel gadget. Panels can be used to group other gadgets together and
 The [CreatePanel](../../maxgui/maxgui.maxgui/#function-createpanel-tgadget-x-y-w-h-group-tgadget-style-0-title) command is used to to create a Panel gadget. Panels can be used to group other gadgets together and
 can be optionally assigned a background color or image using the [SetPanelColor](../../maxgui/maxgui.maxgui/#function-setpanelcolor-panel-tgadget-r-g-b) or [SetPanelPixmap](../../maxgui/maxgui.maxgui/#function-setpanelpixmap-panel-tgadget-pixmap-tpixmap-flags-panelpixmap-tile) commands.  They can
 can be optionally assigned a background color or image using the [SetPanelColor](../../maxgui/maxgui.maxgui/#function-setpanelcolor-panel-tgadget-r-g-b) or [SetPanelPixmap](../../maxgui/maxgui.maxgui/#function-setpanelpixmap-panel-tgadget-pixmap-tpixmap-flags-panelpixmap-tile) commands.  They can
@@ -96,14 +96,14 @@ be created with or without a border. Panels were one of the first gadgets that c
 specifying the optional PANEL_ACTIVE style upon creation.
 specifying the optional PANEL_ACTIVE style upon creation.
 
 
 <h2>Text Fields</h2>
 <h2>Text Fields</h2>
-![](assets/win32textfield.png)![](assets/fltktextfield.png)![](assets/osxtextfield.png)
+![](assets/maxgui/win32textfield.png)![](assets/maxgui/fltktextfield.png)![](assets/maxgui/osxtextfield.png)
 
 
 A text-field allows the users to enter a single line of text. A text-field's characters can be masked by specifying an 
 A text-field allows the users to enter a single line of text. A text-field's characters can be masked by specifying an 
 optional TEXTFIELD_PASSWORD style flag upon the call to [CreateTextField](../../maxgui/maxgui.maxgui/#function-createtextfield-tgadget-x-y-w-h-group-tgadget-style-0).  This is useful for creating password-entry
 optional TEXTFIELD_PASSWORD style flag upon the call to [CreateTextField](../../maxgui/maxgui.maxgui/#function-createtextfield-tgadget-x-y-w-h-group-tgadget-style-0).  This is useful for creating password-entry
 forms.  As with all other gadgets, [GadgetText](../../maxgui/maxgui.maxgui/#function-gadgettext-gadget-tgadget) and [SetGadgetText](../../maxgui/maxgui.maxgui/#function-setgadgettext-gadget-tgadget-text) can be used to set and retrieve the text in the field.
 forms.  As with all other gadgets, [GadgetText](../../maxgui/maxgui.maxgui/#function-gadgettext-gadget-tgadget) and [SetGadgetText](../../maxgui/maxgui.maxgui/#function-setgadgettext-gadget-tgadget-text) can be used to set and retrieve the text in the field.
 
 
 <h2>Text Areas</h2>
 <h2>Text Areas</h2>
-![](assets/win32textarea.png)![](assets/fltktextarea.png)![](assets/osxtextarea.png)
+![](assets/maxgui/win32textarea.png)![](assets/maxgui/fltktextarea.png)![](assets/maxgui/osxtextarea.png)
 
 
 The [CreateTextArea](../../maxgui/maxgui.maxgui/#function-createtextarea-tgadget-x-y-w-h-group-tgadget-style-0) command creates a gadget for displaying formatted text, with optional TEXTAREA_WORDWRAP and 
 The [CreateTextArea](../../maxgui/maxgui.maxgui/#function-createtextarea-tgadget-x-y-w-h-group-tgadget-style-0) command creates a gadget for displaying formatted text, with optional TEXTAREA_WORDWRAP and 
 TEXTAREA_READONLY styles.  
 TEXTAREA_READONLY styles.  
@@ -124,7 +124,7 @@ The MaxGUI commands specific to text-areas are summarised below:
 of the gadget.
 of the gadget.
 
 
 <h2>Combo Boxes</h2>
 <h2>Combo Boxes</h2>
-![](assets/win32combobox.png)![](assets/fltkcombobox.png)![](assets/osxcombobox.png)
+![](assets/maxgui/win32combobox.png)![](assets/maxgui/fltkcombobox.png)![](assets/maxgui/osxcombobox.png)
 
 
 Combo-boxes provide a dropdown list of options to the user with an optional style that allows the user to enter 
 Combo-boxes provide a dropdown list of options to the user with an optional style that allows the user to enter 
 their own text in a similar manner to the TextField gadget. [CreateComboBox](../../maxgui/maxgui.maxgui/#function-createcombobox-tgadget-x-y-w-h-group-tgadget-style-0) creates a ComboBox and the standard
 their own text in a similar manner to the TextField gadget. [CreateComboBox](../../maxgui/maxgui.maxgui/#function-createcombobox-tgadget-x-y-w-h-group-tgadget-style-0) creates a ComboBox and the standard
@@ -132,14 +132,14 @@ list based gadget commands [ClearGadgetItems](../../maxgui/maxgui.maxgui/#functi
 [SelectedGadgetItem](../../maxgui/maxgui.maxgui/#function-selectedgadgetitem-gadget-tgadget), [CountGadgetItems](../../maxgui/maxgui.maxgui/#function-countgadgetitems-gadget-tgadget) and [GadgetItemText](../../maxgui/maxgui.maxgui/#function-gadgetitemtext-gadget-tgadget-index) can be used to manage the items contained by the ComboBox gadget.
 [SelectedGadgetItem](../../maxgui/maxgui.maxgui/#function-selectedgadgetitem-gadget-tgadget), [CountGadgetItems](../../maxgui/maxgui.maxgui/#function-countgadgetitems-gadget-tgadget) and [GadgetItemText](../../maxgui/maxgui.maxgui/#function-gadgetitemtext-gadget-tgadget-index) can be used to manage the items contained by the ComboBox gadget.
 
 
 <h2>List Boxes</h2>
 <h2>List Boxes</h2>
-![](assets/win32listbox.png)![](assets/fltklistbox.png)![](assets/osxlistbox.png)
+![](assets/maxgui/win32listbox.png)![](assets/maxgui/fltklistbox.png)![](assets/maxgui/osxlistbox.png)
 
 
 List-boxes are similiar to ComboBoxes but features a scrolling list rather than a drop-down selection mechanism.
 List-boxes are similiar to ComboBoxes but features a scrolling list rather than a drop-down selection mechanism.
 The [CreateListBox](../../maxgui/maxgui.maxgui/#function-createlistbox-tgadget-x-y-w-h-group-tgadget-style-0) command is used to create a ListBox gadget while the standard list based gadget commands listed
 The [CreateListBox](../../maxgui/maxgui.maxgui/#function-createlistbox-tgadget-x-y-w-h-group-tgadget-style-0) command is used to create a ListBox gadget while the standard list based gadget commands listed
 in the previous ComboBox section are used to manage the items.
 in the previous ComboBox section are used to manage the items.
 
 
 <h2>Toolbars</h2>
 <h2>Toolbars</h2>
-![](assets/win32toolbar.png)
+![](assets/maxgui/win32toolbar.png)
 
 
 Toolbars display a row of clickable icons at the top of a window. The [CreateToolbar](../../maxgui/maxgui.maxgui/#function-createtoolbar-tgadget-source-object-x-y-w-h-window-tgadget-style-0) command creates a window toolbar 
 Toolbars display a row of clickable icons at the top of a window. The [CreateToolbar](../../maxgui/maxgui.maxgui/#function-createtoolbar-tgadget-source-object-x-y-w-h-window-tgadget-style-0) command creates a window toolbar 
 using a previously loaded <b>TIconStrip</b> or using a specified image file containing a strip of icons.
 using a previously loaded <b>TIconStrip</b> or using a specified image file containing a strip of icons.
@@ -154,7 +154,7 @@ It is important to note that Toolbars should only ever be added to <b>Window</b>
 cause your program to crash on some platforms.
 cause your program to crash on some platforms.
 
 
 <h2>Tabbers</h2>
 <h2>Tabbers</h2>
-![](assets/win32tabber.png)![](assets/fltktabber.png)![](assets/osxtabber.png)
+![](assets/maxgui/win32tabber.png)![](assets/maxgui/fltktabber.png)![](assets/maxgui/osxtabber.png)
 
 
 The [CreateTabber](../../maxgui/maxgui.maxgui/#function-createtabber-tgadget-x-y-w-h-group-tgadget-style-0) command creates a tab control gadget commonly used to group gadgets into a collection of pages. 
 The [CreateTabber](../../maxgui/maxgui.maxgui/#function-createtabber-tgadget-x-y-w-h-group-tgadget-style-0) command creates a tab control gadget commonly used to group gadgets into a collection of pages. 
 The standard list based gadget commands [ClearGadgetItems](../../maxgui/maxgui.maxgui/#function-cleargadgetitems-gadget-tgadget), [AddGadgetItem](../../maxgui/maxgui.maxgui/#function-addgadgetitem-gadget-tgadget-text-flags-0-icon-1-tip-extra-object-null), [ModifyGadgetItem](../../maxgui/maxgui.maxgui/#function-modifygadgetitem-gadget-tgadget-index-text-flags-0-icon-1-tip-extra-object-null), [RemoveGadgetItem](../../maxgui/maxgui.maxgui/#function-removegadgetitem-gadget-tgadget-index), 
 The standard list based gadget commands [ClearGadgetItems](../../maxgui/maxgui.maxgui/#function-cleargadgetitems-gadget-tgadget), [AddGadgetItem](../../maxgui/maxgui.maxgui/#function-addgadgetitem-gadget-tgadget-text-flags-0-icon-1-tip-extra-object-null), [ModifyGadgetItem](../../maxgui/maxgui.maxgui/#function-modifygadgetitem-gadget-tgadget-index-text-flags-0-icon-1-tip-extra-object-null), [RemoveGadgetItem](../../maxgui/maxgui.maxgui/#function-removegadgetitem-gadget-tgadget-index), 
@@ -162,7 +162,7 @@ The standard list based gadget commands [ClearGadgetItems](../../maxgui/maxgui.m
 in a Tabber gadget.
 in a Tabber gadget.
 
 
 <h2>TreeViews</h2>
 <h2>TreeViews</h2>
-![](assets/win32treeview.png)![](assets/fltktreeview.png)![](assets/osxtreeview.png)
+![](assets/maxgui/win32treeview.png)![](assets/maxgui/fltktreeview.png)![](assets/maxgui/osxtreeview.png)
 
 
 A TreeView is used to display hierarchical data where items are contained in nodes that can be children of other nodes.
 A TreeView is used to display hierarchical data where items are contained in nodes that can be children of other nodes.
 The [CreateTreeView](../../maxgui/maxgui.maxgui/#function-createtreeview-tgadget-x-y-w-h-group-tgadget-style-0) command creates a new TreeView gadget that provides a [TreeViewRoot](../../maxgui/maxgui.maxgui/#function-treeviewroot-tgadget-treeview-tgadget) used to create a tree of nodes.
 The [CreateTreeView](../../maxgui/maxgui.maxgui/#function-createtreeview-tgadget-x-y-w-h-group-tgadget-style-0) command creates a new TreeView gadget that provides a [TreeViewRoot](../../maxgui/maxgui.maxgui/#function-treeviewroot-tgadget-treeview-tgadget) used to create a tree of nodes.
@@ -175,7 +175,7 @@ The [CreateTreeView](../../maxgui/maxgui.maxgui/#function-createtreeview-tgadget
 can be used to remove nodes previously added to a TreeView gadget.
 can be used to remove nodes previously added to a TreeView gadget.
 
 
 <h2>HtmlViews</h2>
 <h2>HtmlViews</h2>
-![](assets/win32htmlview.png)
+![](assets/maxgui/win32htmlview.png)
 
 
 An HTMLView is a gadget containing a complete web browser display. The [CreateHTMLView](../../maxgui/maxgui.maxgui/#function-createhtmlview-tgadget-x-y-w-h-group-tgadget-style-0) command creates an HTMLView gadget
 An HTMLView is a gadget containing a complete web browser display. The [CreateHTMLView](../../maxgui/maxgui.maxgui/#function-createhtmlview-tgadget-x-y-w-h-group-tgadget-style-0) command creates an HTMLView gadget
 while [HtmlViewGo](../../maxgui/maxgui.maxgui/#function-htmlviewgo-view-tgadget-url), [HtmlViewBack](../../maxgui/maxgui.maxgui/#function-htmlviewback-view-tgadget) and [HtmlViewForward](../../maxgui/maxgui.maxgui/#function-htmlviewforward-view-tgadget) control the page being displayed.
 while [HtmlViewGo](../../maxgui/maxgui.maxgui/#function-htmlviewgo-view-tgadget-url), [HtmlViewBack](../../maxgui/maxgui.maxgui/#function-htmlviewback-view-tgadget) and [HtmlViewForward](../../maxgui/maxgui.maxgui/#function-htmlviewforward-view-tgadget) control the page being displayed.
@@ -188,7 +188,7 @@ Labels are read-only regions of text on a user inteface that do not have a backg
 [CreateLabel](../../maxgui/maxgui.maxgui/#function-createlabel-tgadget-name-x-y-w-h-group-tgadget-style-label-left) command.
 [CreateLabel](../../maxgui/maxgui.maxgui/#function-createlabel-tgadget-name-x-y-w-h-group-tgadget-style-label-left) command.
 
 
 <h2>Sliders</h2>
 <h2>Sliders</h2>
-![](assets/win32sliders.png)![](assets/fltksliders.png)![](assets/osxsliders.png)
+![](assets/maxgui/win32sliders.png)![](assets/maxgui/fltksliders.png)![](assets/maxgui/osxsliders.png)
 
 
 Sliders allow the user to control a numerical value by dragging a control inside a container. [CreateSlider](../../maxgui/maxgui.maxgui/#function-createslider-tgadget-x-y-w-h-group-tgadget-style-0) can create 
 Sliders allow the user to control a numerical value by dragging a control inside a container. [CreateSlider](../../maxgui/maxgui.maxgui/#function-createslider-tgadget-x-y-w-h-group-tgadget-style-0) can create 
 both a scroll-bar type slider (where the size of the knob represents the portion of the document being viewed) and 
 both a scroll-bar type slider (where the size of the knob represents the portion of the document being viewed) and 
@@ -198,7 +198,7 @@ allowed by the control).
 [SetSliderValue](../../maxgui/maxgui.maxgui/#function-setslidervalue-slider-tgadget-value) and [SliderValue](../../maxgui/maxgui.maxgui/#function-slidervalue-slider-tgadget) set and retrieve the position of a Slider control.
 [SetSliderValue](../../maxgui/maxgui.maxgui/#function-setslidervalue-slider-tgadget-value) and [SliderValue](../../maxgui/maxgui.maxgui/#function-slidervalue-slider-tgadget) set and retrieve the position of a Slider control.
 
 
 <h2>Progress Bars</h2>
 <h2>Progress Bars</h2>
-![](assets/win32progbar.png)![](assets/fltkprogbar.png)![](assets/osxprogbar.png)
+![](assets/maxgui/win32progbar.png)![](assets/maxgui/fltkprogbar.png)![](assets/maxgui/osxprogbar.png)
 
 
 [CreateProgBar](../../maxgui/maxgui.maxgui/#function-createprogbar-tgadget-x-y-w-h-group-tgadget-style-0) creates a progress bar gadget commonly used to display the progress of an operation. The 
 [CreateProgBar](../../maxgui/maxgui.maxgui/#function-createprogbar-tgadget-x-y-w-h-group-tgadget-style-0) creates a progress bar gadget commonly used to display the progress of an operation. The 
 [UpdateProgBar](../../maxgui/maxgui.maxgui/#function-updateprogbar-progbar-tgadget-value) command is used to update the progress bar with a floating point value between 0.0 and 1.0 and
 [UpdateProgBar](../../maxgui/maxgui.maxgui/#function-updateprogbar-progbar-tgadget-value) command is used to update the progress bar with a floating point value between 0.0 and 1.0 and

+ 2 - 2
docs/api/maxgui/maxgui_proxygadgets.md

@@ -265,7 +265,7 @@ standard MaxGUI commands.
 * The client area is the panel that will actually be scrolled and is retrieved using the [ScrollPanelClient](../../maxgui/maxgui.proxygadgets/#function-scrollpanelclient-tgadget-scrollpanel-tscrollpanel) command.  This is the panel
 * The client area is the panel that will actually be scrolled and is retrieved using the [ScrollPanelClient](../../maxgui/maxgui.proxygadgets/#function-scrollpanelclient-tgadget-scrollpanel-tscrollpanel) command.  This is the panel
 whose dimensions determine the total scrollable area, and is also the panel that all your child gadgets should be added to.
 whose dimensions determine the total scrollable area, and is also the panel that all your child gadgets should be added to.
 
 
-![](assets/scroll_dimensions.png)
+![](assets/maxgui/scroll_dimensions.png)
 
 
 The dimensions given above can each be retrieved programatically:
 The dimensions given above can each be retrieved programatically:
 
 
@@ -400,7 +400,7 @@ Scrolls the current viewport to a new position.
 This function moves the client area of the scroll panel so that the the top-left corner of the viewport is as close
 This function moves the client area of the scroll panel so that the the top-left corner of the viewport is as close
 as possible to the specified <b>pX</b>, <b>pY</b> position in the client-area.
 as possible to the specified <b>pX</b>, <b>pY</b> position in the client-area.
 
 
-![](assets/scroll_position.png)
+![](assets/maxgui/scroll_position.png)
 
 
 There are 4 position constants provided:
 There are 4 position constants provided:
 
 

+ 0 - 0
docs/assets/fltkbuttons.png → docs/assets/maxgui/fltkbuttons.png


+ 0 - 0
docs/assets/fltkcombobox.png → docs/assets/maxgui/fltkcombobox.png


+ 0 - 0
docs/assets/fltklistbox.png → docs/assets/maxgui/fltklistbox.png


+ 0 - 0
docs/assets/fltkmenu.png → docs/assets/maxgui/fltkmenu.png


+ 0 - 0
docs/assets/fltkpanels.png → docs/assets/maxgui/fltkpanels.png


+ 0 - 0
docs/assets/fltkprogbar.png → docs/assets/maxgui/fltkprogbar.png


+ 0 - 0
docs/assets/fltksliders.png → docs/assets/maxgui/fltksliders.png


+ 0 - 0
docs/assets/fltktabber.png → docs/assets/maxgui/fltktabber.png


+ 0 - 0
docs/assets/fltktextarea.png → docs/assets/maxgui/fltktextarea.png


+ 0 - 0
docs/assets/fltktextfield.png → docs/assets/maxgui/fltktextfield.png


+ 0 - 0
docs/assets/fltktreeview.png → docs/assets/maxgui/fltktreeview.png


+ 0 - 0
docs/assets/fltkwindow.png → docs/assets/maxgui/fltkwindow.png


+ 0 - 0
docs/assets/osxbuttons.png → docs/assets/maxgui/osxbuttons.png


+ 0 - 0
docs/assets/osxcombobox.png → docs/assets/maxgui/osxcombobox.png


+ 0 - 0
docs/assets/osxlistbox.png → docs/assets/maxgui/osxlistbox.png


+ 0 - 0
docs/assets/osxmenu.png → docs/assets/maxgui/osxmenu.png


+ 0 - 0
docs/assets/osxpanels.png → docs/assets/maxgui/osxpanels.png


+ 0 - 0
docs/assets/osxprogbar.png → docs/assets/maxgui/osxprogbar.png


+ 0 - 0
docs/assets/osxsliders.png → docs/assets/maxgui/osxsliders.png


+ 0 - 0
docs/assets/osxtabber.png → docs/assets/maxgui/osxtabber.png


+ 0 - 0
docs/assets/osxtextarea.png → docs/assets/maxgui/osxtextarea.png


+ 0 - 0
docs/assets/osxtextfield.png → docs/assets/maxgui/osxtextfield.png


+ 0 - 0
docs/assets/osxtreeview.png → docs/assets/maxgui/osxtreeview.png


+ 0 - 0
docs/assets/osxwindow.png → docs/assets/maxgui/osxwindow.png


+ 0 - 0
docs/assets/scroll_dimensions.png → docs/assets/maxgui/scroll_dimensions.png


+ 0 - 0
docs/assets/scroll_position.png → docs/assets/maxgui/scroll_position.png


+ 0 - 0
docs/assets/win32buttons.png → docs/assets/maxgui/win32buttons.png


+ 0 - 0
docs/assets/win32combobox.png → docs/assets/maxgui/win32combobox.png


+ 0 - 0
docs/assets/win32htmlview.png → docs/assets/maxgui/win32htmlview.png


+ 0 - 0
docs/assets/win32listbox.png → docs/assets/maxgui/win32listbox.png


+ 0 - 0
docs/assets/win32menu.png → docs/assets/maxgui/win32menu.png


+ 0 - 0
docs/assets/win32panels.png → docs/assets/maxgui/win32panels.png


+ 0 - 0
docs/assets/win32progbar.png → docs/assets/maxgui/win32progbar.png


+ 0 - 0
docs/assets/win32sliders.png → docs/assets/maxgui/win32sliders.png


+ 0 - 0
docs/assets/win32tabber.png → docs/assets/maxgui/win32tabber.png


+ 0 - 0
docs/assets/win32textarea.png → docs/assets/maxgui/win32textarea.png


+ 0 - 0
docs/assets/win32textfield.png → docs/assets/maxgui/win32textfield.png


+ 0 - 0
docs/assets/win32toolbar.png → docs/assets/maxgui/win32toolbar.png


+ 0 - 0
docs/assets/win32treeview.png → docs/assets/maxgui/win32treeview.png


+ 0 - 0
docs/assets/win32window.png → docs/assets/maxgui/win32window.png