diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-10 16:11:57 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-10 16:11:57 +0100 |
commit | a9e1b0d2f8a98a5299981fd0c297d2a0befac30d (patch) | |
tree | 13101feab80f910f02f68b65e8d6e988c453c648 /dw/ui.hh | |
parent | c4f9b611e72fae43e354af489ece509525309b2a (diff) | |
parent | 08ca8a9857b54f2e647a555fd4f531c415adf042 (diff) |
merge with main
Diffstat (limited to 'dw/ui.hh')
-rw-r--r-- | dw/ui.hh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -243,6 +243,7 @@ public: void setWidth (int width); void setAscent (int ascent); void setDescent (int descent); + void setDisplayed (bool displayed); void draw (View *view, Rectangle *area); Iterator *iterator (Content::Type mask, bool atEnd); void setStyle (style::Style *style); @@ -336,6 +337,7 @@ public: virtual void setWidth (int width); virtual void setAscent (int ascent); virtual void setDescent (int descent); + virtual void setDisplayed (bool displayed); virtual void draw (View *view, Rectangle *area); virtual Iterator *iterator (Content::Type mask, bool atEnd) = 0; virtual void setStyle (style::Style *style); @@ -539,8 +541,8 @@ public: virtual ListResource *createListResource (ListResource::SelectionMode selectionMode) = 0; virtual OptionMenuResource *createOptionMenuResource () = 0; - virtual EntryResource *createEntryResource (int maxLength, - bool password) = 0; + virtual EntryResource *createEntryResource (int maxLength, bool password, + const char *label) = 0; virtual MultiLineTextResource *createMultiLineTextResource (int cols, int rows) = 0; virtual CheckButtonResource *createCheckButtonResource (bool activated) = 0; |