|
- #pragma once
- #include <widget/OpaqueWidget.hpp>
- #include <ui/common.hpp>
- #include <context.hpp>
-
-
- namespace rack {
- namespace ui {
-
-
- struct TextField : widget::OpaqueWidget {
- std::string text;
- std::string placeholder;
- bool multiline = false;
- /** The index of the text cursor */
- int cursor = 0;
- /** The index of the other end of the selection.
- If nothing is selected, this is equal to `cursor`.
- */
- int selection = 0;
-
- TextField();
- void draw(const DrawArgs& args) override;
- void onDragHover(const DragHoverEvent& e) override;
- void onButton(const ButtonEvent& e) override;
- void onSelectText(const SelectTextEvent& e) override;
- void onSelectKey(const SelectKeyEvent& e) override;
- virtual int getTextPosition(math::Vec mousePos);
-
- std::string getText();
- /** Replaces the entire text */
- void setText(std::string text);
- void selectAll();
- std::string getSelectedText();
- /** Inserts text at the cursor, replacing the selection if necessary */
- void insertText(std::string text);
- void copyClipboard();
- void cutClipboard();
- void pasteClipboard();
- void cursorToPrevWord();
- void cursorToNextWord();
- void createContextMenu();
- };
-
-
- } // namespace ui
- } // namespace rack
|