Displaying 20 results from an estimated 35 matches for "wxtreectrl".
Did you mean:
treectrl
2007 Jun 25
0
[1065] trunk/wxruby2/samples/bigdemo/wxTreeCtrl.rbw: Fix an icon file path issue
...c;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[1065] trunk/wxruby2/samples/bigdemo/wxTreeCtrl.rbw: Fix an icon file path issue</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>1065</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2007-06-25 13:32:39 -0400 (Mon,...
2006 Aug 18
10
TreeCtrl update
...e previous TreeCtrl.i was very messy and just plain wrong, for
instance it had GetFirstChild as depreciated when in fact only 1
version of it was depreciated not both.
I changed GetFirstChild and GetNextChild to return an array of values
to match the wxPython and wxPerl usage.
I also noticed that wxTreeCtrl is inherited from wxControl on Windows
and wxScrolledWindow on everything else so I #if defined the .i and .h
file accordingly.
I also added a .i and .h file for the class wxTreeItemId.
The TreeCtrl files were changed so much that I am just uploading the
whole files instead of the diffs.
travers...
2006 Mar 30
5
Patch for wxControl.h
Hello all. This gets past the problem in bigdemo where it won''t start
the application at all. That was where it was overflowing the stack on
get_label.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Aug 19
1
wxTreeCtrl.h Patch
The latest tarball won''t compile. Attached is a patch to the
wxTreeCtrl.h file that marks generic functions off when compiling on
Windows. Let me know if this is how you wanted the problem addressed.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Dec 28
2
controls within a wxTreeCtrl
What I''d like to be able to do is use a wxTreeCtrl to manage a tree layout
of not only text, but several buttons which would line up adjacent to the
text in the tree items. I''ve googled around a bit on this and it doesn''t
seem straightforward, if it is possible at all.
Can anyone provide any pointers for attempting this?
In a s...
2005 Sep 02
1
wxTreeCtrl.patch
Attached is a patch that fixes a crash out of the bigdemo when you click
into the tree control. I added in the missing single-argument version
of HitTest. Why WX has a single argument version of HitTest only for
the tree control, I''ll never know.
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2006 Dec 05
0
[779] trunk/wxruby2: Added TreeCtrl#traverse method and documentation
...t;ins>+// End item data fixes
</ins><span class="cx">
</span><ins>+
</ins><span class="cx"> // GC handling for item data objects
</span><span class="cx"> %{
</span><del>- static void RecursivelyGCMarkFrom(wxTreeCtrl *tree_ctrl, wxTreeItemId base_id )
</del><ins>+ // general recursion over a treectrl, starting from a base_id
+ // the function rec_func will be called in turn for each tree item,
+ // rec_func should be a funtion that receives a treectrl pointer and an ItemId
+ static void Recurse...
2007 Jun 05
0
[1046] trunk/wxruby2/swig/classes/TreeCtrl.i: Prevent crashes in TreeCtrl from premature deletion of associated ImageList
...@@
</span><span class="cx"> // wxTreeItemId fixes - these typemaps convert them to ruby Integers
</span><span class="cx"> %include "../shared/treeitemid_typemaps.i"
</span><span class="cx">
</span><ins>+%ignore wxTreeCtrl::AssignImageList;
+%ignore wxTreeCtrl::AssignButtonsImageList;
+%ignore wxTreeCtrl::AssignStateImageList;
+
</ins><span class="cx"> // ITEM DATA fixes - This is done so the API user never sees a
</span><span class="cx"> // TreeItemData object - where in W...
2007 Mar 29
0
[927] branches/wxruby2/wxwidgets_282/swig/classes: Changed the version of InsertItem that puts the item before current selection to InsertItemBefore
...IG.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#brancheswxruby2wxwidgets_282swigclassesTreeCtrli">branches/wxruby2/wxwidgets_282/swig/classes/TreeCtrl.i</a></li>
<li><a href="#brancheswxruby2wxwidgets_282swigclassesincludewxTreeCtrlh">branches/wxruby2/wxwidgets_282/swig/classes/include/wxTreeCtrl.h</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="brancheswxruby2wxwidgets_282swigclassesTreeCtrli"></a>
<div class="modfile"&...
2007 Mar 27
0
[920] branches/wxruby2/wxwidgets_282/swig/classes/TreeCtrl.i: Fix compile error: TreeCtrl no longer inherits from wxScrolledWindow on GTK/Mac
...classes/TreeCtrl.i        2007-03-27 17:54:41 UTC (rev 920)
</span><span class="lines">@@ -98,19 +98,12 @@
</span><span class="cx"> %}
</span><span class="cx"> %markfunc wxTreeCtrl "mark_wxTreeCtrl";
</span><span class="cx">
</span><del>-%import "include/wxObject.h"
-%import "include/wxEvtHandler.h"
-%import "include/wxWindow.h"
-
-#if defined(__WXMSW__)
</del><span class="cx"> %i...
2006 Dec 23
0
[797] trunk/wxruby2/swig/classes/TreeCtrl.i: Traverse method moved to wxSugar
...itemdata
</ins><span class="cx"> static void DoGCMarkItemData(void *ptr, const wxTreeItemId& item_id)
</span><span class="cx"> {
</span><span class="cx">         wxTreeCtrl* tree_ctrl = (wxTreeCtrl*) ptr;
</span><span class="lines">@@ -90,15 +91,6 @@
</span><span class="cx">         wxTreeItemId root_id = tree_ctrl->GetRootItem();
</span><span class=...
2007 Jan 05
0
[832] trunk/wxruby2/samples: Fix samples for TreeItemIds as integers, fix image size in treectrl sample
...Ids as integers, fix image size in treectrl sample</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwxruby2samplesbigdemobigdemorb">trunk/wxruby2/samples/bigdemo/bigdemo.rb</a></li>
<li><a href="#trunkwxruby2samplesbigdemowxTreeCtrlrbw">trunk/wxruby2/samples/bigdemo/wxTreeCtrl.rbw</a></li>
<li><a href="#trunkwxruby2samplestreectrltreectrlrb">trunk/wxruby2/samples/treectrl/treectrl.rb</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3&g...
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...aying variables looks like, as an
example:
class VariableItem : public TreeItemBase {
public:
VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var)
: module_(module), var_(var) {}
// Overrides
int GetIcon() const;
wxString GetCaption() const;
void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id);
bool CanCreateChildren() const;
void ShowDetails(DetailsView* detailsView);
private:
const llvm::Module* const module_;
const llvm::GlobalVariable* const var_;
};
--
-- Talin
-------------- next part --------------
An HTML attachment was scrubbed...
U...
2006 Nov 16
0
[741] trunk/wxruby2: Fix get_item_data, hiding TreeItemData messiness, fix GC-ing (Alex Fenton)
...006-11-15 18:41:10 UTC (rev 740)
+++ trunk/wxruby2/doc/textile/treectrl.txtl        2006-11-16 21:12:52 UTC (rev 741)
</span><span class="lines">@@ -1,11 +1,10 @@
</span><span class="cx"> h1(#wxtreectrl). Wx::TreeCtrl
</span><span class="cx">
</span><del>-A tree control presents information as a hierarchy, with items that may be expanded
-to show further items. Items in a tree control are referenced by TreeItemId handles,
-which may be tested for validity by call...
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...
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...ple:
>
> class VariableItem : public TreeItemBase {
> public:
> VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var)
> : module_(module), var_(var) {}
>
> // Overrides
>
> int GetIcon() const;
> wxString GetCaption() const;
> void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id);
> bool CanCreateChildren() const;
> void ShowDetails(DetailsView* detailsView);
>
> private:
> const llvm::Module* const module_;
> const llvm::GlobalVariable* const var_;
> };
>
>
> --
> -- Talin
-------------- next part --------...
2011 Feb 12
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...> class VariableItem : public TreeItemBase {
> public:
> VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var)
> : module_(module), var_(var) {}
>
> // Overrides
>
> int GetIcon() const;
> wxString GetCaption() const;
> void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id);
> bool CanCreateChildren() const;
> void ShowDetails(DetailsView* detailsView);
>
> private:
> const llvm::Module* const module_;
> const llvm::GlobalVariable* const var_;
> };
>
>
> --
> -- Talin
____________________...
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...lass VariableItem : public TreeItemBase {
> public:
> VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var)
> : module_(module), var_(var) {}
>
> // Overrides
>
> int GetIcon() const;
> wxString GetCaption() const;
> void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id);
> bool CanCreateChildren() const;
> void ShowDetails(DetailsView* detailsView);
>
> private:
> const llvm::Module* const module_;
> const llvm::GlobalVariable* const var_;
> };
>
> --
> -- Talin
> ______________________...
2006 Aug 10
3
update on samples
Hi all
Have been taking a look at the samples to see what''s broken. Not looking
TOO bad overall, but a few problems we should try and tackle before alpha:
Firstly, I have a few commits (minimal, dialogs, unicode) - anyone else
been working on these or can I go ahead?
One general issue is that many of the samples rely on being run from
their own directory, but don''t enforce
2007 Apr 13
0
[956] branches/wxruby2/wxwidgets_282: Additions to TreeCtrl API 2.6->2.8
...lt;/pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#brancheswxruby2wxwidgets_282doctextiletreectrltxtl">branches/wxruby2/wxwidgets_282/doc/textile/treectrl.txtl</a></li>
<li><a href="#brancheswxruby2wxwidgets_282swigclassesincludewxTreeCtrlh">branches/wxruby2/wxwidgets_282/swig/classes/include/wxTreeCtrl.h</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="brancheswxruby2wxwidgets_282doctextiletreectrltxtl"></a>
<div class="modfile"...