| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // zlib open source license
- //
- // Copyright (c) 2020 to 2022 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 "helpers/ScrollBarImpl.h"
- #include "../../../api/fontAPI.h"
- namespace dsr {
- class ListBox : public VisualComponent {
- PERSISTENT_DECLARATION(ListBox)
- public:
- // Attributes
- PersistentColor backColor = PersistentColor(200, 200, 200);
- PersistentColor foreColor = PersistentColor(0, 0, 0);
- PersistentStringList list;
- // Name of theme class used to draw the background.
- // "ListBox" is used if backgroundClass is empty or not found.
- PersistentString backgroundClass;
- 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:
- // Value allocated sub-components
- ScrollBarImpl verticalScrollBar = ScrollBarImpl(true);
- // Temporary
- bool inside = false;
- int64_t pressedIndex = -1; // Index of pressed item or -1 for none.
- // Given from the style
- MediaMethod scalableImage_listBox;
- RasterFont font;
- void loadFont();
- void completeAssets();
- void generateGraphics();
- // Settings fetched from the theme
- String finalBackgroundClass; // The selected BackgroundClass/Class from layout settings or the component's default theme class "ListBox".
- int background_filter = 0; // 0 for solid, 1 for alpha filter.
- // Generated
- bool hasImages = false;
- 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 updateScrollRange(); // Calculate range for scrollbar
- void limitScrolling(bool keepSelectedVisible = false); // Clamp scrolling
- int64_t getVisibleScrollRange(); // Return the number of items that are visible at once
- void pressScrollBar(int64_t localY); // Press the scroll-bar at localY in pixels
- void loadTheme(const VisualTheme &theme);
- // If a new selection inherited the old index, forceUpdate will send the select event anyway
- void setSelectedIndex(int64_t 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
|