|
GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
|
Base class for all rich edit controls. More...
#include <BaseRichEdit.h>
Public Types | |
| enum class | urlDetectEvent { mouseMove = WM_MOUSEMOVE , leftButtonDown , leftButtonUp , leftButtonDoubleClick , rightButtonDown , rightButtonUp , rightButtonDoubleClick , setCursor = WM_SETCURSOR } |
Public Member Functions | |
| BaseRichEdit (const std::wstring &richEditName, const utility::ComponentSettings &settings, BaseComposite *parent, bool isMultiLine=false) | |
| virtual void | addUrlDetectEvent (urlDetectEvent event, const std::function< void(const std::wstring &)> &eventCallback) final |
| virtual void | addUrlDetectEvent (urlDetectEvent event, const std::string &functionName, const std::string &moduleName) final |
| virtual void | removeUrlDetectEvent (urlDetectEvent event) final |
| virtual LRESULT | findSubstring (const std::wstring &subStringToFind, bool isMatchCase=true) final |
| virtual LRESULT | findString (const std::wstring &stringToFind, bool isMatchCase=true) final |
| virtual void | setAutoURLDetect (bool autoURLDetect) final |
| virtual void | setLimitText (uint64_t count) final |
| virtual bool | getAutoURLDetect () const final |
| virtual std::wstring | getSelectedText () const final |
| virtual const std::function< void(const std::wstring &)> & | getCallback (urlDetectEvent event) const final |
| virtual bool | getIsMultiLine () const final |
| virtual void | setBackgroundColor (uint8_t red, uint8_t green, uint8_t blue) final override |
| virtual void | setTextColor (uint8_t red, uint8_t green, uint8_t blue) final override |
| virtual size_t | getHash () const override=0 |
| Used as key in creators. | |
| virtual json::JSONBuilder | getStructure () const override |
| virtual | ~BaseRichEdit ()=default |
Public Member Functions inherited from gui_framework::BaseComponent | |
| BaseComponent (std::wstring_view className, std::wstring_view windowName, const utility::ComponentSettings &settings, const interfaces::IStyles &styles, BaseComposite *parent=nullptr, std::string_view windowFunctionName="", std::string_view moduleName="", uint16_t smallIconResource=NULL, uint16_t largeIconResource=NULL) | |
| LRESULT | handleMessages (HWND handle, UINT message, WPARAM wparam, LPARAM lparam, bool &isUsed) |
| bool | destroyComponent () |
| bool | asyncDestroyComponent () |
| void | enable () |
| void | disable () |
| bool | isEnabled () const |
| bool | isDisabled () const |
| LRESULT | sendRawMessage (UINT message, WPARAM wparam, LPARAM lparam) |
| SendMessage WinAPI wrapper. | |
| void | setDesiredWidth (uint16_t desiredWidth) |
| void | setDesiredHeight (uint16_t desiredHeight) |
| void | setDesiredX (int desiredX) |
| void | setDesiredY (int desiredY) |
| BaseComponent * | getParent () const |
| HWND | getHandle () const |
| std::wstring_view | getWindowName () const |
| std::wstring_view | getClassName () const |
| uint16_t | getDesiredWidth () const |
| uint16_t | getDesiredHeight () const |
| uint16_t | getActualWidth () const |
| uint16_t | getActualHeight () const |
| RECT | getActualCoordinates () const |
| int | getDesiredX () const |
| int | getDesiredY () const |
| uint32_t | getId () const |
| COLORREF | getBackgroundColor () const |
| COLORREF | getTextColor () const |
| const smartPointerType< interfaces::IStyles > & | getStyles () const |
| virtual | ~BaseComponent () |
Public Member Functions inherited from gui_framework::interfaces::ISerializable | |
| ISerializable ()=default | |
| virtual | ~ISerializable ()=default |
Public Member Functions inherited from gui_framework::interfaces::IResizableComponent | |
| IResizableComponent (HWND resizeableHandle, HWND parent, bool autoResize=false, bool blockResize=false) | |
| virtual void | resize (uint16_t width, uint16_t height) |
| Resize component. | |
| virtual RECT | calculateNewSizes (uint16_t width, uint16_t height) final |
| virtual void | setBlockResize (bool blockResize) final |
| virtual void | setAutoResize (bool autoResize) final |
| virtual bool | getBlockResize () const final |
| virtual bool | getAutoResize () const final |
| virtual | ~IResizableComponent ()=default |
Public Member Functions inherited from gui_framework::interfaces::ITextOperations | |
| ITextOperations (HWND handle, const std::wstring &text=L"") | |
| ITextOperations (HWND handle, const std::string &localizationKey) | |
| void | setText (std::wstring_view text) |
| virtual void | setText (std::string_view localizationKey) |
| virtual std::wstring | getText () const final |
| Get text from control. | |
| virtual | ~ITextOperations ()=default |
Static Public Attributes | |
| static constexpr uint8_t | urlDetectEventSize = 8 |
Protected Member Functions | |
| virtual LRESULT | windowMessagesHandle (HWND handle, UINT message, WPARAM wparam, LPARAM lparam, bool &isUsed) override |
Protected Member Functions inherited from gui_framework::BaseComponent | |
| virtual LRESULT | preWindowMessagesHandle (HWND handle, UINT message, WPARAM wparam, LPARAM lparam, bool &isUsed) |
| virtual void | setLocalizationKeys (interfaces::ITextLocalized *localized, const std::vector< std::string > &localizationKeys) |
| Override for custom localization. | |
Protected Attributes | |
| std::array< std::function< void(const std::wstring &)>, urlDetectEventSize > | callbacks |
| std::array< std::pair< std::string, std::string >, urlDetectEventSize > | callbacksFunctionNamesAndModules |
| bool | isMultiLine |
| uint64_t | limitTextCount |
Protected Attributes inherited from gui_framework::BaseComponent | |
| BaseComposite * | parent |
| const std::wstring | className |
| const std::wstring | windowName |
| HWND | handle |
| uint16_t | desiredWidth |
| uint16_t | desiredHeight |
| int | desiredX |
| int | desiredY |
| uint32_t | id |
| COLORREF | backgroundColor |
| COLORREF | textColor |
| smartPointerType< interfaces::IStyles > | styles |
Protected Attributes inherited from gui_framework::interfaces::IResizableComponent | |
| bool | blockResize |
| bool | autoResize |
| int | initX |
| int | initY |
| uint16_t | initWidth |
| uint16_t | initHeight |
| uint16_t | parentWidth |
| uint16_t | parentHeight |
Protected Attributes inherited from gui_framework::interfaces::ITextOperations | |
| HWND | textHandle |
Additional Inherited Members | |
Static Public Member Functions inherited from gui_framework::BaseComponent | |
| static void | runFunctionAsync (const std::function< void()> &callable, const std::function< void()> &callback=nullptr) noexcept |
| Add task to thread pool. | |
| static void | runFunctionAsync (std::function< void()> &&callable, const std::function< void()> &callback=nullptr) noexcept |
| Add task to thread pool. | |
Static Public Member Functions inherited from gui_framework::interfaces::ISerializable | |
| static uint32_t | getCodepage () |
Base class for all rich edit controls.
Definition at line 12 of file BaseRichEdit.h.
|
strong |
| Enumerator | |
|---|---|
| mouseMove | |
| leftButtonDown | |
| leftButtonUp | |
| leftButtonDoubleClick | |
| rightButtonDown | |
| rightButtonUp | |
| rightButtonDoubleClick | |
| setCursor | |
Definition at line 18 of file BaseRichEdit.h.
| gui_framework::BaseRichEdit::BaseRichEdit | ( | const std::wstring & | richEditName, |
| const utility::ComponentSettings & | settings, | ||
| BaseComposite * | parent, | ||
| bool | isMultiLine = false ) |
Definition at line 63 of file BaseRichEdit.cpp.
|
virtualdefault |
|
finalvirtual |
|
finalvirtual |
|
finalvirtual |
Definition at line 136 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 124 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 171 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 185 of file BaseRichEdit.cpp.
|
overridepure virtual |
Used as key in creators.
Implements gui_framework::BaseComponent.
Implemented in gui_framework::RichEdit.
|
finalvirtual |
Definition at line 195 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 176 of file BaseRichEdit.cpp.
|
overridevirtual |
Reimplemented from gui_framework::BaseComponent.
Reimplemented in gui_framework::RichEdit.
Definition at line 221 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 108 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 148 of file BaseRichEdit.cpp.
|
finaloverridevirtual |
Reimplemented from gui_framework::BaseComponent.
Definition at line 200 of file BaseRichEdit.cpp.
|
finalvirtual |
Definition at line 164 of file BaseRichEdit.cpp.
|
finaloverridevirtual |
Reimplemented from gui_framework::BaseComponent.
Definition at line 207 of file BaseRichEdit.cpp.
|
overrideprotectedvirtual |
Reimplemented from gui_framework::BaseComponent.
Definition at line 28 of file BaseRichEdit.cpp.
|
protected |
Definition at line 33 of file BaseRichEdit.h.
|
protected |
Definition at line 34 of file BaseRichEdit.h.
|
protected |
Definition at line 35 of file BaseRichEdit.h.
|
protected |
Definition at line 36 of file BaseRichEdit.h.
|
staticconstexpr |
Definition at line 30 of file BaseRichEdit.h.