• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/

Lines Matching refs:wxPlatform

120  *  long val = wxPlatform::If(wxMac, 1).ElseIf(wxGTK, 2).ElseIf(stPDA, 5).Else(3);
121 * wxString strVal = wxPlatform::If(wxMac, wxT("Mac")).ElseIf(wxMSW, wxT("MSW")).Else(wxT("Other"));
127 * wxPlatform::AddPlatform(stPDA);
130 * long windowStyle = wxCAPTION | (long) wxPlatform::IfNot(stPDA, wxRESIZE_BORDER);
134 class WXDLLIMPEXP_BASE wxPlatform
137 wxPlatform() { Init(); }
138 wxPlatform(const wxPlatform& platform) { Copy(platform); }
139 void operator = (const wxPlatform& platform) { Copy(platform); }
140 void Copy(const wxPlatform& platform);
143 wxPlatform(int defValue) { Init(); m_longValue = (long)defValue; }
144 wxPlatform(long defValue) { Init(); m_longValue = defValue; }
145 wxPlatform(const wxString& defValue) { Init(); m_stringValue = defValue; }
146 wxPlatform(double defValue) { Init(); m_doubleValue = defValue; }
148 static wxPlatform If(int platform, long value);
149 static wxPlatform IfNot(int platform, long value);
150 wxPlatform& ElseIf(int platform, long value);
151 wxPlatform& ElseIfNot(int platform, long value);
152 wxPlatform& Else(long value);
154 static wxPlatform If(int platform, int value) { return If(platform, (long)value); }
155 static wxPlatform IfNot(int platform, int value) { return IfNot(platform, (long)value); }
156 wxPlatform& ElseIf(int platform, int value) { return ElseIf(platform, (long) value); }
157 wxPlatform& ElseIfNot(int platform, int value) { return ElseIfNot(platform, (long) value); }
158 wxPlatform& Else(int value) { return Else((long) value); }
160 static wxPlatform If(int platform, double value);
161 static wxPlatform IfNot(int platform, double value);
162 wxPlatform& ElseIf(int platform, double value);
163 wxPlatform& ElseIfNot(int platform, double value);
164 wxPlatform& Else(double value);
166 static wxPlatform If(int platform, const wxString& value);
167 static wxPlatform IfNot(int platform, const wxString& value);
168 wxPlatform& ElseIf(int platform, const wxString& value);
169 wxPlatform& ElseIfNot(int platform, const wxString& value);
170 wxPlatform& Else(const wxString& value);
197 inline bool wxPlatformIs(int platform) { return wxPlatform::Is(platform); }