diff options
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/vcl/fixed.hxx | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/vcl/inc/vcl/fixed.hxx b/vcl/inc/vcl/fixed.hxx index c36b63d73ec9..3c2e45ca2e2b 100644 --- a/vcl/inc/vcl/fixed.hxx +++ b/vcl/inc/vcl/fixed.hxx @@ -23,8 +23,9 @@ #include <tools/solar.h> #include <vcl/dllapi.h> #include <vcl/bitmap.hxx> -#include <vcl/image.hxx> #include <vcl/ctrl.hxx> +#include <vcl/edit.hxx> +#include <vcl/image.hxx> class UserDrawEvent; @@ -76,6 +77,18 @@ public: virtual bool set_property(const rtl::OString &rKey, const rtl::OString &rValue); }; +class VCL_DLLPUBLIC SelectableFixedText : public Edit +{ +private: + void Init(); + +public: + SelectableFixedText( Window* pParent, WinBits nStyle = 0 ); + SelectableFixedText( Window* pParent, const ResId& rResId ); + + virtual void LoseFocus(); +}; + // ------------- // - FixedLine - // ------------- |