mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
afb3dad22b
* Add timestamps to markers * Tiny tweaks * Update addons/markers/functions/fnc_canTimestamp.sqf Co-authored-by: Brett <brett@bmandesigns.com> * Update addons/markers/functions/fnc_initInsertMarker.sqf Co-authored-by: Brett <brett@bmandesigns.com> * Add timestamp format setting * Script cleanup, move checkbox under desc * Fix stringtable validation * Tweaks * Remove styling from stringtable * Edit timestamps instead of append Credits to @PabstMirror Co-authored-by: Brett <brett@bmandesigns.com>
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
|
|
class RscPicture;
|
|
class RscText;
|
|
class RscStructuredText;
|
|
class RscButtonMenuOK;
|
|
class RscButtonMenuCancel;
|
|
class RscButtonMenu;
|
|
class RscCheckBox;
|
|
class RscEdit;
|
|
class RscCombo;
|
|
class RscSlider;
|
|
class RscXSliderH;
|
|
|
|
class RscDisplayInsertMarker {
|
|
onLoad = QUOTE(_this call DFUNC(initInsertMarker););
|
|
onUnload = QUOTE(_this call DFUNC(placeMarker););
|
|
movingEnable = 1;
|
|
|
|
class controls {
|
|
class TimeStampText: RscStructuredText {
|
|
idc = IDC_ACE_INSERT_MARKER_TIMESTAMP_TEXT;
|
|
};
|
|
class TimeStamp: RscCheckBox {
|
|
idc = IDC_ACE_INSERT_MARKER_TIMESTAMP;
|
|
};
|
|
class MarkerShape: RscCombo {
|
|
idc = IDC_ACE_INSERT_MARKER_SHAPE;
|
|
};
|
|
class MarkerColor: RscCombo {
|
|
idc = IDC_ACE_INSERT_MARKER_COLOR;
|
|
};
|
|
class MarkerAngle: RscXSliderH {
|
|
idc = IDC_ACE_INSERT_MARKER_ANGLE;
|
|
};
|
|
class MarkerAngleText: RscText {
|
|
idc = IDC_ACE_INSERT_MARKER_ANGLE_TEXT;
|
|
};
|
|
};
|
|
};
|