1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include "Fireworks/Core/interface/ActionsList.h"
const std::string cmsshow::sGotoFirstEvent = "Goto First Event";
const std::string cmsshow::sGotoLastEvent = "Goto Last Event";
const std::string cmsshow::sNextEvent = "Goto Next Event";
const std::string cmsshow::sPreviousEvent = "Goto Previous Event";
const std::string cmsshow::sPlayEvents = "Play Events";
const std::string cmsshow::sPlayEventsBack = "Play Events Backwards";
const std::string cmsshow::sPause = "Pause";
const std::string cmsshow::sAutoRewind = "Play Events in Loop";
const std::string cmsshow::sOpenData = "Open Local Data File";
const std::string cmsshow::sAppendData = "Append Local Data File";
const std::string cmsshow::sSearchFiles = "Open Remote Data File";
const std::string cmsshow::sLoadConfig = "Load Configuration";
const std::string cmsshow::sSaveConfig = "Save Configuration";
const std::string cmsshow::sSaveConfigAs = "Save Configuration As";
const std::string cmsshow::sLoadPartialConfig = "Load Partial Configuration";
const std::string cmsshow::sSavePartialConfig = "Save Partial Configuration";
const std::string cmsshow::sSavePartialConfigAs = "Save Partial Configuration As";
const std::string cmsshow::sExportImage = "Export Main View Image";
const std::string cmsshow::sExportAllImages = "Export Images of All Views";
const std::string cmsshow::sQuit = "Quit";
const std::string cmsshow::sShowCommonInsp = "Common Preferences";
const std::string cmsshow::sBackgroundColor = "Change Background Color";
const std::string cmsshow::sUndo = "Undo";
const std::string cmsshow::sRedo = "Redo";
const std::string cmsshow::sCut = "Cut";
const std::string cmsshow::sCopy = "Copy";
const std::string cmsshow::sPaste = "Paste";
const std::string cmsshow::sShowObjInsp = "Show Object Controller";
const std::string cmsshow::sShowEventDisplayInsp = "Show Collection Controller";
const std::string cmsshow::sShowMainViewCtl = "Show View Controller";
const std::string cmsshow::sShowAddCollection = "Show Add Collection";
const std::string cmsshow::sShowInvMassDialog = "Show Invariant Mass Dialog";
const std::string cmsshow::sHelp = "CmsShow Online Help";
const std::string cmsshow::sKeyboardShort = "CmsShow Shortcuts";
const std::string cmsshow::sHelpGL = "Viewer Camera Interactions";
|