search for: geticon

Displaying 16 results from an estimated 16 matches for "geticon".

Did you mean: getcon
2009 Oct 08
2
proto and get()
...g, library(ggplot2) # this returns a grob, OK GeomAbline$icon() # lines[GRID.lines.9] # this returns the function icon, OK GeomAbline$icon # proto method (instantiated with ): function (.) # linesGrob(c(0, 1), c(0.2, 0.8)) # <environment: 0x13e6800> Now I want to wrap this in a function, getIcon <- function(geom){ st <- paste("Geom", firstUpper(geom), sep="") g <- get(st, 2) g$icon() } getIcon("abline") # still OK # lines[GRID.lines.10] but ... getIcon <- function(geom){ st <- paste("Geom", firstUpper(geom), sep="&quo...
2007 Jan 08
0
[844] trunk/wxruby2/swig/classes: Added IconBundle class for multi-resolution icons, cleaned comment cruft
...the bundle. If size = wxSize( -1, -1 ), -returns the icon with size wxSYS_ICON_X/wxSYS_ICON_Y. -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \param const wxSize& -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp*/ - - const wxIcon& GetIcon(const wxSize& size ) const; -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp/** -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \brief Same as GetIcon( wxSize( size, size ) ). -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp...
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...: [image: llbrowse.png] And here's what the node class for displaying 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 ---...
2005 Oct 06
3
nested classes
I am working on wxFileType and wxMimeTypesManager, most of which I have done but I had to comment out a nested class in wxFileType and the methods that use it. Does anyone have a clever way to get around nested classes since SWIG does not currently support them? Sean
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...9;s what the node class for displaying 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...
2011 Feb 12
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...he node class for displaying 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...
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...the node class for displaying 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::GlobalVar...
2006 Sep 14
2
Patch to fix ArtProvider and ArtProvider sample
These patches better implement ArtProvider and add the demo for it. I also expanded the bigdemo window a little bit. I really think we should go larger but I suppose there might be some people at 800x600 still. Note that creating your own art provider still doesn''t quite work correctly. I didn''t have time to get into that. The RubyConstants.i.patch file looks weird. Not
2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...he node class for displaying 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::GlobalVari...
2006 Sep 21
1
ArtProvider.i.patch
ArtProvider.i patch to make wxruby compile with gcc 4.1.1(gentoo) the error message was: src/ArtProvider.cpp:1664: error: extra qualification ''wxRubyArtProvider::'' on member ''GetIcon'' _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2008 Nov 29
3
Can't run Evidence Scribe
Hello, I have a program called "Evidence Scribe" it runs with .NET Whenever I try to run it I receive this: Code: blake at blake-desktop ~ $ env WINEPREFIX="/home/blake/.wine" wine "C:\Program Files\Idoneum\Evidence Scribe\Evidence Scribe.exe" fixme:gdiplus:GdipGetFontHeightGivenDPI Unhandled unit type: 3 Unhandled Exception: System.InvalidOperationException:
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
..., 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_; &...
2011 Feb 12
2
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...he node class for displaying 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::GlobalVari...
2007 Apr 30
0
[996] branches/wxruby2/wxwidgets_282: TopLevelWindow: add some 2.8 methods; document; add missing CentreOnScreen
...ot;:#TopLevelWindow_cansettransparent +* "TopLevelWindow#enable_close_button":#TopLevelWindow_enableclosebutton +* "TopLevelWindow#get_default_item":#TopLevelWindow_getdefaultitem </ins><span class="cx"> * "TopLevelWindow#get_icon":#TopLevelWindow_geticon </span><span class="cx"> * "TopLevelWindow#get_icons":#TopLevelWindow_geticons </span><span class="cx"> * "TopLevelWindow#get_title":#TopLevelWindow_gettitle </span><ins>+* "TopLevelWindow#handle_setting_change":#...
2007 Jul 04
0
[1103] trunk/wxruby2: Added 2.8 methods to StaticBitmap & document them; cleanup header file
...taticBitmap_new </span><span class="cx"> * "StaticBitmap#create":#StaticBitmap_create </span><span class="cx"> * "StaticBitmap#get_bitmap":#StaticBitmap_getbitmap </span><ins>+* "StaticIcon#get_icon":#StaticBitmap_geticon </ins><span class="cx"> * "StaticBitmap#set_bitmap":#StaticBitmap_setbitmap </span><ins>+* "StaticIcon#set_icon":#StaticBitmap_seticon </ins><span class="cx"> </span><span class="cx"> </div> &lt...
2007 Mar 17
0
[883] branches/wxruby2/wxwidgets_282/swig: API changes for move to WxWidgets 2.8
...ic wxObject </span><span class="cx"> { </span><span class="cx"> public: </span><del>- static wxBitmap GetBitmap(const wxArtID& id , const wxArtClient& client = wxART_OTHER, const wxSize& size = wxDefaultSize) ; - static wxIcon GetIcon(const wxArtID& id , const wxArtClient& client = wxART_OTHER, const wxSize& size = wxDefaultSize) ; - static bool PopProvider() ; - static void PushProvider(wxArtProvider* provider ) ; - static bool RemoveProvider(wxArtProvider* provider ) ; </del><ins>+ static bool...