search for: canveto

Displaying 2 results from an estimated 2 matches for "canveto".

Did you mean: can_veto
2004 Mar 29
1
Error in dialogs.rb sample
Using the wrong method name. 106c106 < if event.CanVeto() --- > if event.can_veto() ##################################################################################### This email has been scanned by MailMarshal, an email content filter. #####################################################################################
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...ined(_wxAuiManagerEvent_h_) +#define _wxAuiManagerEvent_h_ + + +class wxAuiManagerEvent : public wxEvent +{ +public: + wxAuiManagerEvent(wxEventType type=wxEVT_NULL) : wxEvent(0, type) + { + manager = NULL; + pane = NULL; + button = 0; + veto_flag = false; + canveto_flag = true; + dc = NULL; + } + + wxEvent *Clone() const { return new wxAuiManagerEvent(*this); } + + void SetManager(wxAuiManager* mgr) { manager = mgr; } + void SetPane(wxAuiPaneInfo* p) { pane = p; } + void SetButton(int b) { button = b; } + void SetDC(wxDC* pdc) { dc =...