search for: wxstatictext

Displaying 12 results from an estimated 12 matches for "wxstatictext".

Did you mean: statictext
2006 Sep 03
9
Patch files to implement AcceptFocus
These files add the virtual function AcceptFocus that was missing from wxWindow.h. In order to make things right I had to make sure it was also declared in all the places where wxWindows also changes it. Also, in wxTextCtrl on Windows GetDefaultAttributes needs to be redeclared. I haven''t downloaded the Unix and Mac headers for 2.6.3 so I couldn''t see if it also applies
2006 Sep 03
1
small fix to wxStaticText.rbw
This removes an extraneous colon and changes the text to match the actual background color _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2009 Apr 03
2
Problem with spacing
...ass="wxBoxSizer"> <orient>wxHORIZONTAL</orient> <object class="sizeritem"> <option>0</option> <flag>wxALL</flag> <border>5</border> <object class="wxStaticText" name="groupLabel"> <label>Contact Group:</label> </object> </object> <object class="sizeritem"> <option>0</option> <flag>wxALL</flag>...
2009 Nov 23
1
xrcise not working
...lt;orient>wxVERTICAL</orient> <object class="sizeritem"> <option>0</option> <flag>wxALL|wxALIGN_CENTER_HORIZONTAL</flag> <border>5</border> <object class="wxStaticText" name="m_staticText12"> <label>Test</label> </object> </object> <object class="sizeritem"> <option>1</option> <flag>wxEXPAND</fl...
2004 Feb 24
1
Tweaks for 0.2
...to be changed to: VALUE WxValidator::GetWindow(VALUE self) { wxRbValidator *ptr; Data_Get_Struct(self, wxRbValidator, ptr); return WxRbTypeTable::ConvertCppObject(ptr->GetWindow()); } 3) The following line needs to be added into dynamiccast.cpp Init method: WXRB_ADD_TYPE_CONV(WxStaticText,"wxStaticText"); also, the line #include "statictext.h" needs to be added to the top. Like I said, I can make a diff of these tonight. I''m not sure if we want to make it part of 0.2 or wait to 0.3. It''s pretty obvious that validators have never work...
2010 Nov 13
2
Scrolling / wxPanel / wxFlexGridSizer
I have a problem getting scroll bars to become active. Scrollbars appear but do not actually scroll. The problem I am trying to solve is to list a large number of key/value pairs. I looked to use PropertyGrid but did not find it in wxruby 2.0.1. I''m really stuck and would appreciate any help. Thanks, Dave Details: I am starting with an .xrc file containing: ...
2006 Apr 23
5
Re: StaticBoxSizer bug?
...stFrame(const wxString & title) : > wxFrame(NULL, wxID_ANY, title) > { > wxPanel *panel = new wxPanel(this, wxID_ANY); > wxBoxSizer *boxSizer = new wxBoxSizer(wxHORIZONTAL); > wxStaticBox *box = new wxStaticBox(panel, wxID_ANY, wxT("BoxTitle")); > wxStaticText *text = new wxStaticText(panel, wxID_ANY, wxT("Some text!")); > wxStaticBoxSizer *staticBoxSizer = new wxStaticBoxSizer(box, wxVERTICAL); > > staticBoxSizer->Add(text, 1, wxEXPAND | wxALL, 16); > boxSizer->Add(staticBoxSizer, 1, wxEXPAND | wxALL, 16); > pane...
2004 Oct 06
11
find_window_by_xxx doesn''t find Gauge or BitmapButton
I''m fairly new to the Ruby world, particularly WxRuby, so please forgive me if this is ground that''s been covered in the past. I''m trying to load a frame from an XRC file (created using DialogBlocks), and I''m having trouble getting an instance of the Gauge object using the Wx::Window.find_window_by_xxx methods. I''m trying this on Windows XP,
2007 Nov 12
4
XRCise says "Cannot create wrapper for subclass of wxWizard"
...class="wxBoxSizer"> <orient>wxVERTICAL</orient> <object class="sizeritem"> <flag>wxGROW|wxALL</flag> <border>5</border> <object class="wxStaticText" name="wxID_STATIC"> <label>This is some static text.</label> </object> </object> </object> </object> </object> </resource> -------------------------...
2009 Mar 27
0
xrciser problem
...eritem"> <flag>wxGROW|wxALL</flag> <border>5</border> <option>1</option> <object class="wxStaticText" name="m_staticText1"> <tooltip>Instructions</tooltip> <style>wxALIGN_LEFT</style> <label>Step 1</label>...
2006 Dec 02
7
Gauge Problem with XRC?
Hi I''ve just started using wxruby2-preview-0.0.36-i386-mswin32 outsourcing layout part to the external XRC file. Almost everything seems to be fine. Only that I can never retrieve Gauge objects in the main script. What I''ve been trying is something like this: class MainFrame < Wx::Frame include Wx def initialize(parent) super(nil,-1, "")
2005 May 03
10
Is wxRuby-SWIG version usable enough to package for download?
If wxRuby-SWIG is as usable as wxRuby 0.6.0, maybe it should be given a version number and packaged up for download. Given the nature of SWIG, having a lot more people use it would probably result in more code contributions to this project. Seems most of the changes are 2+ months old, so I''m guessing wxRuby-SWIG is fairly stable right now in terms of frequency of changes...