diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-05 17:12:43 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-05 17:12:43 -0300 |
commit | f7fc073ac0de5326cffee25fd3e94c4d0b385136 (patch) | |
tree | ec3b76e4436c6266369151308155705c822b66ea /dw/ui.hh | |
parent | 58e0045791b62f309066e446a314cd26bc277a8b (diff) |
Added a right-click menu to the form submit button (allows to show hiddens)
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; |