Definition at line 375 of file BookmarkBase.java.
◆ PerformanceFlags() [1/2]
com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.PerformanceFlags |
( |
| ) |
|
|
inline |
Definition at line 399 of file BookmarkBase.java.
400 {
401 remotefx = false;
402 gfx = true;
403 h264 = true;
404 wallpaper = false;
405 theming = false;
406 fullWindowDrag = false;
407 menuAnimations = false;
408 fontSmoothing = false;
409 desktopComposition = false;
410 }
◆ PerformanceFlags() [2/2]
com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.PerformanceFlags |
( |
Parcel |
parcel | ) |
|
|
inline |
Definition at line 412 of file BookmarkBase.java.
413 {
414 remotefx = parcel.readInt() == 1;
415 gfx = parcel.readInt() == 1;
416 h264 = parcel.readInt() == 1;
417 wallpaper = parcel.readInt() == 1;
418 theming = parcel.readInt() == 1;
419 fullWindowDrag = (parcel.readInt() == 1);
420 menuAnimations = parcel.readInt() == 1;
421 fontSmoothing = parcel.readInt() == 1;
422 desktopComposition = parcel.readInt() == 1;
423 }
◆ 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 510 of file BookmarkBase.java.
511 {
512 this.desktopComposition = desktopComposition;
513 }
◆ setFontSmoothing()
void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setFontSmoothing |
( |
boolean |
fontSmoothing | ) |
|
|
inline |
Definition at line 500 of file BookmarkBase.java.
501 {
502 this.fontSmoothing = fontSmoothing;
503 }
◆ setFullWindowDrag()
void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setFullWindowDrag |
( |
boolean |
fullWindowDrag | ) |
|
|
inline |
Definition at line 480 of file BookmarkBase.java.
481 {
482 this.fullWindowDrag = fullWindowDrag;
483 }
◆ 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 490 of file BookmarkBase.java.
491 {
492 this.menuAnimations = menuAnimations;
493 }
◆ 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 520 of file BookmarkBase.java.
521 {
522 out.writeInt(remotefx ? 1 : 0);
523 out.writeInt(gfx ? 1 : 0);
524 out.writeInt(h264 ? 1 : 0);
525 out.writeInt(wallpaper ? 1 : 0);
526 out.writeInt(theming ? 1 : 0);
527 out.writeInt(fullWindowDrag ? 1 : 0);
528 out.writeInt(menuAnimations ? 1 : 0);
529 out.writeInt(fontSmoothing ? 1 : 0);
530 out.writeInt(desktopComposition ? 1 : 0);
531 }
◆ 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 377 of file BookmarkBase.java.
378 {
379 public PerformanceFlags createFromParcel(Parcel in)
380 {
381 return new PerformanceFlags(in);
382 }
383
384 @Override public PerformanceFlags[] newArray(int size)
385 {
386 return new PerformanceFlags[size];
387 }
388 };
The documentation for this class was generated from the following file: