bool wxOpenClipboard()
{
- wxCHECK_MSG( !gs_wxClipboardIsOpen, TRUE, wxT("clipboard already opened.") );
+ wxCHECK_MSG( !gs_wxClipboardIsOpen, true, wxT("clipboard already opened.") );
// TODO:
/*
wxWindow *win = wxTheApp->GetTopWindow();
return FALSE;
}
*/
- return TRUE;
+ return true;
}
bool wxEmptyClipboard()
return FALSE;
}
*/
- return TRUE;
+ return true;
}
bool wxIsClipboardOpened()
return gs_wxClipboardIsOpen;
}
-bool wxIsClipboardFormatAvailable(wxDataFormat dataFormat)
+bool wxIsClipboardFormatAvailable(wxDataFormat WXUNUSED(dataFormat))
{
// TODO: return ::IsClipboardFormatAvailable(dataFormat) != 0;
- return FALSE;
+ return false;
}
#if 0
return FALSE;
}
*/
- return TRUE;
+ return true;
}
#endif // wxUSE_DRAG_AND_DROP
#endif
return FALSE;
}
*/
- return TRUE;
+ return true;
}
void *wxGetClipboardData(wxDataFormat dataFormat, long *len)
wxBM->SetWidth(bm.bmWidth);
wxBM->SetHeight(bm.bmHeight);
wxBM->SetDepth(bm.bmPlanes);
- wxBM->SetOk(TRUE);
+ wxBM->SetOk(true);
retval = wxBM;
break;
}
if ( data )
return AddData(data);
else
- return TRUE;
+ return true;
*/
- return TRUE;
+ return true;
}
bool wxClipboard::AddData( wxDataObject *data )
wxCloseClipboard();
}
-bool wxClipboard::IsSupported( wxDataFormat format )
+bool wxClipboard::IsSupported( const wxDataFormat& format )
{
return wxIsClipboardFormatAvailable(format);
}
{
textDataObject.SetText(s);
delete[] s;
- return TRUE;
+ return true;
}
else
return FALSE;
{
bitmapDataObject.SetBitmap(* bitmap);
delete bitmap;
- return TRUE;
+ return true;
}
else
return FALSE;
{
metaFileDataObject.SetMetafile(*metaFile);
delete metaFile;
- return TRUE;
+ return true;
}
else
return FALSE;
((wxPrivateDataObject &)data).SetData(buf, len);
free(buf);
- return TRUE;
+ return true;
}
}
#endif
}
-#else
- #error "Please turn wxUSE_CLIPBOARD on to compile this file."
#endif // wxUSE_CLIPBOARD
-