134 lines
3.0 KiB
Java
134 lines
3.0 KiB
Java
package com.kofax.kmc.kui.uicontrols.captureanimations;
|
|
|
|
import android.graphics.Bitmap;
|
|
import android.graphics.Typeface;
|
|
import android.graphics.drawable.Drawable;
|
|
import com.kofax.mobile.sdk._internal.capture.CaptureMessage;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class CaptureMessage {
|
|
com.kofax.mobile.sdk._internal.capture.CaptureMessage mM;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum KUIMessageOrientation {
|
|
PORTRAIT,
|
|
LANDSCAPE,
|
|
REVERSEPORTRAIT,
|
|
REVERSELANDSCAPE,
|
|
UNKNOWN
|
|
}
|
|
|
|
public CaptureMessage() {
|
|
this.mM = new com.kofax.mobile.sdk._internal.capture.CaptureMessage();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public CaptureMessage(com.kofax.mobile.sdk._internal.capture.CaptureMessage captureMessage) {
|
|
this.mM = captureMessage;
|
|
}
|
|
|
|
public int getTextColor() {
|
|
return this.mM.getTextColor();
|
|
}
|
|
|
|
public void setTextColor(int i) {
|
|
this.mM.setTextColor(i);
|
|
}
|
|
|
|
public int getBackgroundColor() {
|
|
return this.mM.getBackgroundColor();
|
|
}
|
|
|
|
public void setBackgroundColor(int i) {
|
|
this.mM.setBackgroundColor(i);
|
|
}
|
|
|
|
public Drawable getBackground() {
|
|
return this.mM.getBackground();
|
|
}
|
|
|
|
public void setBackground(Drawable drawable) {
|
|
this.mM.setBackground(drawable);
|
|
}
|
|
|
|
public int getPosX() {
|
|
return this.mM.getPosX();
|
|
}
|
|
|
|
public void setPosX(int i) {
|
|
this.mM.setPosX(i);
|
|
}
|
|
|
|
public int getPosY() {
|
|
return this.mM.getPosY();
|
|
}
|
|
|
|
public void setPosY(int i) {
|
|
this.mM.setPosY(i);
|
|
}
|
|
|
|
public int getWidth() {
|
|
return this.mM.getWidth();
|
|
}
|
|
|
|
public void setWidth(int i) {
|
|
this.mM.setWidth(i);
|
|
}
|
|
|
|
public int getHeight() {
|
|
return this.mM.getHeight();
|
|
}
|
|
|
|
public void setHeight(int i) {
|
|
this.mM.setHeight(i);
|
|
}
|
|
|
|
public int getTextSize() {
|
|
return this.mM.getTextSize();
|
|
}
|
|
|
|
public void setTextSize(int i) {
|
|
this.mM.setTextSize(i);
|
|
}
|
|
|
|
public Typeface getTypeface() {
|
|
return this.mM.getTypeface();
|
|
}
|
|
|
|
public void setTypeface(Typeface typeface) {
|
|
this.mM.setTypeface(typeface);
|
|
}
|
|
|
|
public String getMessage() {
|
|
return this.mM.getMessage();
|
|
}
|
|
|
|
public void setMessage(String str) {
|
|
this.mM.setMessage(str);
|
|
}
|
|
|
|
public boolean getVisibility() {
|
|
return this.mM.getVisibility();
|
|
}
|
|
|
|
public void setVisibility(boolean z) {
|
|
this.mM.setVisibility(z);
|
|
}
|
|
|
|
public void setOrientation(KUIMessageOrientation kUIMessageOrientation) {
|
|
this.mM.setOrientation(CaptureMessage.KUIMessageOrientation.valueOf(kUIMessageOrientation.name()));
|
|
}
|
|
|
|
public KUIMessageOrientation getOrientation() {
|
|
return KUIMessageOrientation.valueOf(this.mM.getOrientation().name());
|
|
}
|
|
|
|
public void setMessageIcons(Bitmap[] bitmapArr) {
|
|
this.mM.setMessageIcons(bitmapArr);
|
|
}
|
|
|
|
public Bitmap[] getMessageIcons() {
|
|
return this.mM.getMessageIcons();
|
|
}
|
|
}
|