ACE3/addons/markers/InsertMarker.hpp

33 lines
692 B
C++
Raw Normal View History

2015-12-10 14:32:31 +00:00
2015-01-18 07:20:55 +00:00
class RscPicture;
class RscText;
class RscStructuredText;
class RscButtonMenuOK;
class RscButtonMenuCancel;
class RscButtonMenu;
class RscEdit;
class RscCombo;
class RscSlider;
class RscXSliderH;
class RscDisplayInsertMarker {
2015-01-19 16:30:04 +00:00
onLoad = QUOTE(_this call DFUNC(initInsertMarker););
onUnload = QUOTE(_this call DFUNC(placeMarker););
2015-01-18 16:17:06 +00:00
movingEnable = 1;
2015-03-28 00:22:49 +00:00
2015-12-10 14:32:31 +00:00
class controls {
2015-03-28 00:22:49 +00:00
class MarkerShape: RscCombo {
idc = 1210;
2015-01-18 16:17:06 +00:00
};
2015-03-28 00:22:49 +00:00
class MarkerColor: RscCombo {
idc = 1211;
2015-01-18 16:17:06 +00:00
};
2015-03-28 00:22:49 +00:00
class MarkerAngle: RscXSliderH {
idc = 1220;
2015-01-18 16:17:06 +00:00
};
2015-03-28 00:22:49 +00:00
class MarkerAngleText: RscText {
idc = 1221;
2015-01-18 16:17:06 +00:00
};
};
};