diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-27 17:26:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-27 17:26:55 +0300 |
commit | 3a0d18fa8b8f6a78479fad7785491feff4f4f468 (patch) | |
tree | d706726aae1be0a9b483d39dd7a5395fac7ed17e /src/gui/widgets | |
parent | 1ee7975985590706520eed2e47a9623dd1099107 (diff) | |
download | plus-3a0d18fa8b8f6a78479fad7785491feff4f4f468.tar.gz plus-3a0d18fa8b8f6a78479fad7785491feff4f4f468.tar.bz2 plus-3a0d18fa8b8f6a78479fad7785491feff4f4f468.tar.xz plus-3a0d18fa8b8f6a78479fad7785491feff4f4f468.zip |
Move browserlink into separate file.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/browserbox.h | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h index 80ec9cf75..7eff1f1ea 100644 --- a/src/gui/widgets/browserbox.h +++ b/src/gui/widgets/browserbox.h @@ -28,6 +28,8 @@ #include "enums/simpletypes/opaque.h" +#include "gui/browserlink.h" + #include "gui/widgets/linepart.h" #include "gui/widgets/widget.h" @@ -35,28 +37,6 @@ class LinkHandler; -struct BrowserLink final -{ - BrowserLink() : - x1(0), - x2(0), - y1(0), - y2(0), - link(), - caption() - { - } - - A_DEFAULT_COPY(BrowserLink) - - int x1; - int x2; - int y1; - int y2; - std::string link; - std::string caption; -}; - /** * A simple browser box able to handle links and forward events to the * parent conteiner. |