add support of speicifying default value for inputbox::text

This commit is contained in:
Jinhao
2015-11-17 01:09:39 +08:00
parent a4258d3884
commit 3a85835907
2 changed files with 11 additions and 5 deletions

View File

@@ -140,8 +140,11 @@ namespace nana
: public abstract_content
{
struct implement;
text(const text&) = delete;
text& operator=(const text&) = delete;
public:
text(::nana::string label);
text(::nana::string label, ::nana::string init_text = ::nana::string());
text(::nana::string label, std::vector<::nana::string>);
~text();