Definition at line 411 of file BookmarkBase.java.
◆ PerformanceFlags() [1/2]
| com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.PerformanceFlags |
( |
| ) |
|
|
inline |
◆ PerformanceFlags() [2/2]
| com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.PerformanceFlags |
( |
Parcel |
parcel | ) |
|
|
inline |
Definition at line 439 of file BookmarkBase.java.
440 {
441 remotefx = parcel.readInt() != 0;
442 gfx = parcel.readInt() != 0;
443 h264 = parcel.readInt() != 0;
444 wallpaper = parcel.readInt() != 0;
445 theming = parcel.readInt() != 0;
446 fullWindowDrag = (parcel.readInt() != 0);
447 menuAnimations = parcel.readInt() != 0;
448 fontSmoothing = parcel.readInt() != 0;
449 desktopComposition = parcel.readInt() != 0;
450 }
◆ describeContents()
| int com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.describeContents |
( |
| ) |
|
|
inline |
◆ getDesktopComposition()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getDesktopComposition |
( |
| ) |
|
|
inline |
◆ getFontSmoothing()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getFontSmoothing |
( |
| ) |
|
|
inline |
◆ getFullWindowDrag()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getFullWindowDrag |
( |
| ) |
|
|
inline |
◆ getGfx()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getGfx |
( |
| ) |
|
|
inline |
◆ getH264()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getH264 |
( |
| ) |
|
|
inline |
◆ getMenuAnimations()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getMenuAnimations |
( |
| ) |
|
|
inline |
◆ getRemoteFX()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getRemoteFX |
( |
| ) |
|
|
inline |
◆ getTheming()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getTheming |
( |
| ) |
|
|
inline |
◆ getWallpaper()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getWallpaper |
( |
| ) |
|
|
inline |
◆ setDesktopComposition()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setDesktopComposition |
( |
boolean |
desktopComposition | ) |
|
|
inline |
Definition at line 537 of file BookmarkBase.java.
538 {
539 this.desktopComposition = desktopComposition;
540 }
◆ setFontSmoothing()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setFontSmoothing |
( |
boolean |
fontSmoothing | ) |
|
|
inline |
Definition at line 527 of file BookmarkBase.java.
528 {
529 this.fontSmoothing = fontSmoothing;
530 }
◆ setFullWindowDrag()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setFullWindowDrag |
( |
boolean |
fullWindowDrag | ) |
|
|
inline |
Definition at line 507 of file BookmarkBase.java.
508 {
509 this.fullWindowDrag = fullWindowDrag;
510 }
◆ setGfx()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setGfx |
( |
boolean |
gfx | ) |
|
|
inline |
◆ setH264()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setH264 |
( |
boolean |
h264 | ) |
|
|
inline |
◆ setMenuAnimations()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setMenuAnimations |
( |
boolean |
menuAnimations | ) |
|
|
inline |
Definition at line 517 of file BookmarkBase.java.
518 {
519 this.menuAnimations = menuAnimations;
520 }
◆ setRemoteFX()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setRemoteFX |
( |
boolean |
remotefx | ) |
|
|
inline |
◆ setTheming()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setTheming |
( |
boolean |
theming | ) |
|
|
inline |
◆ setWallpaper()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setWallpaper |
( |
boolean |
wallpaper | ) |
|
|
inline |
◆ writeToParcel()
| void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.writeToParcel |
( |
Parcel |
out, |
|
|
int |
flags |
|
) |
| |
|
inline |
Definition at line 547 of file BookmarkBase.java.
548 {
549 out.writeInt(remotefx ? 1 : 0);
550 out.writeInt(gfx ? 1 : 0);
551 out.writeInt(h264 ? 1 : 0);
552 out.writeInt(wallpaper ? 1 : 0);
553 out.writeInt(theming ? 1 : 0);
554 out.writeInt(fullWindowDrag ? 1 : 0);
555 out.writeInt(menuAnimations ? 1 : 0);
556 out.writeInt(fontSmoothing ? 1 : 0);
557 out.writeInt(desktopComposition ? 1 : 0);
558 }
◆ CREATOR
| final Parcelable.Creator<PerformanceFlags> com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.CREATOR |
|
static |
Initial value:=
new Parcelable.Creator<PerformanceFlags>() {
public PerformanceFlags createFromParcel(Parcel in)
{
return new PerformanceFlags(in);
}
{
}
}
Definition at line 413 of file BookmarkBase.java.
414 {
415 public PerformanceFlags createFromParcel(Parcel in)
416 {
417 return new PerformanceFlags(in);
418 }
419
420 @Override public PerformanceFlags[] newArray(int size)
421 {
422 return new PerformanceFlags[size];
423 }
424 };
The documentation for this class was generated from the following file: