publish
This commit is contained in:
parent
f38388896d
commit
2f62a1a123
67 changed files with 4545 additions and 0 deletions
|
@ -0,0 +1,147 @@
|
|||
package de.spacecontrol.sc.dllwrapper;
|
||||
|
||||
public class ScAdvancedSettings implements Cloneable {
|
||||
public ScAdvSens mSens = new ScAdvSens();
|
||||
|
||||
public boolean mIsX;
|
||||
|
||||
public boolean mIsY;
|
||||
|
||||
public boolean mIsZ;
|
||||
|
||||
public boolean mIsXRev;
|
||||
|
||||
public boolean mIsYRev;
|
||||
|
||||
public boolean mIsZRev;
|
||||
|
||||
public int mXRemap;
|
||||
|
||||
public int mYRemap;
|
||||
|
||||
public int mZRemap;
|
||||
|
||||
public boolean mIsA;
|
||||
|
||||
public boolean mIsB;
|
||||
|
||||
public boolean mIsC;
|
||||
|
||||
public boolean mIsARev;
|
||||
|
||||
public boolean mIsBRev;
|
||||
|
||||
public boolean mIsCRev;
|
||||
|
||||
public int mARemap;
|
||||
|
||||
public int mBRemap;
|
||||
|
||||
public int mCRemap;
|
||||
|
||||
public int mMouseDirX;
|
||||
|
||||
public int mMouseDirY;
|
||||
|
||||
public int mMouseDirZ;
|
||||
|
||||
public int mMouseDirA;
|
||||
|
||||
public int mMouseDirB;
|
||||
|
||||
public int mMouseDirC;
|
||||
|
||||
public boolean mIsMouseMove;
|
||||
|
||||
public boolean mIsMouseToRestore;
|
||||
|
||||
public boolean mIsMouseAbs;
|
||||
|
||||
public int mSendDelay;
|
||||
|
||||
public int mAverageNum;
|
||||
|
||||
public boolean mIsRemap;
|
||||
|
||||
public short mTraLmBnd;
|
||||
|
||||
public short mTraMhBnd;
|
||||
|
||||
public short mRotLmBnd;
|
||||
|
||||
public short mRotMhBnd;
|
||||
|
||||
public boolean mIsToSendToFgWin;
|
||||
|
||||
public boolean mIsSpcFuncToSend;
|
||||
|
||||
public boolean mIsWheelAssShown;
|
||||
|
||||
public boolean mIsWsFuncToSend;
|
||||
|
||||
public boolean mIsCapFuncToSend;
|
||||
|
||||
public boolean mAreChangesToSend;
|
||||
|
||||
public int mBrightnessRed;
|
||||
|
||||
public int mBrightnessGreen;
|
||||
|
||||
public boolean mAreDevLights;
|
||||
|
||||
public int mRotCenterMode;
|
||||
|
||||
public int mMoveMode;
|
||||
|
||||
public boolean mIsRightHandMode;
|
||||
|
||||
public boolean mIsClock;
|
||||
|
||||
public boolean mIsAutoFit;
|
||||
|
||||
public int mLanguage;
|
||||
|
||||
public int mPicture;
|
||||
|
||||
public static final int OBJ_SCREEN = 0;
|
||||
|
||||
public static final int OBJ_ORIGIN = 1;
|
||||
|
||||
public static final int CAM_STANDARD = 2;
|
||||
|
||||
public static final int CAM_TARGET = 3;
|
||||
|
||||
public static final int CAM_HOVER = 4;
|
||||
|
||||
public static final int DF = 0;
|
||||
|
||||
public static final int EN = 1;
|
||||
|
||||
public static final int DE = 2;
|
||||
|
||||
public static final int FR = 3;
|
||||
|
||||
public ScAdvancedSettings clone() {
|
||||
try {
|
||||
ScAdvancedSettings scAdvancedSettings = (ScAdvancedSettings)super.clone();
|
||||
scAdvancedSettings.mSens = this.mSens.clone();
|
||||
return scAdvancedSettings;
|
||||
} catch (CloneNotSupportedException cloneNotSupportedException) {
|
||||
cloneNotSupportedException.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public String convToString() {
|
||||
StringBuffer stringBuffer = new StringBuffer("ScAdvancedSettings:\n");
|
||||
stringBuffer.append(this.mSens.convToString());
|
||||
stringBuffer.append(Util.convToString(this));
|
||||
return stringBuffer.toString();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Location: /opt/SpaceControl/lib/SC_DLL_Wrapper.jar!/de/spacecontrol/sc/dllwrapper/ScAdvancedSettings.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.2.1
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue