search for: dock_direct

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

2007 Mar 19
0
[900] branches/wxruby2/wxwidgets_282/swig/classes: Initial commit of AUI core classes
...gt;<ins>+// Copyright 2007 by Kevin Smith +// released under the MIT-style wxruby2 license + +#if !defined(_wxAuiPaneInfo_h_) +#define _wxAuiPaneInfo_h_ + +class wxAuiPaneInfo +{ +public: + + wxAuiPaneInfo() + { + window = NULL; + frame = NULL; + state = 0; + dock_direction = wxAUI_DOCK_LEFT; + dock_layer = 0; + dock_row = 0; + dock_pos = 0; + floating_pos = wxDefaultPosition; + floating_size = wxDefaultSize; + best_size = wxDefaultSize; + min_size = wxDefaultSize; + max_size = wxDefaultSize; + dock_pro...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...elf) + msg = "Layer: %d" % pi.dock_layer + width, height = dc.get_text_extent(msg) + dc.draw_text(msg, + (size.x - width) / 2, + ( ( size.y - ( height * 5 ) ) / 2 ) + height ) + + msg = "Dock: %d Row: %d" % [ pi.dock_direction, pi.dock_row ] + width, height = dc.get_text_extent(msg) + dc.draw_text(msg, + (size.x - width) / 2, + ( ( size.y - ( height * 5 ) ) / 2) + ( height * 2 ) ) + + msg = "Position: %d" % pi.dock_pos + width, height = dc.g...