Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wxwidgets.cfg: Added some wxGridCellAttr functions #6024

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions cfg/wxwidgets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11451,6 +11451,93 @@
<not-null/>
</arg>
</function>
<!-- wxGridCellEditorPtr wxGridCellAttr::GetEditorPtr( const wxGrid * grid, int row, int col ) const -->
<function name="wxGridCellAttr::GetEditorPtr">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxGridCellEditorPtr"/>
<const/>
<arg nr="1" direction="inout">
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
</arg>
</function>
<!-- wxGridFitMode wxGridCellAttr::GetFitMode( void ) const -->
<function name="wxGridCellAttr::GetFitMode">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxGridFitMode"/>
<use-retval/>
<const/>
</function>
<!-- const wxFont & wxGridCellAttr::GetFont( void ) const -->
<function name="wxGridCellAttr::GetFont">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="const wxFont &amp;"/>
<use-retval/>
<const/>
</function>
<!-- wxAttrKind wxGridCellAttr::GetKind( void ) -->
<function name="wxGridCellAttr::GetKind">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxAttrKind"/>
<use-retval/>
</function>
<!-- void wxGridCellAttr::GetNonDefaultAlignment( int * hAlign, int * vAlign ) const -->
<function name="wxGridCellAttr::GetNonDefaultAlignment">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="void"/>
<const/>
<arg nr="1" direction="inout">
</arg>
<arg nr="2" direction="inout">
</arg>
</function>
<!-- bool wxGridCellAttr::GetOverflow( void ) const -->
<function name="wxGridCellAttr::GetOverflow">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="bool"/>
<use-retval/>
<const/>
</function>
<!-- wxGridCellRenderer * wxGridCellAttr::GetRenderer( const wxGrid * grid, int row, int col ) const -->
<function name="wxGridCellAttr::GetRenderer">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxGridCellRenderer *"/>
<const/>
<arg nr="1" direction="inout">
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
</arg>
</function>
<!-- wxGridCellRendererPtr wxGridCellAttr::GetRendererPtr( const wxGrid * grid, int row, int col ) const -->
<function name="wxGridCellAttr::GetRendererPtr">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxGridCellRendererPtr"/>
<const/>
<arg nr="1" direction="inout">
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
</arg>
</function>
<!-- virtual wxStatusBar* wxFrameBase::CreateStatusBar(int number = 1, long style = wxSTB_DEFAULT_STYLE, wxWindowID id = 0, const wxString & name = wxStatusBarNameStr)-->
<!-- virtual wxStatusBar* wxFrame::CreateStatusBar(int number = 1, long style = wxSTB_DEFAULT_STYLE, wxWindowID id = 0, const wxString & name = wxStatusBarNameStr)-->
<function name="wxFrameBase::CreateStatusBar,wxFrame::CreateStatusBar">
Expand Down
Loading