| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // zlib open source license
- //
- // Copyright (c) 2020 David Forsgren Piuva
- //
- // This software is provided 'as-is', without any express or implied
- // warranty. In no event will the authors be held liable for any damages
- // arising from the use of this software.
- //
- // Permission is granted to anyone to use this software for any purpose,
- // including commercial applications, and to alter it and redistribute it
- // freely, subject to the following restrictions:
- //
- // 1. The origin of this software must not be misrepresented; you must not
- // claim that you wrote the original software. If you use this software
- // in a product, an acknowledgment in the product documentation would be
- // appreciated but is not required.
- //
- // 2. Altered source versions must be plainly marked as such, and must not be
- // misrepresented as being the original software.
- //
- // 3. This notice may not be removed or altered from any source
- // distribution.
- #ifndef DFPSR_GUI_COMPONENT_LISTBOX
- #define DFPSR_GUI_COMPONENT_LISTBOX
- #include "../VisualComponent.h"
- #include "../../api/fontAPI.h"
- namespace dsr {
- class ListBox : public VisualComponent {
- PERSISTENT_DECLARATION(ListBox)
- public:
- // Attributes
- PersistentColor color;
- PersistentStringList list;
- PersistentInteger selectedIndex; // Should always be inside of the list's 0..length-1 bound or zero.
- void declareAttributes(StructureDefinition &target) const override;
- Persistent* findAttribute(const ReadableString &name) override;
- private:
- // Temporary
- bool pressScrollUp = false;
- bool pressScrollDown = false;
- bool holdingScrollBar = false;
- int64_t knobHoldOffset = 0; // The number of pixels down from the center that the knob grabbed last time.
- bool inside = false;
- bool hasVerticalScroll = false;
- int64_t pressedIndex = -1; // Index of pressed item or -1 for none.
- int64_t firstVisible = 0; // Index of first visible element for scrolling. May never go below zero.
- // Given from the style
- MediaMethod scalableImage_listBox;
- MediaMethod scalableImage_scrollButton;
- MediaMethod scalableImage_verticalScrollBar;
- RasterFont font;
- void completeAssets();
- void generateGraphics();
- // Generated
- bool hasImages = false;
- OrderedImageRgbaU8 scrollButtonTop_normal, scrollButtonTop_pressed, scrollButtonBottom_normal, scrollButtonBottom_pressed;
- OrderedImageRgbaU8 scrollKnob_normal, verticalScrollBar_normal;
- OrderedImageRgbaU8 image;
- // Helper methods
- // Returns the selected index referring to an existing element or -1 if none is selected
- int64_t getSelectedIndex();
- void limitSelection(bool indexChangedMeaning); // Clamp selection to valid range
- void limitScrolling(bool keepSelectedVisible = false); // Clamp scrolling
- int64_t getVisibleScrollRange(); // Return the number of items that are visible at once
- IRect getScrollBarLocation_includingButtons(); // Return the location of the scroll-bar with buttons
- IRect getScrollBarLocation_excludingButtons(); // Return the location of the scroll-bar without buttons
- IRect getKnobLocation(); // Return the location of the scroll-bar's knob
- void pressScrollBar(int64_t localY); // Press the scroll-bar at localY in pixels
- void loadTheme(VisualTheme theme);
- // If a new selection inherited the old index, forceUpdate will send the select event anyway
- void setSelectedIndex(int index, bool forceUpdate);
- public:
- ListBox();
- public:
- bool isContainer() const override;
- void drawSelf(ImageRgbaU8& targetImage, const IRect &relativeLocation) override;
- void receiveMouseEvent(const MouseEvent& event) override;
- void receiveKeyboardEvent(const KeyboardEvent& event) override;
- void changedTheme(VisualTheme newTheme) override;
- void changedLocation(const IRect &oldLocation, const IRect &newLocation) override;
- void changedAttribute(const ReadableString &name) override;
- // The call receiver decides if the input needs to be mangled into quotes
- String call(const ReadableString &methodName, const ReadableString &arguments) override;
- };
- }
- #endif
|