FreeRDP
Loading...
Searching...
No Matches
com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags Class Reference
Inheritance diagram for com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags:
Collaboration diagram for com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags:

Public Member Functions

 PerformanceFlags (Parcel parcel)
 
boolean getRemoteFX ()
 
void setRemoteFX (boolean remotefx)
 
boolean getGfx ()
 
void setGfx (boolean gfx)
 
boolean getH264 ()
 
void setH264 (boolean h264)
 
boolean getWallpaper ()
 
void setWallpaper (boolean wallpaper)
 
boolean getTheming ()
 
void setTheming (boolean theming)
 
boolean getFullWindowDrag ()
 
void setFullWindowDrag (boolean fullWindowDrag)
 
boolean getMenuAnimations ()
 
void setMenuAnimations (boolean menuAnimations)
 
boolean getFontSmoothing ()
 
void setFontSmoothing (boolean fontSmoothing)
 
boolean getDesktopComposition ()
 
void setDesktopComposition (boolean desktopComposition)
 
int describeContents ()
 
void writeToParcel (Parcel out, int flags)
 

Static Public Attributes

static final Parcelable.Creator< PerformanceFlagsCREATOR
 

Detailed Description

Definition at line 411 of file BookmarkBase.java.

Constructor & Destructor Documentation

◆ PerformanceFlags() [1/2]

com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.PerformanceFlags ( )
inline

Definition at line 435 of file BookmarkBase.java.

436 {
437 }

◆ 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 }

Member Function Documentation

◆ describeContents()

int com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.describeContents ( )
inline

Definition at line 542 of file BookmarkBase.java.

543 {
544 return 0;
545 }

◆ getDesktopComposition()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getDesktopComposition ( )
inline

Definition at line 532 of file BookmarkBase.java.

533 {
534 return desktopComposition;
535 }

◆ getFontSmoothing()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getFontSmoothing ( )
inline

Definition at line 522 of file BookmarkBase.java.

523 {
524 return fontSmoothing;
525 }

◆ getFullWindowDrag()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getFullWindowDrag ( )
inline

Definition at line 502 of file BookmarkBase.java.

503 {
504 return fullWindowDrag;
505 }

◆ getGfx()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getGfx ( )
inline

Definition at line 462 of file BookmarkBase.java.

463 {
464 return gfx;
465 }

◆ getH264()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getH264 ( )
inline

Definition at line 472 of file BookmarkBase.java.

473 {
474 return h264;
475 }

◆ getMenuAnimations()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getMenuAnimations ( )
inline

Definition at line 512 of file BookmarkBase.java.

513 {
514 return menuAnimations;
515 }

◆ getRemoteFX()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getRemoteFX ( )
inline

Definition at line 452 of file BookmarkBase.java.

453 {
454 return remotefx;
455 }

◆ getTheming()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getTheming ( )
inline

Definition at line 492 of file BookmarkBase.java.

493 {
494 return theming;
495 }

◆ getWallpaper()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.getWallpaper ( )
inline

Definition at line 482 of file BookmarkBase.java.

483 {
484 return wallpaper;
485 }

◆ 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

Definition at line 467 of file BookmarkBase.java.

468 {
469 this.gfx = gfx;
470 }

◆ setH264()

void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setH264 ( boolean  h264)
inline

Definition at line 477 of file BookmarkBase.java.

478 {
479 this.h264 = h264;
480 }

◆ 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

Definition at line 457 of file BookmarkBase.java.

458 {
459 this.remotefx = remotefx;
460 }

◆ setTheming()

void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setTheming ( boolean  theming)
inline

Definition at line 497 of file BookmarkBase.java.

498 {
499 this.theming = theming;
500 }

◆ setWallpaper()

void com.freerdp.freerdpcore.domain.BookmarkBase.PerformanceFlags.setWallpaper ( boolean  wallpaper)
inline

Definition at line 487 of file BookmarkBase.java.

488 {
489 this.wallpaper = wallpaper;
490 }

◆ 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 }

Field Documentation

◆ 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);
}
@Override public PerformanceFlags[] newArray(int size)
{
return new PerformanceFlags[size];
}
}

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: