wxwidgets.cfg: Added support for more interfaces.
This commit is contained in:
parent
cdc602e1be
commit
b4aec4e39d
|
@ -326,6 +326,13 @@
|
|||
<define name="wxIMAGE_QUALITY_BOX_AVERAGE" value="3"/>
|
||||
<define name="wxIMAGE_QUALITY_NORMAL" value="4"/>
|
||||
<define name="wxIMAGE_QUALITY_HIGH" value="5"/>
|
||||
<define name="wxTextFileType_None" value="0"/>
|
||||
<define name="wxTextFileType_Unix" value="1"/>
|
||||
<define name="wxTextFileType_Dos" value="2"/>
|
||||
<define name="wxTextFileType_Mac" value="3"/>
|
||||
<define name="wxTextFileType_Os2" value="4"/>
|
||||
<define name="wxTextEntryDialogStyle" value="(wxOK | wxCANCEL | wxCENTRE | wxWS_EX_VALIDATE_RECURSIVELY)"/>
|
||||
<define name="wxWS_EX_VALIDATE_RECURSIVELY" value="1"/>
|
||||
<define name="wxPNG_TYPE_COLOUR" value="0"/>
|
||||
<define name="wxPNG_TYPE_GREY" value="2"/>
|
||||
<define name="wxPNG_TYPE_GREY_RED" value="3"/>
|
||||
|
@ -5617,6 +5624,7 @@
|
|||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
<valid>1:</valid>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- http://docs.wxwidgets.org/trunk/classwx_text_file.html -->
|
||||
|
@ -7295,7 +7303,8 @@
|
|||
<!-- virtual void wxTextEntry::SetValue (const wxString & value)-->
|
||||
<!-- virtual void wxTextCtrl::SetValue (const wxString & value)-->
|
||||
<!-- virtual void wxComboBox::SetValue (const wxString & value)-->
|
||||
<function name="wxTextEntry::SetValue,wxTextCtrl::SetValue,wxComboBox::SetValue">
|
||||
<!-- virtual void wxStyledTextCtrl::SetValue (const wxString & value)-->
|
||||
<function name="wxTextEntry::SetValue,wxTextCtrl::SetValue,wxComboBox::SetValue,wxStyledTextCtrl::SetValue">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in"/>
|
||||
|
@ -8267,7 +8276,8 @@
|
|||
<!-- void wxTextEntry::WriteText( const wxString & text ) -->
|
||||
<!-- void wxTextCtrl::AppendText( const wxString & text ) -->
|
||||
<!-- void wxTextCtrl::WriteText( const wxString & text ) -->
|
||||
<function name="wxTextEntry::AppendText,wxTextEntry::WriteText,wxTextCtrl::AppendText,wxTextCtrl::WriteText">
|
||||
<!-- void wxStyledTextCtrl::AppendText( const wxString & text ) -->
|
||||
<function name="wxTextEntry::AppendText,wxTextEntry::WriteText,wxTextCtrl::AppendText,wxTextCtrl::WriteText,wxStyledTextCtrl::AppendText">
|
||||
<leak-ignore/>
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
|
@ -10572,4 +10582,50 @@
|
|||
<leak-ignore/>
|
||||
<arg nr="1" default="wxEmptyString" direction="in"/>
|
||||
</function>
|
||||
<!-- bool wxTextFile::Open(const wxString & strFile, const wxMBConv & conv = wxConvAuto()) -->
|
||||
<function name="wxTextFile::Open">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="bool"/>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in"/>
|
||||
<arg nr="2" default="wxConvAuto()" direction="in"/>
|
||||
</function>
|
||||
<!-- bool wxTextFile::Write(wxTextFileType typeNew = wxTextFileType_None, const wxMBConv & conv = wxConvAuto()) -->
|
||||
<function name="wxTextFile::Write">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="bool"/>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" default="wxTextFileType_None" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" default="wxConvAuto()" direction="in"/>
|
||||
</function>
|
||||
<!-- wxString wxGetPasswordFromUser (const wxString & message,
|
||||
const wxString & caption = wxGetPasswordFromUserPromptStr,
|
||||
const wxString & default_value = wxEmptyString,
|
||||
wxWindow * parent = NULL,
|
||||
int x = wxDefaultCoord,
|
||||
int y = wxDefaultCoord,
|
||||
bool centre = true) -->
|
||||
<function name="wxGetPasswordFromUser">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="wxString"/>
|
||||
<use-retval/>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in"/>
|
||||
<arg nr="2" default="Enter Password" direction="in"/>
|
||||
<arg nr="3" default="wxEmptyString" direction="in"/>
|
||||
<arg nr="4" default="NULL" direction="inout">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="5" default="wxDefaultCoord" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="6" default="wxDefaultCoord" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="7" default="true" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
</def>
|
||||
|
|
Loading…
Reference in New Issue